diff --git a/README.md b/README.md
index 9eda7ed84ee9fa60b2a95ea27f3e64945c77bddc..0708f0ae30e232c11274eb236f6493ea0bec640a 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Precompiled binaries can be found on https://www.sqlite.org/download.html. Extra
 binary in a folder and note its path. Add the path to your system environment variables. Now you can 
 manage the SQLite database.
 
-## Adding new maps
+## Adding new lakes
 The current server only contains the data for a single lake, Mjøsa. To add more lakes 
 go to https://overpass-turbo.eu/. Once you have navigated to Overpass API, enter
 the Overpass query below in the left field, but swap 'lakeName' out
@@ -29,12 +29,24 @@ press the 'Run' button.
 (._;>;);
 out body;
 ```
+
+![img.png](images/overpass-query.png)
+![img.png](images/geojson-export.png)
+
 If a text box saying "This query returned quite a lot of data (approx. x MB). Your browser may have a hard time trying to render this. Do you really want to continue?
 " appears, press 'continue anyway'. Double check that you have
 the correct lake, then press 'Export'. In the 'Export' menu, download the shape data as
 GeoJson. Once downloaded, name the file the *lakeName.json, and move the file into
 IceMap/server/lake_relations. Once you have added the file, run map division...
 
+![img.png](images/geojson-file.png)
+
+The result will be two new files named lakeName_centers.txt and lakeName_div.json. The original
+lakeName.geojson file should also remain in the system. Additionally, the file named all_lake_names.json 
+should be updated to contain the newly added lake name.
+![img.png](images/resulting-files.png)
+
+
 ## Endpoints
 
 ## Bugs
diff --git a/app/lib/widgets/bar_graph/bar_data.dart b/app/lib/widgets/graph_data/bar_data.dart
similarity index 92%
rename from app/lib/widgets/bar_graph/bar_data.dart
rename to app/lib/widgets/graph_data/bar_data.dart
index aff6f066aca37d2efe9fa18a30375458ad8437a1..bafb97f28002a7483a59d65aa4787fa804ee0bee 100644
--- a/app/lib/widgets/bar_graph/bar_data.dart
+++ b/app/lib/widgets/graph_data/bar_data.dart
@@ -162,6 +162,16 @@ class _BarDataState extends State<BarData> {
                       reservedSize: 30,
                       interval: 2,
                     ),
+                    topTitles: SideTitles(
+                      showTitles: true,
+                      getTextStyles: (value) => const TextStyle(color: Colors.white60),
+                      margin: 0,
+                      reservedSize: 10,
+                      getTitles: (value) {
+                        // Return "cm" for a specific value (e.g., 0) and empty string for others
+                        return value == 0 ? 'cm' : '';
+                      },
+                    ),
                   ),
                   groupsSpace: 14,
                   gridData: FlGridData(
diff --git a/app/lib/widgets/main_layout.dart b/app/lib/widgets/main_layout.dart
index 5cd63e24b7450b10083a3ec4d715a420ea59aed1..570a8c5318a8ee215a6c2b2e2f7af6aec572d9e1 100644
--- a/app/lib/widgets/main_layout.dart
+++ b/app/lib/widgets/main_layout.dart
@@ -258,51 +258,11 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
                   ),
                 ),
                 const SizedBox(height: contPadding*2.5),
-                SizedBox(
-                width: screenWidth * boxWidth * 1.2,
-                  child: Center(
-                    child: Text(
-                      'Ice layers',
-                      style: regTextStyleBig,
-                      ),
-                  ),
-                ),
                 SizedBox(
                   width: screenWidth * boxWidth * 1.2,
                   child: const StatCharts(),
                 ),
-                const SizedBox(height: contPadding*2),
-                SizedBox(
-                  width: screenWidth * boxWidth * 1.2,
-                  child: Padding(
-                    padding: const EdgeInsets.only(top: 20, left: 30),
-                    child: Column(
-                      crossAxisAlignment: CrossAxisAlignment.start,
-                      children: [
-                        Row(
-                          children: [
-                            const Icon(
-                              Icons.info,
-                              color: Colors.white54,
-                            ),
-                            const SizedBox(width: 10),
-                            Expanded(
-                              child: Padding(
-                                padding: const EdgeInsets.only(right: 15),
-                                child: Text(
-                                  'There may be multiple layers of black ice and slush ice stacked'
-                                      ' between the snow and the steel ice.',
-                                  style: regTextStyle,
-                                ),
-                              ),
-                            ),
-                          ],
-                        ),
-                      ],
-                    ),
-                  ),
-                ),
-                const SizedBox(height: contPadding*2),
+                const SizedBox(height: contPadding*4),
               ],
             ),
           ],
diff --git a/app/lib/widgets/stat_charts.dart b/app/lib/widgets/stat_charts.dart
index e76c02d18e9173eb529a292a209a6e695cfd0b43..df24a427969c40ddd3de4d83b8fd955e7a918cc2 100644
--- a/app/lib/widgets/stat_charts.dart
+++ b/app/lib/widgets/stat_charts.dart
@@ -1,6 +1,7 @@
 import 'package:flutter/material.dart';
 import 'package:fl_chart/fl_chart.dart';
-import 'bar_graph/bar_data.dart';
+import 'graph_data/bar_data.dart';
+import '../../consts.dart';
 
 class StatCharts extends StatelessWidget {
   const StatCharts({Key? key}) : super(key: key);
@@ -68,16 +69,34 @@ class StatCharts extends StatelessWidget {
   Widget build(BuildContext context) {
     return Column(
       children: [
-        /*SizedBox(
-          width: MediaQuery.of(context).size.width * 0.8, // Set the width of the LineChart
-          height: 200,
-          child: buildLineChart(context),
-        ),*/
-        const SizedBox(height: 20),
+        SizedBox(
+          child: Center(
+            child: Text(
+              'Ice layers',
+              style: regTextStyleBig,
+            ),
+          ),
+        ),
         SizedBox(
           width: MediaQuery.of(context).size.width-30,
           child: const BarData(),
         ),
+        /*
+        const SizedBox(height: 60),
+        SizedBox(
+          child: Center(
+            child: Text(
+              'Total ice thickness',
+              style: regTextStyleBig,
+            ),
+          ),
+        ),
+        const SizedBox(height: 10),
+        SizedBox(
+          width: MediaQuery.of(context).size.width * 0.8, // Set the width of the LineChart
+          height: 200,
+          child: buildLineChart(context),
+        ),*/
       ],
     );
   }
diff --git a/images/geojson-export.png b/images/geojson-export.png
new file mode 100644
index 0000000000000000000000000000000000000000..86d549e6e1977d68c367c0c2864dd6440360d1ad
Binary files /dev/null and b/images/geojson-export.png differ
diff --git a/images/geojson-file.png b/images/geojson-file.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ef76bc8b1573f3d38e0cdab3a0de59836a12930
Binary files /dev/null and b/images/geojson-file.png differ
diff --git a/images/overpass-query.png b/images/overpass-query.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f9c9a62bcf2dd3d6895cecd1fcf3e796be4bcf7
Binary files /dev/null and b/images/overpass-query.png differ
diff --git a/images/resulting-files.png b/images/resulting-files.png
new file mode 100644
index 0000000000000000000000000000000000000000..68a026907de6d0f323387987eef0845e36c80917
Binary files /dev/null and b/images/resulting-files.png differ
diff --git a/server/main.py b/server/main.py
index 8a1d2a3ee845a1d40b001a132e600a87c19c102d..0da46fc006f99c49b541bd329584f5bfeca28349 100644
--- a/server/main.py
+++ b/server/main.py
@@ -63,8 +63,18 @@ class IceHTTP(BaseHTTPRequestHandler):
             parsed_path = urlparse(self.path)
             query_params = parse_qs(parsed_path.query)
             get_divided_map(self, 'Mjosa')  # NB temp hardcoded value
-        elif self.path == '/divide_new_relation':
-            cut_map(self, 'Mjosa')
+        elif self.path.startswith('/add_new_lake'):
+            parsed_path = urlparse(self.path)
+            query_params = parse_qs(parsed_path.query)
+
+            lake_name = query_params.get('lake', [None])[0]
+            if lake_name is not None:
+                cut_map(self, lake_name)
+            else:
+                self.send_response(400)
+                self.send_header('Content-type', 'application/json')
+                self.end_headers()
+
     def do_POST(self):
         if self.path == '/new_lidar_data':
             input_new_Lidar_data(self, self.cursor, 1, 'Mjosa')  # hardcoded body of water must change later
diff --git a/server/map_handler/__pycache__/add_lake.cpython-311.pyc b/server/map_handler/__pycache__/add_lake.cpython-311.pyc
index b4bf2ae822dcf9a98f4c3cd04bdf90cb961a59a3..d2fb1f4ad0db1e44f8e56d7f591fd08ea4cc7e0c 100644
Binary files a/server/map_handler/__pycache__/add_lake.cpython-311.pyc and b/server/map_handler/__pycache__/add_lake.cpython-311.pyc differ
diff --git a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc
index 25db6829c4c9367f2c4a309982dd48696767a7af..66ee2b79758cd097b69411fe7d8ffb43b9979f32 100644
Binary files a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc and b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc differ
diff --git a/server/map_handler/add_lake.py b/server/map_handler/add_lake.py
index d48efa915afdb7a9ac203250a2c903da05dacfcc..71ce38b75d7c10d79f47fd6cf2e6246eb071f6b2 100644
--- a/server/map_handler/add_lake.py
+++ b/server/map_handler/add_lake.py
@@ -10,81 +10,91 @@ from server.consts import LAKE_RELATIONS_PATH
 
 
 # Read a json file with relation data and send to response object
-def cut_map(self, body_of_water: str):  # NB: implement body_of_water
-    # Read relation from GeoJson file and extract all polygons
-    geo_data = gpd.read_file(LAKE_RELATIONS_PATH + "mjosa.geojson")
-    polygon_data = geo_data[geo_data['geometry'].geom_type == 'Polygon']
-    polygons = [Polygon(polygon.exterior) for polygon in polygon_data['geometry']]
-
-    if len(polygons) <= 1:
-        raise Exception("Failed to convert JSON object to Shapely Polygons")
-
-    divided_map = []
-
-    # List of all subdivisions with their center coordinates
-    # Expected format: [(sub_div_id, [x,y]), (sub_div_id, [x,y]), ...]
-    sub_div_center_list = []
-
-    for polygon in polygons:
-        cell_width = 0.04
-        cell_height = 0.02  # NB could be calculated based on cell_width and distance from equator
-
-        lines = create_grid(polygon, cell_width, cell_height)
-        lines.append(polygon.boundary)
-        lines = unary_union(lines)
-        lines = linemerge(lines)
-        lines = list(polygonize(lines))
-
-        divided_map.extend(combine_grid_with_poly(polygon, lines))
-
-    features = []
-
-    sub_div_id = 0
-    for tile in divided_map:
-
-        # Calculate tile center based on bounds, and round down to two decimals
-        min_x, min_y, max_x, max_y = tile.bounds
-        center = round(max_x - min_x, 4), round(max_y - min_y, 4)
-        # center = round(tile.centroid.coords[0][0], 4), round(tile.centroid.coords[0][1], 4)
-
-        rounded_coordinates = []
-        if isinstance(tile, Polygon):
-            for coords in tile.exterior.coords:
-                rounded_coords = (round(coords[0], 4), round(coords[1], 4))
-                rounded_coordinates.append(rounded_coords)
-            rounded_tile = Polygon(rounded_coordinates)
-
-        sub_div_center_list.append((sub_div_id, center[0], center[1]))
-
-        tile_feature = {
-            'type': 'Feature',
-            'properties': {
-                'sub_div_id': str(sub_div_id),
-                'sub_div_center': center
-            },
-            'geometry': rounded_tile.__geo_interface__
+def cut_map(self, lake_name: str):
+
+    try:
+        # Read relation from GeoJson file and extract all polygons
+        geo_data = gpd.read_file(LAKE_RELATIONS_PATH + lake_name + ".geojson")
+        polygon_data = geo_data[geo_data['geometry'].geom_type == 'Polygon']
+        polygons = [Polygon(polygon.exterior) for polygon in polygon_data['geometry']]
+
+        if len(polygons) <= 1:
+            raise Exception("Failed to convert JSON object to Shapely Polygons")
+
+        divided_map = []
+
+        # List of all subdivisions with their center coordinates
+        # Expected format: [(sub_div_id, [x,y]), (sub_div_id, [x,y]), ...]
+        sub_div_center_list = []
+
+        for polygon in polygons:
+            cell_width = 0.04
+            cell_height = 0.02  # NB could be calculated based on cell_width and distance from equator
+
+            lines = create_grid(polygon, cell_width, cell_height)
+            lines.append(polygon.boundary)
+            lines = unary_union(lines)
+            lines = linemerge(lines)
+            lines = list(polygonize(lines))
+
+            divided_map.extend(combine_grid_with_poly(polygon, lines))
+
+        features = []
+
+        sub_div_id = 0
+        for tile in divided_map:
+
+            # Calculate tile center based on bounds, and round down to two decimals
+            min_x, min_y, max_x, max_y = tile.bounds
+            center = round(max_x - min_x, 4), round(max_y - min_y, 4)
+            # center = round(tile.centroid.coords[0][0], 4), round(tile.centroid.coords[0][1], 4)
+
+            rounded_coordinates = []
+            if isinstance(tile, Polygon):
+                for coords in tile.exterior.coords:
+                    rounded_coords = (round(coords[0], 4), round(coords[1], 4))
+                    rounded_coordinates.append(rounded_coords)
+                rounded_tile = Polygon(rounded_coordinates)
+
+            sub_div_center_list.append((sub_div_id, center[0], center[1]))
+
+            tile_feature = {
+                'type': 'Feature',
+                'properties': {
+                    'sub_div_id': str(sub_div_id),
+                    'sub_div_center': center
+                },
+                'geometry': rounded_tile.__geo_interface__
+            }
+            features.append(tile_feature)
+            sub_div_id += 1
+
+        feature_collection = {
+            'type': 'FeatureCollection',
+            'features': features,
+            'tile_count': sub_div_id,  # Add the last subdivision ID as number of tiles
         }
-        features.append(tile_feature)
-        sub_div_id += 1
 
-    feature_collection = {
-        'type': 'FeatureCollection',
-        'features': features,
-        'tile_count': sub_div_id,  # Add the last subdivision ID as number of tiles
-    }
+        # Create a text file containing all subdivision ids and center coordinates
+        with open(LAKE_RELATIONS_PATH + lake_name + "_centers.txt", 'w') as file:
+            for sub_div_id, x, y in sub_div_center_list:
+                file.write(f"{sub_div_id}, {x}, {y}\n")  # Write each list entry on a new line
 
-    # NB currently hardcoded file path
-    # Create the txt file specified by the path
-    with open(LAKE_RELATIONS_PATH + "mjosa_centers.txt", 'w') as file:
-        # Iterate over the list and write each element to the file
-        for sub_div_id, x, y in sub_div_center_list:
-            file.write(f"{sub_div_id}, {x}, {y}\n")  # Write each list entry on a new line
+        write_json_to_file(lake_name, feature_collection)
 
-    self.send_response(200)
-    self.send_header("Content-type", "application/json")
-    self.end_headers()
+        self.send_response(200)
+        self.send_header("Content-type", "application/json")
+        self.end_headers()
+
+        self.wfile.write(json.dumps(feature_collection).encode('utf-8'))
+
+    except Exception as e:
+        print(f"Error in adding new map: {e}")
+
+        self.send_response(500)
+        self.send_header("Content-type", "application/json")
+        self.end_headers()
 
-    self.wfile.write(json.dumps(feature_collection).encode('utf-8'))
 
 
 def create_grid(poly: Polygon, cell_width, cell_height):
@@ -127,27 +137,36 @@ def combine_grid_with_poly(polygon, grid):
     return intersecting_tiles
 
 
-def write_json_to_file(path: str, file_name: str, json_data: dict):
-    # NB add lake name to 'added_lakes.txt'
+def write_json_to_file(lake_name: str, json_data: dict):
+    # Create and write divided map to new file
     print("Writing to file...")
-    if not os.path.exists(path):
+    if not os.path.exists(LAKE_RELATIONS_PATH):
         raise Exception("Directory from path does not exist")
 
-    with open(path + '/' + file_name + '_div.json', 'w') as f:
+    with open(LAKE_RELATIONS_PATH + '/' + lake_name + '_div.json', 'w') as f:
         json.dump(json_data, f)
 
+    # Update all_system_lakes
+    with open(LAKE_RELATIONS_PATH + 'all_lake_names.json', 'r') as file:
+        data = json.load(file)
+
+    data.append(lake_name)
+    with open(LAKE_RELATIONS_PATH + 'all_lake_names.json', 'w') as file:
+        json.dump(data, file, indent=2)
+
 
 def plot_map(divided_map):
     tiles = [gpd.GeoDataFrame(geometry=[tile]) for tile in divided_map]
 
     print("Plotting... This may take some time...")
-    # NB test plot
+
     fig, ax = plt.subplots()
     ax.set_aspect(1.5)
 
     # Plot each tile
-    for tile in tiles:  # NB temporarily limited to 5 tiles
+    for tile in tiles:
         random_color = "#{:06x}".format(random.randint(0, 0xFFFFFF))
         gpd.GeoSeries(tile.geometry).plot(ax=ax, facecolor=random_color, edgecolor='none')
 
     plt.show()
+
diff --git a/server/map_handler/get_measurements.py b/server/map_handler/get_measurements.py
index 25b2b6359725f354a37dd9c96c738a32deaebf14..87fda774a65eb25e870ccac8abc8280a2cefa575 100644
--- a/server/map_handler/get_measurements.py
+++ b/server/map_handler/get_measurements.py
@@ -5,7 +5,7 @@ from datetime import datetime
 
 # get_markers requests all marker data or valid markers, converts the data to json, and writes
 # the data to the response object
-def get_all_markers(self, cursor, waterBodyName):
+def get_all_markers(self, cursor, lake_name):
     try:
         sql_query = '''
             SELECT m.MeasurementID, m.SensorID, m.TimeMeasured, m.CenterLat, m.CenterLon,
diff --git a/server/map_handler/lake_relations/all_lake_names.json b/server/map_handler/lake_relations/all_lake_names.json
index 33022b5cc38956cd75dd7b3e0de207660688ea3c..2b2c82afde20516e0f2370f0ead9aacfdf2a82c5 100644
--- a/server/map_handler/lake_relations/all_lake_names.json
+++ b/server/map_handler/lake_relations/all_lake_names.json
@@ -1,10 +1,11 @@
 [
-  "Mjøsa",
+  "Mj\u00c3\u00b8sa",
   "Bogstadsvannet",
   "Einavatnet",
-  "Femsjøen",
+  "Femsj\u00c3\u00b8en",
   "Femunden",
-  "Fjellsjøen",
+  "Fjellsj\u00c3\u00b8en",
   "Gjende",
-  "Gjersjøen"
-]
+  "Gjersj\u00c3\u00b8en",
+  "skumsj\u00f8en"
+]
\ No newline at end of file
diff --git "a/server/map_handler/lake_relations/skumsj\303\270en.geojson" "b/server/map_handler/lake_relations/skumsj\303\270en.geojson"
new file mode 100644
index 0000000000000000000000000000000000000000..cced71e06df1383ff0bef125ecf035ba0d904243
--- /dev/null
+++ "b/server/map_handler/lake_relations/skumsj\303\270en.geojson"
@@ -0,0 +1,6200 @@
+{
+  "type": "FeatureCollection",
+  "generator": "overpass-turbo",
+  "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.",
+  "timestamp": "2024-04-10T08:33:45Z",
+  "features": [
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "relation/7682780",
+        "ele": "432",
+        "ele:min": "429",
+        "name": "Skumsjøen",
+        "natural": "water",
+        "ref:nve:magasin": "46",
+        "ref:nve:vann": "195",
+        "ssr:stedsnr": "856500",
+        "type": "multipolygon",
+        "water": "reservoir",
+        "wikidata": "Q19389125"
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5295446,
+              60.7688972
+            ],
+            [
+              10.5295834,
+              60.768867
+            ],
+            [
+              10.5298009,
+              60.768782
+            ],
+            [
+              10.5299943,
+              60.7686819
+            ],
+            [
+              10.5300415,
+              60.7686675
+            ],
+            [
+              10.5301029,
+              60.7686768
+            ],
+            [
+              10.5302434,
+              60.768798
+            ],
+            [
+              10.5303093,
+              60.7688123
+            ],
+            [
+              10.5303609,
+              60.7687907
+            ],
+            [
+              10.5304154,
+              60.7687271
+            ],
+            [
+              10.5304225,
+              60.7684335
+            ],
+            [
+              10.5304403,
+              60.7683538
+            ],
+            [
+              10.5305059,
+              60.7682816
+            ],
+            [
+              10.5306405,
+              60.7681958
+            ],
+            [
+              10.5307289,
+              60.7680822
+            ],
+            [
+              10.5310732,
+              60.7678503
+            ],
+            [
+              10.531342,
+              60.7675924
+            ],
+            [
+              10.5313837,
+              60.7675004
+            ],
+            [
+              10.5314053,
+              60.7673144
+            ],
+            [
+              10.5314314,
+              60.7672773
+            ],
+            [
+              10.5315584,
+              60.7671795
+            ],
+            [
+              10.5315817,
+              60.7669899
+            ],
+            [
+              10.5316474,
+              60.7668893
+            ],
+            [
+              10.5316854,
+              60.7667664
+            ],
+            [
+              10.5316906,
+              60.7665383
+            ],
+            [
+              10.5317085,
+              60.766504
+            ],
+            [
+              10.5318374,
+              60.7664135
+            ],
+            [
+              10.5321279,
+              60.7662753
+            ],
+            [
+              10.5322138,
+              60.7662146
+            ],
+            [
+              10.5322719,
+              60.7660539
+            ],
+            [
+              10.5323046,
+              60.7660155
+            ],
+            [
+              10.5325603,
+              60.7658573
+            ],
+            [
+              10.5327834,
+              60.7657472
+            ],
+            [
+              10.5329212,
+              60.7655968
+            ],
+            [
+              10.5330142,
+              60.765526
+            ],
+            [
+              10.5331221,
+              60.7654753
+            ],
+            [
+              10.5333132,
+              60.7654243
+            ],
+            [
+              10.5335419,
+              60.7653212
+            ],
+            [
+              10.533667,
+              60.7652835
+            ],
+            [
+              10.5337941,
+              60.7652745
+            ],
+            [
+              10.5339896,
+              60.7652862
+            ],
+            [
+              10.5341092,
+              60.7652767
+            ],
+            [
+              10.5342288,
+              60.7653035
+            ],
+            [
+              10.5344055,
+              60.765369
+            ],
+            [
+              10.5345499,
+              60.7654016
+            ],
+            [
+              10.5346254,
+              60.7654062
+            ],
+            [
+              10.5346939,
+              60.7653995
+            ],
+            [
+              10.5347509,
+              60.7653712
+            ],
+            [
+              10.5348868,
+              60.7652747
+            ],
+            [
+              10.5349431,
+              60.7652627
+            ],
+            [
+              10.5352096,
+              60.7653235
+            ],
+            [
+              10.535293,
+              60.765324
+            ],
+            [
+              10.5355193,
+              60.76527
+            ],
+            [
+              10.5356701,
+              60.7652601
+            ],
+            [
+              10.535859,
+              60.7653147
+            ],
+            [
+              10.5359329,
+              60.7653191
+            ],
+            [
+              10.5359917,
+              60.7653084
+            ],
+            [
+              10.5360231,
+              60.7652755
+            ],
+            [
+              10.536005,
+              60.7650816
+            ],
+            [
+              10.5360313,
+              60.765054
+            ],
+            [
+              10.5362142,
+              60.764964
+            ],
+            [
+              10.5362778,
+              60.764909
+            ],
+            [
+              10.5364585,
+              60.7646364
+            ],
+            [
+              10.5365185,
+              60.7645868
+            ],
+            [
+              10.5366445,
+              60.7645115
+            ],
+            [
+              10.5367153,
+              60.7644946
+            ],
+            [
+              10.5367516,
+              60.7644988
+            ],
+            [
+              10.5367785,
+              60.764501
+            ],
+            [
+              10.5367949,
+              60.7645618
+            ],
+            [
+              10.5367685,
+              60.7646255
+            ],
+            [
+              10.5365823,
+              60.7648316
+            ],
+            [
+              10.5365521,
+              60.7648969
+            ],
+            [
+              10.5365455,
+              60.7649905
+            ],
+            [
+              10.5365846,
+              60.7650486
+            ],
+            [
+              10.5366683,
+              60.7650939
+            ],
+            [
+              10.5367408,
+              60.7651077
+            ],
+            [
+              10.5368242,
+              60.7651089
+            ],
+            [
+              10.5368951,
+              60.7650959
+            ],
+            [
+              10.536993,
+              60.7650126
+            ],
+            [
+              10.537112,
+              60.7649354
+            ],
+            [
+              10.5372124,
+              60.7648516
+            ],
+            [
+              10.5373477,
+              60.7647019
+            ],
+            [
+              10.5375461,
+              60.7645674
+            ],
+            [
+              10.5377234,
+              60.7643782
+            ],
+            [
+              10.5377289,
+              60.7642828
+            ],
+            [
+              10.5377145,
+              60.7639516
+            ],
+            [
+              10.5376974,
+              60.7639095
+            ],
+            [
+              10.5376381,
+              60.7638583
+            ],
+            [
+              10.5375692,
+              60.7638412
+            ],
+            [
+              10.5374967,
+              60.7638433
+            ],
+            [
+              10.5374387,
+              60.7638587
+            ],
+            [
+              10.537288,
+              60.7640075
+            ],
+            [
+              10.5370991,
+              60.7641412
+            ],
+            [
+              10.537031,
+              60.7641488
+            ],
+            [
+              10.5370267,
+              60.7641368
+            ],
+            [
+              10.537044,
+              60.7640149
+            ],
+            [
+              10.5369497,
+              60.7638571
+            ],
+            [
+              10.5368631,
+              60.7638053
+            ],
+            [
+              10.5366877,
+              60.7637422
+            ],
+            [
+              10.5366131,
+              60.7636975
+            ],
+            [
+              10.536561,
+              60.7636334
+            ],
+            [
+              10.5365555,
+              60.7635027
+            ],
+            [
+              10.5363208,
+              60.7634435
+            ],
+            [
+              10.536099,
+              60.7634426
+            ],
+            [
+              10.535945,
+              60.7633964
+            ],
+            [
+              10.535813,
+              60.7634031
+            ],
+            [
+              10.5357601,
+              60.7633918
+            ],
+            [
+              10.535667,
+              60.7633132
+            ],
+            [
+              10.5355996,
+              60.7632987
+            ],
+            [
+              10.5355349,
+              60.7633081
+            ],
+            [
+              10.5353404,
+              60.763378
+            ],
+            [
+              10.5352778,
+              60.7633791
+            ],
+            [
+              10.5352302,
+              60.7633577
+            ],
+            [
+              10.5352272,
+              60.763245
+            ],
+            [
+              10.5352467,
+              60.7632007
+            ],
+            [
+              10.5353356,
+              60.7631403
+            ],
+            [
+              10.5353871,
+              60.7630844
+            ],
+            [
+              10.5354655,
+              60.763034
+            ],
+            [
+              10.5355854,
+              60.7630002
+            ],
+            [
+              10.5356438,
+              60.7629719
+            ],
+            [
+              10.5358164,
+              60.7628257
+            ],
+            [
+              10.535868,
+              60.7628043
+            ],
+            [
+              10.5359278,
+              60.7628027
+            ],
+            [
+              10.5359918,
+              60.762787
+            ],
+            [
+              10.5360169,
+              60.7627613
+            ],
+            [
+              10.5361094,
+              60.762573
+            ],
+            [
+              10.5361918,
+              60.7625231
+            ],
+            [
+              10.5363336,
+              60.7623987
+            ],
+            [
+              10.5364232,
+              60.762341
+            ],
+            [
+              10.5365759,
+              60.7622718
+            ],
+            [
+              10.5366227,
+              60.7622106
+            ],
+            [
+              10.5366565,
+              60.762108
+            ],
+            [
+              10.5366851,
+              60.7620734
+            ],
+            [
+              10.5367686,
+              60.7620254
+            ],
+            [
+              10.536988,
+              60.7619585
+            ],
+            [
+              10.5370407,
+              60.7619313
+            ],
+            [
+              10.5371141,
+              60.7618658
+            ],
+            [
+              10.5371862,
+              60.7617015
+            ],
+            [
+              10.5372943,
+              60.7616045
+            ],
+            [
+              10.5373836,
+              60.7614841
+            ],
+            [
+              10.537488,
+              60.7613787
+            ],
+            [
+              10.5376181,
+              60.7613085
+            ],
+            [
+              10.537664,
+              60.7612454
+            ],
+            [
+              10.5376835,
+              60.761146
+            ],
+            [
+              10.5376959,
+              60.7608643
+            ],
+            [
+              10.5378123,
+              60.7607074
+            ],
+            [
+              10.5378973,
+              60.7606466
+            ],
+            [
+              10.5379625,
+              60.7605472
+            ],
+            [
+              10.5380543,
+              60.7604609
+            ],
+            [
+              10.5380686,
+              60.7603837
+            ],
+            [
+              10.5380518,
+              60.7601868
+            ],
+            [
+              10.5380193,
+              60.7601206
+            ],
+            [
+              10.537956,
+              60.7600703
+            ],
+            [
+              10.5378523,
+              60.7600257
+            ],
+            [
+              10.5378379,
+              60.759969
+            ],
+            [
+              10.5379325,
+              60.7598033
+            ],
+            [
+              10.5381672,
+              60.7594827
+            ],
+            [
+              10.5382192,
+              60.7593278
+            ],
+            [
+              10.5383817,
+              60.7591993
+            ],
+            [
+              10.5383928,
+              60.7591627
+            ],
+            [
+              10.5383807,
+              60.759129
+            ],
+            [
+              10.5381884,
+              60.7590033
+            ],
+            [
+              10.538173,
+              60.7589028
+            ],
+            [
+              10.5381458,
+              60.7588379
+            ],
+            [
+              10.5381414,
+              60.7587719
+            ],
+            [
+              10.5381866,
+              60.7587428
+            ],
+            [
+              10.5383243,
+              60.7587207
+            ],
+            [
+              10.538356,
+              60.7586959
+            ],
+            [
+              10.538358,
+              60.7586686
+            ],
+            [
+              10.5383122,
+              60.7586442
+            ],
+            [
+              10.5380335,
+              60.7586463
+            ],
+            [
+              10.5380021,
+              60.7586185
+            ],
+            [
+              10.5380023,
+              60.7584552
+            ],
+            [
+              10.5379594,
+              60.7583935
+            ],
+            [
+              10.5378034,
+              60.758257
+            ],
+            [
+              10.5378076,
+              60.7581974
+            ],
+            [
+              10.5378905,
+              60.7581022
+            ],
+            [
+              10.5379119,
+              60.7580162
+            ],
+            [
+              10.5380195,
+              60.7578824
+            ],
+            [
+              10.5380082,
+              60.757854
+            ],
+            [
+              10.5379188,
+              60.7577618
+            ],
+            [
+              10.537925,
+              60.7577064
+            ],
+            [
+              10.5379967,
+              60.7576294
+            ],
+            [
+              10.5380131,
+              60.7574607
+            ],
+            [
+              10.5379973,
+              60.7574275
+            ],
+            [
+              10.5379454,
+              60.7574167
+            ],
+            [
+              10.537889,
+              60.7574228
+            ],
+            [
+              10.5378624,
+              60.7574577
+            ],
+            [
+              10.5378456,
+              60.7575555
+            ],
+            [
+              10.5377905,
+              60.7575691
+            ],
+            [
+              10.5377255,
+              60.7575646
+            ],
+            [
+              10.5375599,
+              60.7575102
+            ],
+            [
+              10.5374842,
+              60.7575075
+            ],
+            [
+              10.5374162,
+              60.7575169
+            ],
+            [
+              10.537297,
+              60.7575659
+            ],
+            [
+              10.5372071,
+              60.7576269
+            ],
+            [
+              10.5371963,
+              60.7576625
+            ],
+            [
+              10.5372466,
+              60.7577277
+            ],
+            [
+              10.5372512,
+              60.7578168
+            ],
+            [
+              10.5372012,
+              60.7578804
+            ],
+            [
+              10.5371205,
+              60.7579429
+            ],
+            [
+              10.536987,
+              60.7579982
+            ],
+            [
+              10.5368157,
+              60.7581382
+            ],
+            [
+              10.5366931,
+              60.7582089
+            ],
+            [
+              10.5366021,
+              60.758244
+            ],
+            [
+              10.5364666,
+              60.7582543
+            ],
+            [
+              10.5364038,
+              60.7582418
+            ],
+            [
+              10.5363518,
+              60.7582162
+            ],
+            [
+              10.536319,
+              60.7581843
+            ],
+            [
+              10.5363136,
+              60.7580634
+            ],
+            [
+              10.5362845,
+              60.7580307
+            ],
+            [
+              10.5362174,
+              60.7580279
+            ],
+            [
+              10.5361158,
+              60.7580684
+            ],
+            [
+              10.5360502,
+              60.7580784
+            ],
+            [
+              10.5359874,
+              60.7580664
+            ],
+            [
+              10.5359311,
+              60.7579637
+            ],
+            [
+              10.535914,
+              60.7578362
+            ],
+            [
+              10.5358531,
+              60.7577719
+            ],
+            [
+              10.5357618,
+              60.7577311
+            ],
+            [
+              10.5357335,
+              60.7577073
+            ],
+            [
+              10.5357161,
+              60.7576465
+            ],
+            [
+              10.535672,
+              60.7576179
+            ],
+            [
+              10.5353097,
+              60.7576189
+            ],
+            [
+              10.5351836,
+              60.7575485
+            ],
+            [
+              10.535129,
+              60.7575435
+            ],
+            [
+              10.5350833,
+              60.7575584
+            ],
+            [
+              10.5349603,
+              60.7576493
+            ],
+            [
+              10.534806,
+              60.757709
+            ],
+            [
+              10.5346069,
+              60.7578406
+            ],
+            [
+              10.5344738,
+              60.7578577
+            ],
+            [
+              10.5343294,
+              60.7579424
+            ],
+            [
+              10.5342329,
+              60.7579831
+            ],
+            [
+              10.534145,
+              60.7580363
+            ],
+            [
+              10.5339875,
+              60.7580888
+            ],
+            [
+              10.5338643,
+              60.7581737
+            ],
+            [
+              10.5338151,
+              60.7581953
+            ],
+            [
+              10.5336363,
+              60.7582212
+            ],
+            [
+              10.5335419,
+              60.7582666
+            ],
+            [
+              10.5334002,
+              60.7583786
+            ],
+            [
+              10.5332436,
+              60.7584461
+            ],
+            [
+              10.5330367,
+              60.7585059
+            ],
+            [
+              10.5329888,
+              60.7585326
+            ],
+            [
+              10.5329395,
+              60.7586047
+            ],
+            [
+              10.5328957,
+              60.7587169
+            ],
+            [
+              10.5328517,
+              60.7587798
+            ],
+            [
+              10.5327456,
+              60.7588765
+            ],
+            [
+              10.5322962,
+              60.7591539
+            ],
+            [
+              10.5319958,
+              60.7593086
+            ],
+            [
+              10.5318445,
+              60.7593701
+            ],
+            [
+              10.5317497,
+              60.759395
+            ],
+            [
+              10.5316517,
+              60.7593987
+            ],
+            [
+              10.5315267,
+              60.7593754
+            ],
+            [
+              10.5314868,
+              60.7593458
+            ],
+            [
+              10.5314798,
+              60.7593187
+            ],
+            [
+              10.5315083,
+              60.7592122
+            ],
+            [
+              10.5314984,
+              60.7591892
+            ],
+            [
+              10.5315567,
+              60.7591065
+            ],
+            [
+              10.5316152,
+              60.758963
+            ],
+            [
+              10.5317605,
+              60.7587598
+            ],
+            [
+              10.5319153,
+              60.7586302
+            ],
+            [
+              10.5320761,
+              60.7585566
+            ],
+            [
+              10.5322926,
+              60.7584292
+            ],
+            [
+              10.5324908,
+              60.7582928
+            ],
+            [
+              10.5326183,
+              60.7581765
+            ],
+            [
+              10.5326348,
+              60.7580032
+            ],
+            [
+              10.5326551,
+              60.7579754
+            ],
+            [
+              10.5327368,
+              60.7579294
+            ],
+            [
+              10.5327651,
+              60.7578923
+            ],
+            [
+              10.5327417,
+              60.7578013
+            ],
+            [
+              10.5326715,
+              60.7576692
+            ],
+            [
+              10.5326671,
+              60.7575963
+            ],
+            [
+              10.5326855,
+              60.7575697
+            ],
+            [
+              10.5327487,
+              60.7575511
+            ],
+            [
+              10.5328596,
+              60.7575372
+            ],
+            [
+              10.5329131,
+              60.7575205
+            ],
+            [
+              10.5329634,
+              60.7574863
+            ],
+            [
+              10.5329829,
+              60.7573951
+            ],
+            [
+              10.5331093,
+              60.7573208
+            ],
+            [
+              10.5330544,
+              60.7570779
+            ],
+            [
+              10.5331595,
+              60.7569576
+            ],
+            [
+              10.5331639,
+              60.7569193
+            ],
+            [
+              10.5330917,
+              60.7568324
+            ],
+            [
+              10.5330922,
+              60.756794
+            ],
+            [
+              10.5331444,
+              60.7567304
+            ],
+            [
+              10.5331609,
+              60.7566628
+            ],
+            [
+              10.5332226,
+              60.756602
+            ],
+            [
+              10.5331748,
+              60.7564634
+            ],
+            [
+              10.5331763,
+              60.7564208
+            ],
+            [
+              10.5332101,
+              60.7563833
+            ],
+            [
+              10.5333053,
+              60.7563328
+            ],
+            [
+              10.5333559,
+              60.7562382
+            ],
+            [
+              10.5335233,
+              60.7562049
+            ],
+            [
+              10.5336285,
+              60.7561594
+            ],
+            [
+              10.5336161,
+              60.756127
+            ],
+            [
+              10.5334977,
+              60.756072
+            ],
+            [
+              10.5334351,
+              60.7560212
+            ],
+            [
+              10.5334123,
+              60.7559479
+            ],
+            [
+              10.5334997,
+              60.755852
+            ],
+            [
+              10.5335257,
+              60.7557872
+            ],
+            [
+              10.5335321,
+              60.7554661
+            ],
+            [
+              10.533518,
+              60.7553984
+            ],
+            [
+              10.5334423,
+              60.7552376
+            ],
+            [
+              10.5334191,
+              60.755045
+            ],
+            [
+              10.5334008,
+              60.7550157
+            ],
+            [
+              10.5333497,
+              60.7549893
+            ],
+            [
+              10.5332773,
+              60.7549878
+            ],
+            [
+              10.5332266,
+              60.754999
+            ],
+            [
+              10.532901,
+              60.7551011
+            ],
+            [
+              10.5327416,
+              60.7551291
+            ],
+            [
+              10.5326072,
+              60.7551296
+            ],
+            [
+              10.5324899,
+              60.7551127
+            ],
+            [
+              10.5323853,
+              60.7550784
+            ],
+            [
+              10.5322885,
+              60.7550331
+            ],
+            [
+              10.5322608,
+              60.7550074
+            ],
+            [
+              10.5322715,
+              60.7549617
+            ],
+            [
+              10.5323734,
+              60.7549138
+            ],
+            [
+              10.5323886,
+              60.7548192
+            ],
+            [
+              10.5324164,
+              60.7547652
+            ],
+            [
+              10.5325625,
+              60.7546604
+            ],
+            [
+              10.5325979,
+              60.754542
+            ],
+            [
+              10.532705,
+              60.7544177
+            ],
+            [
+              10.5327218,
+              60.7542969
+            ],
+            [
+              10.5327866,
+              60.7542418
+            ],
+            [
+              10.5328773,
+              60.7541937
+            ],
+            [
+              10.5331272,
+              60.7541009
+            ],
+            [
+              10.5332491,
+              60.7540736
+            ],
+            [
+              10.5332994,
+              60.7540487
+            ],
+            [
+              10.5333223,
+              60.7540236
+            ],
+            [
+              10.5333288,
+              60.7539294
+            ],
+            [
+              10.5333344,
+              60.7536
+            ],
+            [
+              10.533408,
+              60.7535396
+            ],
+            [
+              10.5334541,
+              60.7534748
+            ],
+            [
+              10.5334987,
+              60.7534487
+            ],
+            [
+              10.5338383,
+              60.7533054
+            ],
+            [
+              10.5339159,
+              60.7532115
+            ],
+            [
+              10.5340669,
+              60.7531395
+            ],
+            [
+              10.5340784,
+              60.7531017
+            ],
+            [
+              10.5340611,
+              60.7530752
+            ],
+            [
+              10.5340011,
+              60.7530706
+            ],
+            [
+              10.5338639,
+              60.7530923
+            ],
+            [
+              10.5335694,
+              60.7530885
+            ],
+            [
+              10.5334624,
+              60.7531065
+            ],
+            [
+              10.5332736,
+              60.7531006
+            ],
+            [
+              10.5331435,
+              60.7530777
+            ],
+            [
+              10.533032,
+              60.7530364
+            ],
+            [
+              10.5328605,
+              60.7529412
+            ],
+            [
+              10.5328323,
+              60.7529117
+            ],
+            [
+              10.5328233,
+              60.7528493
+            ],
+            [
+              10.532851,
+              60.752785
+            ],
+            [
+              10.5328455,
+              60.7527581
+            ],
+            [
+              10.532781,
+              60.7526865
+            ],
+            [
+              10.5327404,
+              60.752585
+            ],
+            [
+              10.5326187,
+              60.7525693
+            ],
+            [
+              10.532573,
+              60.7525502
+            ],
+            [
+              10.5324951,
+              60.7524448
+            ],
+            [
+              10.5324732,
+              60.7523577
+            ],
+            [
+              10.5324958,
+              60.7523236
+            ],
+            [
+              10.5325849,
+              60.7522875
+            ],
+            [
+              10.5326248,
+              60.7522593
+            ],
+            [
+              10.5326081,
+              60.7521905
+            ],
+            [
+              10.5325552,
+              60.7521081
+            ],
+            [
+              10.5325357,
+              60.751911
+            ],
+            [
+              10.532542,
+              60.7518549
+            ],
+            [
+              10.532611,
+              60.7517968
+            ],
+            [
+              10.5328082,
+              60.7517071
+            ],
+            [
+              10.532847,
+              60.7516396
+            ],
+            [
+              10.5329081,
+              60.751589
+            ],
+            [
+              10.5331275,
+              60.7515029
+            ],
+            [
+              10.5331567,
+              60.7515001
+            ],
+            [
+              10.5331763,
+              60.7514843
+            ],
+            [
+              10.5332446,
+              60.7514623
+            ],
+            [
+              10.533314,
+              60.7514587
+            ],
+            [
+              10.5333811,
+              60.7514685
+            ],
+            [
+              10.5335892,
+              60.751565
+            ],
+            [
+              10.5337182,
+              60.7515775
+            ],
+            [
+              10.5341572,
+              60.7515676
+            ],
+            [
+              10.5343084,
+              60.7515281
+            ],
+            [
+              10.5343815,
+              60.7515225
+            ],
+            [
+              10.5345045,
+              60.7515502
+            ],
+            [
+              10.534787,
+              60.7516494
+            ],
+            [
+              10.5349049,
+              60.7516618
+            ],
+            [
+              10.5352848,
+              60.751659
+            ],
+            [
+              10.5353898,
+              60.7516385
+            ],
+            [
+              10.5354821,
+              60.7516033
+            ],
+            [
+              10.5355133,
+              60.7515812
+            ],
+            [
+              10.5355836,
+              60.7513847
+            ],
+            [
+              10.5356341,
+              60.7513624
+            ],
+            [
+              10.535766,
+              60.751362
+            ],
+            [
+              10.5358276,
+              60.7513489
+            ],
+            [
+              10.5358523,
+              60.7512782
+            ],
+            [
+              10.5358517,
+              60.7511022
+            ],
+            [
+              10.5357694,
+              60.7510075
+            ],
+            [
+              10.5356837,
+              60.750964
+            ],
+            [
+              10.5356277,
+              60.7509025
+            ],
+            [
+              10.5355575,
+              60.7507745
+            ],
+            [
+              10.5354648,
+              60.7506799
+            ],
+            [
+              10.5354527,
+              60.7505122
+            ],
+            [
+              10.5354364,
+              60.7504823
+            ],
+            [
+              10.5353357,
+              60.7504013
+            ],
+            [
+              10.5352898,
+              60.7503427
+            ],
+            [
+              10.5352485,
+              60.7503165
+            ],
+            [
+              10.5351876,
+              60.7502978
+            ],
+            [
+              10.5350064,
+              60.7502607
+            ],
+            [
+              10.5349035,
+              60.7502158
+            ],
+            [
+              10.5346931,
+              60.7500258
+            ],
+            [
+              10.5346282,
+              60.75
+            ],
+            [
+              10.5345271,
+              60.7499599
+            ],
+            [
+              10.5344401,
+              60.749911
+            ],
+            [
+              10.5344146,
+              60.7498792
+            ],
+            [
+              10.5344036,
+              60.7497799
+            ],
+            [
+              10.5343664,
+              60.7497458
+            ],
+            [
+              10.5342763,
+              60.7496951
+            ],
+            [
+              10.5341037,
+              60.7496553
+            ],
+            [
+              10.5339094,
+              60.7496238
+            ],
+            [
+              10.5338592,
+              60.7495873
+            ],
+            [
+              10.5338435,
+              60.7495695
+            ],
+            [
+              10.5337957,
+              60.7495497
+            ],
+            [
+              10.5336189,
+              60.7495196
+            ],
+            [
+              10.5332472,
+              60.7493971
+            ],
+            [
+              10.5332366,
+              60.7493636
+            ],
+            [
+              10.533274,
+              60.7493428
+            ],
+            [
+              10.5332632,
+              60.7492839
+            ],
+            [
+              10.5328715,
+              60.7491564
+            ],
+            [
+              10.5328234,
+              60.7491374
+            ],
+            [
+              10.5327995,
+              60.7491094
+            ],
+            [
+              10.5327156,
+              60.7490704
+            ],
+            [
+              10.532596,
+              60.7490707
+            ],
+            [
+              10.532541,
+              60.7490552
+            ],
+            [
+              10.5325241,
+              60.7490288
+            ],
+            [
+              10.5325481,
+              60.7490035
+            ],
+            [
+              10.532655,
+              60.7489806
+            ],
+            [
+              10.5326749,
+              60.7489509
+            ],
+            [
+              10.5326755,
+              60.7488638
+            ],
+            [
+              10.5325958,
+              60.7488195
+            ],
+            [
+              10.5325977,
+              60.7487898
+            ],
+            [
+              10.532641,
+              60.748768
+            ],
+            [
+              10.5327052,
+              60.7487665
+            ],
+            [
+              10.5329902,
+              60.7486647
+            ],
+            [
+              10.5330253,
+              60.7486837
+            ],
+            [
+              10.5332039,
+              60.7487055
+            ],
+            [
+              10.5334415,
+              60.7487124
+            ],
+            [
+              10.5334923,
+              60.7487284
+            ],
+            [
+              10.5335552,
+              60.7487358
+            ],
+            [
+              10.5337316,
+              60.7487355
+            ],
+            [
+              10.5339803,
+              60.7487532
+            ],
+            [
+              10.534096,
+              60.7487718
+            ],
+            [
+              10.5341566,
+              60.7487681
+            ],
+            [
+              10.5342598,
+              60.7487401
+            ],
+            [
+              10.534287,
+              60.7486861
+            ],
+            [
+              10.5343164,
+              60.74866
+            ],
+            [
+              10.5345181,
+              60.7485889
+            ],
+            [
+              10.534619,
+              60.74857
+            ],
+            [
+              10.5347932,
+              60.7484477
+            ],
+            [
+              10.5348442,
+              60.7483897
+            ],
+            [
+              10.5348602,
+              60.7482993
+            ],
+            [
+              10.5348814,
+              60.74827
+            ],
+            [
+              10.5348928,
+              60.7481834
+            ],
+            [
+              10.5349919,
+              60.74808
+            ],
+            [
+              10.535003,
+              60.7480501
+            ],
+            [
+              10.5350655,
+              60.747996
+            ],
+            [
+              10.5350607,
+              60.7479675
+            ],
+            [
+              10.5350227,
+              60.7479436
+            ],
+            [
+              10.5350632,
+              60.7477703
+            ],
+            [
+              10.5350087,
+              60.7477585
+            ],
+            [
+              10.5349656,
+              60.7476709
+            ],
+            [
+              10.534869,
+              60.7476334
+            ],
+            [
+              10.5347496,
+              60.7476196
+            ],
+            [
+              10.5346591,
+              60.7475833
+            ],
+            [
+              10.534629,
+              60.7475002
+            ],
+            [
+              10.5345561,
+              60.7474588
+            ],
+            [
+              10.534536,
+              60.747427
+            ],
+            [
+              10.5345344,
+              60.747243
+            ],
+            [
+              10.5345586,
+              60.7471817
+            ],
+            [
+              10.5345893,
+              60.7469021
+            ],
+            [
+              10.5346251,
+              60.7468061
+            ],
+            [
+              10.5346334,
+              60.7466042
+            ],
+            [
+              10.5346213,
+              60.7465728
+            ],
+            [
+              10.5345181,
+              60.7464606
+            ],
+            [
+              10.5344007,
+              60.7463836
+            ],
+            [
+              10.5343749,
+              60.7463585
+            ],
+            [
+              10.5343848,
+              60.7462276
+            ],
+            [
+              10.5343656,
+              60.7461985
+            ],
+            [
+              10.5342883,
+              60.7461507
+            ],
+            [
+              10.5342648,
+              60.746119
+            ],
+            [
+              10.5341955,
+              60.7460715
+            ],
+            [
+              10.5341927,
+              60.7460425
+            ],
+            [
+              10.5342172,
+              60.7459868
+            ],
+            [
+              10.5341313,
+              60.7459452
+            ],
+            [
+              10.5341003,
+              60.7458558
+            ],
+            [
+              10.5340767,
+              60.7458309
+            ],
+            [
+              10.5340767,
+              60.7456845
+            ],
+            [
+              10.5341198,
+              60.7456002
+            ],
+            [
+              10.5340451,
+              60.7455607
+            ],
+            [
+              10.5339636,
+              60.7453682
+            ],
+            [
+              10.5338775,
+              60.7452845
+            ],
+            [
+              10.5338416,
+              60.7450759
+            ],
+            [
+              10.533788,
+              60.7449515
+            ],
+            [
+              10.5337832,
+              60.7447046
+            ],
+            [
+              10.5338185,
+              60.7446444
+            ],
+            [
+              10.5338914,
+              60.7445928
+            ],
+            [
+              10.533915,
+              60.744565
+            ],
+            [
+              10.5338984,
+              60.7445046
+            ],
+            [
+              10.5337907,
+              60.7444204
+            ],
+            [
+              10.5337863,
+              60.7443552
+            ],
+            [
+              10.5337666,
+              60.7443297
+            ],
+            [
+              10.5336926,
+              60.744287
+            ],
+            [
+              10.5336991,
+              60.7442536
+            ],
+            [
+              10.5337344,
+              60.7442312
+            ],
+            [
+              10.5337412,
+              60.7441432
+            ],
+            [
+              10.533685,
+              60.7440848
+            ],
+            [
+              10.5336736,
+              60.7440275
+            ],
+            [
+              10.5336041,
+              60.7439736
+            ],
+            [
+              10.5335807,
+              60.7439099
+            ],
+            [
+              10.5335014,
+              60.7437968
+            ],
+            [
+              10.533492,
+              60.7436457
+            ],
+            [
+              10.5334691,
+              60.7435903
+            ],
+            [
+              10.5334031,
+              60.7435063
+            ],
+            [
+              10.5333143,
+              60.7434604
+            ],
+            [
+              10.5333152,
+              60.7434326
+            ],
+            [
+              10.5333709,
+              60.7433818
+            ],
+            [
+              10.5333477,
+              60.7433552
+            ],
+            [
+              10.5333043,
+              60.7433382
+            ],
+            [
+              10.5332841,
+              60.7433954
+            ],
+            [
+              10.5332215,
+              60.7433993
+            ],
+            [
+              10.5330079,
+              60.7433394
+            ],
+            [
+              10.5329561,
+              60.7433194
+            ],
+            [
+              10.532845,
+              60.7432167
+            ],
+            [
+              10.5328466,
+              60.7431881
+            ],
+            [
+              10.5329565,
+              60.7431608
+            ],
+            [
+              10.5329614,
+              60.7431336
+            ],
+            [
+              10.532799,
+              60.7430633
+            ],
+            [
+              10.532797,
+              60.7429594
+            ],
+            [
+              10.5328155,
+              60.7429281
+            ],
+            [
+              10.5328177,
+              60.7428365
+            ],
+            [
+              10.5328594,
+              60.7427495
+            ],
+            [
+              10.5328647,
+              60.7426015
+            ],
+            [
+              10.5327995,
+              60.7425516
+            ],
+            [
+              10.5325772,
+              60.7424507
+            ],
+            [
+              10.5324873,
+              60.7424283
+            ],
+            [
+              10.5324054,
+              60.7423035
+            ],
+            [
+              10.5322597,
+              60.7422907
+            ],
+            [
+              10.5322384,
+              60.7422782
+            ],
+            [
+              10.5321797,
+              60.7422748
+            ],
+            [
+              10.5319723,
+              60.7422109
+            ],
+            [
+              10.5317432,
+              60.7421775
+            ],
+            [
+              10.5316528,
+              60.742142
+            ],
+            [
+              10.531563,
+              60.7420913
+            ],
+            [
+              10.5314771,
+              60.7419507
+            ],
+            [
+              10.531467,
+              60.7418925
+            ],
+            [
+              10.5313569,
+              60.7418151
+            ],
+            [
+              10.5312625,
+              60.7417783
+            ],
+            [
+              10.5311378,
+              60.7416975
+            ],
+            [
+              10.5311397,
+              60.7416181
+            ],
+            [
+              10.5311504,
+              60.741563
+            ],
+            [
+              10.5311246,
+              60.7415373
+            ],
+            [
+              10.5311163,
+              60.7414902
+            ],
+            [
+              10.5309973,
+              60.7414061
+            ],
+            [
+              10.5308428,
+              60.7413632
+            ],
+            [
+              10.530796,
+              60.7412458
+            ],
+            [
+              10.5308144,
+              60.7411869
+            ],
+            [
+              10.5308482,
+              60.7411601
+            ],
+            [
+              10.5308377,
+              60.7411012
+            ],
+            [
+              10.5307426,
+              60.7410184
+            ],
+            [
+              10.530733,
+              60.7408625
+            ],
+            [
+              10.5308172,
+              60.7408178
+            ],
+            [
+              10.5310052,
+              60.7408049
+            ],
+            [
+              10.5310655,
+              60.7407888
+            ],
+            [
+              10.5311174,
+              60.7407537
+            ],
+            [
+              10.5312564,
+              60.7407135
+            ],
+            [
+              10.5314967,
+              60.7407033
+            ],
+            [
+              10.5316795,
+              60.7407391
+            ],
+            [
+              10.5318709,
+              60.7407415
+            ],
+            [
+              10.531987,
+              60.740756
+            ],
+            [
+              10.5320922,
+              60.7407811
+            ],
+            [
+              10.5323495,
+              60.7407843
+            ],
+            [
+              10.5324123,
+              60.7407748
+            ],
+            [
+              10.5326155,
+              60.740774
+            ],
+            [
+              10.5327181,
+              60.7407548
+            ],
+            [
+              10.5328476,
+              60.7407441
+            ],
+            [
+              10.5329719,
+              60.7407191
+            ],
+            [
+              10.5331034,
+              60.740707
+            ],
+            [
+              10.5332206,
+              60.740681
+            ],
+            [
+              10.5334423,
+              60.7405708
+            ],
+            [
+              10.5336656,
+              60.740499
+            ],
+            [
+              10.53379,
+              60.7404808
+            ],
+            [
+              10.5339079,
+              60.7404945
+            ],
+            [
+              10.5339624,
+              60.7405099
+            ],
+            [
+              10.534093,
+              60.7405762
+            ],
+            [
+              10.5342178,
+              60.7405694
+            ],
+            [
+              10.534288,
+              60.7405191
+            ],
+            [
+              10.5344789,
+              60.7405136
+            ],
+            [
+              10.5345332,
+              60.7404953
+            ],
+            [
+              10.5345411,
+              60.7404339
+            ],
+            [
+              10.534697,
+              60.7403719
+            ],
+            [
+              10.534801,
+              60.7403017
+            ],
+            [
+              10.5349768,
+              60.7402114
+            ],
+            [
+              10.5351954,
+              60.7401453
+            ],
+            [
+              10.5353184,
+              60.7401331
+            ],
+            [
+              10.5354937,
+              60.7400935
+            ],
+            [
+              10.5356679,
+              60.7400021
+            ],
+            [
+              10.5358732,
+              60.739915
+            ],
+            [
+              10.5359129,
+              60.7398589
+            ],
+            [
+              10.5361186,
+              60.7397802
+            ],
+            [
+              10.5362233,
+              60.7397
+            ],
+            [
+              10.5363104,
+              60.7395839
+            ],
+            [
+              10.5364137,
+              60.7395119
+            ],
+            [
+              10.5365063,
+              60.7394758
+            ],
+            [
+              10.5366223,
+              60.7394781
+            ],
+            [
+              10.5366848,
+              60.7394853
+            ],
+            [
+              10.5368104,
+              60.739518
+            ],
+            [
+              10.5368968,
+              60.7395304
+            ],
+            [
+              10.5371009,
+              60.7395826
+            ],
+            [
+              10.5372528,
+              60.7396293
+            ],
+            [
+              10.5373421,
+              60.7396698
+            ],
+            [
+              10.5373711,
+              60.7396929
+            ],
+            [
+              10.5373832,
+              60.7398134
+            ],
+            [
+              10.5373504,
+              60.7398705
+            ],
+            [
+              10.537355,
+              60.739902
+            ],
+            [
+              10.5375735,
+              60.740014
+            ],
+            [
+              10.5375733,
+              60.7400438
+            ],
+            [
+              10.5374733,
+              60.7400745
+            ],
+            [
+              10.537275,
+              60.7401627
+            ],
+            [
+              10.5372377,
+              60.7401869
+            ],
+            [
+              10.5372249,
+              60.7402487
+            ],
+            [
+              10.5372566,
+              60.740275
+            ],
+            [
+              10.5373119,
+              60.7402848
+            ],
+            [
+              10.5373302,
+              60.7403106
+            ],
+            [
+              10.5373121,
+              60.7403398
+            ],
+            [
+              10.5374321,
+              60.7404443
+            ],
+            [
+              10.5375694,
+              60.7406218
+            ],
+            [
+              10.5375782,
+              60.7406827
+            ],
+            [
+              10.537555,
+              60.7407422
+            ],
+            [
+              10.5375531,
+              60.7408677
+            ],
+            [
+              10.5375949,
+              60.7408867
+            ],
+            [
+              10.537654,
+              60.7408955
+            ],
+            [
+              10.5376481,
+              60.7409257
+            ],
+            [
+              10.5376076,
+              60.740946
+            ],
+            [
+              10.5375986,
+              60.7410064
+            ],
+            [
+              10.5376227,
+              60.7410309
+            ],
+            [
+              10.537719,
+              60.7410624
+            ],
+            [
+              10.5378105,
+              60.7411106
+            ],
+            [
+              10.5380971,
+              60.7412277
+            ],
+            [
+              10.5382148,
+              60.7412569
+            ],
+            [
+              10.5383098,
+              60.7412976
+            ],
+            [
+              10.5384759,
+              60.7413413
+            ],
+            [
+              10.5387175,
+              60.7413571
+            ],
+            [
+              10.5388722,
+              60.7414055
+            ],
+            [
+              10.5389571,
+              60.7414511
+            ],
+            [
+              10.5389956,
+              60.741531
+            ],
+            [
+              10.5391694,
+              60.7415596
+            ],
+            [
+              10.5391834,
+              60.741587
+            ],
+            [
+              10.5391516,
+              60.7416166
+            ],
+            [
+              10.5390419,
+              60.7416543
+            ],
+            [
+              10.5387986,
+              60.741634
+            ],
+            [
+              10.5386824,
+              60.7416133
+            ],
+            [
+              10.5385631,
+              60.7416148
+            ],
+            [
+              10.5385115,
+              60.7416295
+            ],
+            [
+              10.5383383,
+              60.7416396
+            ],
+            [
+              10.5381779,
+              60.7416892
+            ],
+            [
+              10.5380625,
+              60.7417033
+            ],
+            [
+              10.5379244,
+              60.741765
+            ],
+            [
+              10.5377357,
+              60.7417714
+            ],
+            [
+              10.5377253,
+              60.7419517
+            ],
+            [
+              10.5376936,
+              60.7420105
+            ],
+            [
+              10.5376949,
+              60.7421614
+            ],
+            [
+              10.5376722,
+              60.7422793
+            ],
+            [
+              10.5376382,
+              60.7423052
+            ],
+            [
+              10.5375172,
+              60.7423185
+            ],
+            [
+              10.5374692,
+              60.7423355
+            ],
+            [
+              10.5374626,
+              60.7423662
+            ],
+            [
+              10.5375568,
+              60.7424036
+            ],
+            [
+              10.5379278,
+              60.7424043
+            ],
+            [
+              10.5379894,
+              60.7424078
+            ],
+            [
+              10.5380408,
+              60.742427
+            ],
+            [
+              10.5380437,
+              60.7424874
+            ],
+            [
+              10.5379547,
+              60.7425337
+            ],
+            [
+              10.5379023,
+              60.7425428
+            ],
+            [
+              10.5378546,
+              60.742566
+            ],
+            [
+              10.5378256,
+              60.7426295
+            ],
+            [
+              10.5377707,
+              60.7426482
+            ],
+            [
+              10.5376515,
+              60.7426485
+            ],
+            [
+              10.5375989,
+              60.7426608
+            ],
+            [
+              10.5376082,
+              60.742722
+            ],
+            [
+              10.53768,
+              60.7427702
+            ],
+            [
+              10.5376803,
+              60.7428022
+            ],
+            [
+              10.5377416,
+              60.7428522
+            ],
+            [
+              10.5377527,
+              60.7428849
+            ],
+            [
+              10.5377912,
+              60.742908
+            ],
+            [
+              10.537847,
+              60.7429158
+            ],
+            [
+              10.5379316,
+              60.7429623
+            ],
+            [
+              10.5379808,
+              60.7429797
+            ],
+            [
+              10.5381478,
+              60.7430037
+            ],
+            [
+              10.5384029,
+              60.7430052
+            ],
+            [
+              10.5384591,
+              60.7430024
+            ],
+            [
+              10.538571,
+              60.7429799
+            ],
+            [
+              10.5387014,
+              60.7429679
+            ],
+            [
+              10.5387546,
+              60.742948
+            ],
+            [
+              10.538861,
+              60.7428832
+            ],
+            [
+              10.5389202,
+              60.7428788
+            ],
+            [
+              10.5389421,
+              60.742854
+            ],
+            [
+              10.5388475,
+              60.74282
+            ],
+            [
+              10.5386635,
+              60.7428163
+            ],
+            [
+              10.5386319,
+              60.742793
+            ],
+            [
+              10.5386206,
+              60.7427099
+            ],
+            [
+              10.5385881,
+              60.7426867
+            ],
+            [
+              10.538596,
+              60.7426548
+            ],
+            [
+              10.5386882,
+              60.7426197
+            ],
+            [
+              10.5387505,
+              60.7426179
+            ],
+            [
+              10.5388004,
+              60.7426325
+            ],
+            [
+              10.5388193,
+              60.7426612
+            ],
+            [
+              10.5388734,
+              60.7426715
+            ],
+            [
+              10.5389367,
+              60.7426674
+            ],
+            [
+              10.5389805,
+              60.7426373
+            ],
+            [
+              10.538989,
+              60.7425771
+            ],
+            [
+              10.5390089,
+              60.7425507
+            ],
+            [
+              10.5390745,
+              60.7425375
+            ],
+            [
+              10.5392615,
+              60.7425428
+            ],
+            [
+              10.5393209,
+              60.742532
+            ],
+            [
+              10.5394514,
+              60.7424376
+            ],
+            [
+              10.5394145,
+              60.7424126
+            ],
+            [
+              10.539353,
+              60.742409
+            ],
+            [
+              10.539299,
+              60.7423925
+            ],
+            [
+              10.5392698,
+              60.7423675
+            ],
+            [
+              10.5392796,
+              60.7423351
+            ],
+            [
+              10.5394499,
+              60.7422334
+            ],
+            [
+              10.5395491,
+              60.7421833
+            ],
+            [
+              10.5396961,
+              60.7421346
+            ],
+            [
+              10.5396811,
+              60.7420437
+            ],
+            [
+              10.5397784,
+              60.7420025
+            ],
+            [
+              10.539845,
+              60.7419984
+            ],
+            [
+              10.539963,
+              60.7420089
+            ],
+            [
+              10.5400272,
+              60.7420041
+            ],
+            [
+              10.5400605,
+              60.7419764
+            ],
+            [
+              10.5400609,
+              60.7419116
+            ],
+            [
+              10.5401555,
+              60.7418636
+            ],
+            [
+              10.5402298,
+              60.7418648
+            ],
+            [
+              10.5403576,
+              60.7419246
+            ],
+            [
+              10.5405527,
+              60.7419256
+            ],
+            [
+              10.540682,
+              60.741945
+            ],
+            [
+              10.5407718,
+              60.7419933
+            ],
+            [
+              10.5408452,
+              60.7420517
+            ],
+            [
+              10.5408911,
+              60.7421123
+            ],
+            [
+              10.5409252,
+              60.7421351
+            ],
+            [
+              10.540981,
+              60.7421509
+            ],
+            [
+              10.5410001,
+              60.7421787
+            ],
+            [
+              10.5411148,
+              60.7422492
+            ],
+            [
+              10.5411771,
+              60.7423383
+            ],
+            [
+              10.5413316,
+              60.7424285
+            ],
+            [
+              10.5415712,
+              60.7426075
+            ],
+            [
+              10.5415945,
+              60.7426382
+            ],
+            [
+              10.5415581,
+              60.7426605
+            ],
+            [
+              10.541549,
+              60.7426916
+            ],
+            [
+              10.5418127,
+              60.7428435
+            ],
+            [
+              10.5420477,
+              60.7428658
+            ],
+            [
+              10.5422111,
+              60.7429535
+            ],
+            [
+              10.5425547,
+              60.7430879
+            ],
+            [
+              10.5426521,
+              60.7431317
+            ],
+            [
+              10.5426777,
+              60.7431578
+            ],
+            [
+              10.5427775,
+              60.743188
+            ],
+            [
+              10.5428365,
+              60.7431952
+            ],
+            [
+              10.5428802,
+              60.7431721
+            ],
+            [
+              10.5429339,
+              60.7431596
+            ],
+            [
+              10.5429531,
+              60.7431048
+            ],
+            [
+              10.5429868,
+              60.7430814
+            ],
+            [
+              10.5430399,
+              60.7430647
+            ],
+            [
+              10.543262,
+              60.7430314
+            ],
+            [
+              10.5433719,
+              60.7430396
+            ],
+            [
+              10.5434042,
+              60.7431355
+            ],
+            [
+              10.5433551,
+              60.7432214
+            ],
+            [
+              10.5433276,
+              60.7432477
+            ],
+            [
+              10.5432345,
+              60.7432877
+            ],
+            [
+              10.5432527,
+              60.7433494
+            ],
+            [
+              10.5434466,
+              60.7434652
+            ],
+            [
+              10.5436177,
+              60.7436284
+            ],
+            [
+              10.5436684,
+              60.743709
+            ],
+            [
+              10.5436457,
+              60.743795
+            ],
+            [
+              10.5435924,
+              60.7438159
+            ],
+            [
+              10.543569,
+              60.7438403
+            ],
+            [
+              10.5435998,
+              60.7438666
+            ],
+            [
+              10.5436509,
+              60.7438834
+            ],
+            [
+              10.543657,
+              60.7439104
+            ],
+            [
+              10.5436055,
+              60.7439611
+            ],
+            [
+              10.5436052,
+              60.7439903
+            ],
+            [
+              10.5435373,
+              60.7440364
+            ],
+            [
+              10.543519,
+              60.7440665
+            ],
+            [
+              10.5435178,
+              60.7441255
+            ],
+            [
+              10.5434971,
+              60.7441505
+            ],
+            [
+              10.5433983,
+              60.7441815
+            ],
+            [
+              10.5433538,
+              60.7442336
+            ],
+            [
+              10.5433318,
+              60.744322
+            ],
+            [
+              10.5432715,
+              60.7443715
+            ],
+            [
+              10.5432461,
+              60.7444312
+            ],
+            [
+              10.5431832,
+              60.7444817
+            ],
+            [
+              10.5431824,
+              60.744602
+            ],
+            [
+              10.5432997,
+              60.7446726
+            ],
+            [
+              10.543483,
+              60.7447572
+            ],
+            [
+              10.5435889,
+              60.744789
+            ],
+            [
+              10.5437636,
+              60.7448012
+            ],
+            [
+              10.5438511,
+              60.7448464
+            ],
+            [
+              10.5438834,
+              60.7449892
+            ],
+            [
+              10.5439283,
+              60.7451138
+            ],
+            [
+              10.5440101,
+              60.7452054
+            ],
+            [
+              10.5440706,
+              60.7452546
+            ],
+            [
+              10.5445396,
+              60.7454611
+            ],
+            [
+              10.5449181,
+              60.7455807
+            ],
+            [
+              10.5451184,
+              60.7456601
+            ],
+            [
+              10.5451989,
+              60.7457111
+            ],
+            [
+              10.545219,
+              60.7457381
+            ],
+            [
+              10.5452327,
+              60.7459795
+            ],
+            [
+              10.5452553,
+              60.7460071
+            ],
+            [
+              10.54526,
+              60.7460663
+            ],
+            [
+              10.5452337,
+              60.7460915
+            ],
+            [
+              10.5452498,
+              60.7461212
+            ],
+            [
+              10.545342,
+              60.7461543
+            ],
+            [
+              10.5453905,
+              60.7462058
+            ],
+            [
+              10.5455124,
+              60.7462749
+            ],
+            [
+              10.5456095,
+              60.7463524
+            ],
+            [
+              10.5456522,
+              60.7464102
+            ],
+            [
+              10.5456828,
+              60.7465874
+            ],
+            [
+              10.5457429,
+              60.7466314
+            ],
+            [
+              10.5457316,
+              60.7466726
+            ],
+            [
+              10.5457569,
+              60.7467597
+            ],
+            [
+              10.5458211,
+              60.746809
+            ],
+            [
+              10.5458262,
+              60.7468412
+            ],
+            [
+              10.5458537,
+              60.7468649
+            ],
+            [
+              10.5459902,
+              60.7469216
+            ],
+            [
+              10.5461036,
+              60.7469334
+            ],
+            [
+              10.5461723,
+              60.7469306
+            ],
+            [
+              10.5461995,
+              60.7469629
+            ],
+            [
+              10.5462449,
+              60.7469843
+            ],
+            [
+              10.5462614,
+              60.747011
+            ],
+            [
+              10.546261,
+              60.7470675
+            ],
+            [
+              10.546231,
+              60.7470947
+            ],
+            [
+              10.5460611,
+              60.7471222
+            ],
+            [
+              10.5459441,
+              60.7471143
+            ],
+            [
+              10.545895,
+              60.7471273
+            ],
+            [
+              10.5458956,
+              60.7471598
+            ],
+            [
+              10.5460007,
+              60.7471901
+            ],
+            [
+              10.5461215,
+              60.7471865
+            ],
+            [
+              10.5461742,
+              60.7471659
+            ],
+            [
+              10.5462305,
+              60.7471613
+            ],
+            [
+              10.5463223,
+              60.7472009
+            ],
+            [
+              10.5463872,
+              60.7472039
+            ],
+            [
+              10.5464858,
+              60.7471748
+            ],
+            [
+              10.5465359,
+              60.7471212
+            ],
+            [
+              10.5467095,
+              60.7470457
+            ],
+            [
+              10.5469232,
+              60.7469807
+            ],
+            [
+              10.5471766,
+              60.746981
+            ],
+            [
+              10.5474832,
+              60.7471064
+            ],
+            [
+              10.5476103,
+              60.7471132
+            ],
+            [
+              10.5477218,
+              60.7470964
+            ],
+            [
+              10.5477155,
+              60.7471523
+            ],
+            [
+              10.5476621,
+              60.7472147
+            ],
+            [
+              10.5476621,
+              60.7472434
+            ],
+            [
+              10.547771,
+              60.7472884
+            ],
+            [
+              10.5477465,
+              60.7474232
+            ],
+            [
+              10.5477287,
+              60.7474783
+            ],
+            [
+              10.5473021,
+              60.7476368
+            ],
+            [
+              10.547249,
+              60.7476505
+            ],
+            [
+              10.5471297,
+              60.7476529
+            ],
+            [
+              10.5469921,
+              60.7477131
+            ],
+            [
+              10.5469779,
+              60.7477401
+            ],
+            [
+              10.5469314,
+              60.7477599
+            ],
+            [
+              10.5468261,
+              60.7477832
+            ],
+            [
+              10.5467688,
+              60.7477861
+            ],
+            [
+              10.5466743,
+              60.7478206
+            ],
+            [
+              10.5466037,
+              60.7478665
+            ],
+            [
+              10.546494,
+              60.7478965
+            ],
+            [
+              10.5464346,
+              60.7479059
+            ],
+            [
+              10.5459529,
+              60.7479149
+            ],
+            [
+              10.5458928,
+              60.7479663
+            ],
+            [
+              10.5456835,
+              60.7480794
+            ],
+            [
+              10.5456822,
+              60.7481429
+            ],
+            [
+              10.5457369,
+              60.7482277
+            ],
+            [
+              10.5455625,
+              60.7483094
+            ],
+            [
+              10.5455009,
+              60.7483097
+            ],
+            [
+              10.5453841,
+              60.7483814
+            ],
+            [
+              10.5452771,
+              60.7484097
+            ],
+            [
+              10.5451992,
+              60.7484165
+            ],
+            [
+              10.5450964,
+              60.7484158
+            ],
+            [
+              10.5450352,
+              60.7484199
+            ],
+            [
+              10.5448315,
+              60.7484762
+            ],
+            [
+              10.5447456,
+              60.7485188
+            ],
+            [
+              10.5446845,
+              60.7485222
+            ],
+            [
+              10.5446397,
+              60.7485399
+            ],
+            [
+              10.5446315,
+              60.7485718
+            ],
+            [
+              10.5445606,
+              60.7486207
+            ],
+            [
+              10.5443409,
+              60.7487281
+            ],
+            [
+              10.5442829,
+              60.7487295
+            ],
+            [
+              10.5442501,
+              60.7487534
+            ],
+            [
+              10.5442678,
+              60.7487804
+            ],
+            [
+              10.5442686,
+              60.7488354
+            ],
+            [
+              10.5442258,
+              60.7488948
+            ],
+            [
+              10.5442228,
+              60.7490209
+            ],
+            [
+              10.5441696,
+              60.7490738
+            ],
+            [
+              10.5441479,
+              60.7492261
+            ],
+            [
+              10.5440884,
+              60.7493811
+            ],
+            [
+              10.5440584,
+              60.749409
+            ],
+            [
+              10.544056,
+              60.7494669
+            ],
+            [
+              10.544142,
+              60.7495081
+            ],
+            [
+              10.5442479,
+              60.7495305
+            ],
+            [
+              10.5443321,
+              60.7495738
+            ],
+            [
+              10.5443891,
+              60.7495877
+            ],
+            [
+              10.5444256,
+              60.749609
+            ],
+            [
+              10.5445474,
+              60.7496422
+            ],
+            [
+              10.5445676,
+              60.7496588
+            ],
+            [
+              10.5445662,
+              60.7496948
+            ],
+            [
+              10.5445389,
+              60.749841
+            ],
+            [
+              10.544558,
+              60.7498755
+            ],
+            [
+              10.5446033,
+              60.7499021
+            ],
+            [
+              10.5448299,
+              60.75
+            ],
+            [
+              10.5448655,
+              60.7500153
+            ],
+            [
+              10.5448689,
+              60.7500874
+            ],
+            [
+              10.5448445,
+              60.7501202
+            ],
+            [
+              10.5446738,
+              60.75022
+            ],
+            [
+              10.5446231,
+              60.7504126
+            ],
+            [
+              10.5445655,
+              60.7504732
+            ],
+            [
+              10.5444645,
+              60.7505266
+            ],
+            [
+              10.5444343,
+              60.7505609
+            ],
+            [
+              10.5444374,
+              60.7505955
+            ],
+            [
+              10.5445193,
+              60.7506545
+            ],
+            [
+              10.5445235,
+              60.7507305
+            ],
+            [
+              10.5444823,
+              60.7508462
+            ],
+            [
+              10.5444322,
+              60.7509196
+            ],
+            [
+              10.544331,
+              60.7510159
+            ],
+            [
+              10.544332,
+              60.7510935
+            ],
+            [
+              10.544374,
+              60.7511244
+            ],
+            [
+              10.5444427,
+              60.751138
+            ],
+            [
+              10.5445822,
+              60.7511335
+            ],
+            [
+              10.5447085,
+              60.7510983
+            ],
+            [
+              10.5448743,
+              60.7510236
+            ],
+            [
+              10.5449519,
+              60.751007
+            ],
+            [
+              10.5451417,
+              60.7510093
+            ],
+            [
+              10.5453244,
+              60.750958
+            ],
+            [
+              10.5454969,
+              60.7509318
+            ],
+            [
+              10.5457335,
+              60.7508545
+            ],
+            [
+              10.545856,
+              60.7508524
+            ],
+            [
+              10.5459122,
+              60.7508641
+            ],
+            [
+              10.5459565,
+              60.7508975
+            ],
+            [
+              10.5459377,
+              60.7509673
+            ],
+            [
+              10.5458923,
+              60.7510236
+            ],
+            [
+              10.5458905,
+              60.7510881
+            ],
+            [
+              10.5459125,
+              60.7511524
+            ],
+            [
+              10.545976,
+              60.7512061
+            ],
+            [
+              10.5461642,
+              60.7513003
+            ],
+            [
+              10.5461972,
+              60.7513301
+            ],
+            [
+              10.5462107,
+              60.7513672
+            ],
+            [
+              10.546208,
+              60.7514395
+            ],
+            [
+              10.5461638,
+              60.7515124
+            ],
+            [
+              10.5460828,
+              60.7515762
+            ],
+            [
+              10.5459929,
+              60.7516255
+            ],
+            [
+              10.5457827,
+              60.7517054
+            ],
+            [
+              10.5456398,
+              60.7517776
+            ],
+            [
+              10.5452881,
+              60.7519956
+            ],
+            [
+              10.5448648,
+              60.7521888
+            ],
+            [
+              10.5443312,
+              60.7524212
+            ],
+            [
+              10.5442558,
+              60.7524677
+            ],
+            [
+              10.5441244,
+              60.7525903
+            ],
+            [
+              10.5440236,
+              60.752665
+            ],
+            [
+              10.5439309,
+              60.7527563
+            ],
+            [
+              10.5438902,
+              60.752818
+            ],
+            [
+              10.5438605,
+              60.7529505
+            ],
+            [
+              10.5438569,
+              60.7530551
+            ],
+            [
+              10.5438785,
+              60.7531318
+            ],
+            [
+              10.5439988,
+              60.7533888
+            ],
+            [
+              10.5439997,
+              60.7536723
+            ],
+            [
+              10.5441019,
+              60.7538012
+            ],
+            [
+              10.5441149,
+              60.7539104
+            ],
+            [
+              10.544122,
+              60.7542571
+            ],
+            [
+              10.5441824,
+              60.7544036
+            ],
+            [
+              10.5442265,
+              60.7545869
+            ],
+            [
+              10.5443283,
+              60.7547243
+            ],
+            [
+              10.5443485,
+              60.7547886
+            ],
+            [
+              10.5443493,
+              60.7548888
+            ],
+            [
+              10.5443715,
+              60.7549655
+            ],
+            [
+              10.5444759,
+              60.7551439
+            ],
+            [
+              10.544573,
+              60.7554438
+            ],
+            [
+              10.5445821,
+              60.7555944
+            ],
+            [
+              10.5446891,
+              60.7558428
+            ],
+            [
+              10.5447392,
+              60.7559148
+            ],
+            [
+              10.5449095,
+              60.7560781
+            ],
+            [
+              10.544991,
+              60.7561859
+            ],
+            [
+              10.5451042,
+              60.7562769
+            ],
+            [
+              10.5451265,
+              60.7563137
+            ],
+            [
+              10.5451452,
+              60.7564682
+            ],
+            [
+              10.5451847,
+              60.7565349
+            ],
+            [
+              10.545254,
+              60.7566022
+            ],
+            [
+              10.5455926,
+              60.7568464
+            ],
+            [
+              10.5459086,
+              60.75714
+            ],
+            [
+              10.5460812,
+              60.7572588
+            ],
+            [
+              10.5461723,
+              60.7573629
+            ],
+            [
+              10.5463505,
+              60.7575243
+            ],
+            [
+              10.5463882,
+              60.7575978
+            ],
+            [
+              10.5464524,
+              60.757859
+            ],
+            [
+              10.5465054,
+              60.7579233
+            ],
+            [
+              10.5467583,
+              60.758069
+            ],
+            [
+              10.5468409,
+              60.7581333
+            ],
+            [
+              10.5470357,
+              60.7583334
+            ],
+            [
+              10.5472105,
+              60.7584524
+            ],
+            [
+              10.5472845,
+              60.7585192
+            ],
+            [
+              10.5473283,
+              60.7585859
+            ],
+            [
+              10.547358,
+              60.7587405
+            ],
+            [
+              10.5474208,
+              60.7588521
+            ],
+            [
+              10.5474585,
+              60.7589599
+            ],
+            [
+              10.5474843,
+              60.7593057
+            ],
+            [
+              10.5476084,
+              60.7594806
+            ],
+            [
+              10.5476131,
+              60.7598306
+            ],
+            [
+              10.5476334,
+              60.7599079
+            ],
+            [
+              10.5477396,
+              60.7600865
+            ],
+            [
+              10.5477617,
+              60.7601635
+            ],
+            [
+              10.547763,
+              60.7603541
+            ],
+            [
+              10.5477796,
+              60.7604315
+            ],
+            [
+              10.5478393,
+              60.7605362
+            ],
+            [
+              10.5479136,
+              60.7606035
+            ],
+            [
+              10.5480173,
+              60.7606605
+            ],
+            [
+              10.5481857,
+              60.7607308
+            ],
+            [
+              10.5485586,
+              60.7608637
+            ],
+            [
+              10.5488217,
+              60.7610053
+            ],
+            [
+              10.5492064,
+              60.7612784
+            ],
+            [
+              10.5492598,
+              60.7613508
+            ],
+            [
+              10.549276,
+              60.7614283
+            ],
+            [
+              10.5492711,
+              60.7615406
+            ],
+            [
+              10.5492515,
+              60.7615785
+            ],
+            [
+              10.5491205,
+              60.7617214
+            ],
+            [
+              10.5491086,
+              60.7618731
+            ],
+            [
+              10.5490599,
+              60.7619475
+            ],
+            [
+              10.5489664,
+              60.762012
+            ],
+            [
+              10.5488464,
+              60.762044
+            ],
+            [
+              10.5487037,
+              60.762054
+            ],
+            [
+              10.5486423,
+              60.7620736
+            ],
+            [
+              10.5485339,
+              60.7621329
+            ],
+            [
+              10.548419,
+              60.7621632
+            ],
+            [
+              10.548288,
+              60.7621561
+            ],
+            [
+              10.5481797,
+              60.7620721
+            ],
+            [
+              10.5481221,
+              60.7620593
+            ],
+            [
+              10.5480485,
+              60.7620591
+            ],
+            [
+              10.5479735,
+              60.7620722
+            ],
+            [
+              10.5479269,
+              60.7620906
+            ],
+            [
+              10.5477855,
+              60.7621697
+            ],
+            [
+              10.5477242,
+              60.7622301
+            ],
+            [
+              10.5477107,
+              60.7622631
+            ],
+            [
+              10.5477185,
+              60.7623606
+            ],
+            [
+              10.5477785,
+              60.7624215
+            ],
+            [
+              10.548107,
+              60.7626588
+            ],
+            [
+              10.5481649,
+              60.7627303
+            ],
+            [
+              10.5481969,
+              60.7627991
+            ],
+            [
+              10.5482521,
+              60.7629916
+            ],
+            [
+              10.5482986,
+              60.7630581
+            ],
+            [
+              10.5483958,
+              60.7631181
+            ],
+            [
+              10.5486616,
+              60.763251
+            ],
+            [
+              10.5488319,
+              60.7633791
+            ],
+            [
+              10.5490467,
+              60.7636188
+            ],
+            [
+              10.5492065,
+              60.7637434
+            ],
+            [
+              10.5495536,
+              60.7640356
+            ],
+            [
+              10.5496431,
+              60.7641375
+            ],
+            [
+              10.5497056,
+              60.7642375
+            ],
+            [
+              10.5497446,
+              60.7643467
+            ],
+            [
+              10.5497402,
+              60.7644487
+            ],
+            [
+              10.5496881,
+              60.7645142
+            ],
+            [
+              10.5496388,
+              60.7645389
+            ],
+            [
+              10.5493022,
+              60.7646696
+            ],
+            [
+              10.5491499,
+              60.764747
+            ],
+            [
+              10.549076,
+              60.7648159
+            ],
+            [
+              10.5490596,
+              60.7648539
+            ],
+            [
+              10.5490597,
+              60.7649324
+            ],
+            [
+              10.5491087,
+              60.7650043
+            ],
+            [
+              10.5491422,
+              60.7650199
+            ],
+            [
+              10.5492147,
+              60.7650731
+            ],
+            [
+              10.549218,
+              60.7651419
+            ],
+            [
+              10.5491673,
+              60.7652089
+            ],
+            [
+              10.5489749,
+              60.7653361
+            ],
+            [
+              10.5488089,
+              60.7654146
+            ],
+            [
+              10.5486725,
+              60.7654589
+            ],
+            [
+              10.5482808,
+              60.7655295
+            ],
+            [
+              10.5481317,
+              60.7655434
+            ],
+            [
+              10.5478027,
+              60.76555
+            ],
+            [
+              10.5477254,
+              60.7655608
+            ],
+            [
+              10.5475935,
+              60.7655977
+            ],
+            [
+              10.5474697,
+              60.7656501
+            ],
+            [
+              10.5473148,
+              60.7657799
+            ],
+            [
+              10.5472609,
+              60.7658044
+            ],
+            [
+              10.5471236,
+              60.7658049
+            ],
+            [
+              10.5469211,
+              60.7657808
+            ],
+            [
+              10.5466987,
+              60.7656737
+            ],
+            [
+              10.5464931,
+              60.7656608
+            ],
+            [
+              10.5464254,
+              60.7656429
+            ],
+            [
+              10.5463952,
+              60.7656157
+            ],
+            [
+              10.5463671,
+              60.7655531
+            ],
+            [
+              10.5463302,
+              60.7655315
+            ],
+            [
+              10.546272,
+              60.7655235
+            ],
+            [
+              10.5458699,
+              60.7655217
+            ],
+            [
+              10.5457689,
+              60.7654969
+            ],
+            [
+              10.5456939,
+              60.765446
+            ],
+            [
+              10.5455104,
+              60.7652608
+            ],
+            [
+              10.5454145,
+              60.7652099
+            ],
+            [
+              10.5453067,
+              60.7651791
+            ],
+            [
+              10.5452496,
+              60.7651736
+            ],
+            [
+              10.5451786,
+              60.7651789
+            ],
+            [
+              10.5451355,
+              60.7652108
+            ],
+            [
+              10.5451363,
+              60.7652378
+            ],
+            [
+              10.545162,
+              60.765266
+            ],
+            [
+              10.545313,
+              60.7653782
+            ],
+            [
+              10.5454247,
+              60.7655127
+            ],
+            [
+              10.5454454,
+              60.765588
+            ],
+            [
+              10.5454468,
+              60.7657354
+            ],
+            [
+              10.545467,
+              60.7658036
+            ],
+            [
+              10.5456008,
+              60.7658832
+            ],
+            [
+              10.545598,
+              60.7659137
+            ],
+            [
+              10.5455675,
+              60.7659475
+            ],
+            [
+              10.5454127,
+              60.766039
+            ],
+            [
+              10.5450789,
+              60.7662045
+            ],
+            [
+              10.5448934,
+              60.7664121
+            ],
+            [
+              10.5448066,
+              60.7664786
+            ],
+            [
+              10.5445533,
+              60.7665699
+            ],
+            [
+              10.544392,
+              60.7666599
+            ],
+            [
+              10.5441544,
+              60.7667615
+            ],
+            [
+              10.5441073,
+              60.7667936
+            ],
+            [
+              10.5440947,
+              60.7668292
+            ],
+            [
+              10.5441131,
+              60.7668581
+            ],
+            [
+              10.5441786,
+              60.7668714
+            ],
+            [
+              10.5442555,
+              60.766869
+            ],
+            [
+              10.5443146,
+              60.7668857
+            ],
+            [
+              10.5443383,
+              60.7669172
+            ],
+            [
+              10.5443304,
+              60.7669898
+            ],
+            [
+              10.5442698,
+              60.7670555
+            ],
+            [
+              10.5441777,
+              60.7671205
+            ],
+            [
+              10.5440616,
+              60.767177
+            ],
+            [
+              10.5439929,
+              60.7671952
+            ],
+            [
+              10.5438609,
+              60.7672069
+            ],
+            [
+              10.5437382,
+              60.7672012
+            ],
+            [
+              10.5436517,
+              60.7671854
+            ],
+            [
+              10.5434439,
+              60.7671823
+            ],
+            [
+              10.5433813,
+              60.7671662
+            ],
+            [
+              10.5433739,
+              60.7671106
+            ],
+            [
+              10.5434129,
+              60.7670565
+            ],
+            [
+              10.5434133,
+              60.7668934
+            ],
+            [
+              10.5433667,
+              60.7668654
+            ],
+            [
+              10.5432418,
+              60.7668564
+            ],
+            [
+              10.5430332,
+              60.7669175
+            ],
+            [
+              10.5428478,
+              60.7669533
+            ],
+            [
+              10.5427586,
+              60.7669991
+            ],
+            [
+              10.5426144,
+              60.7671041
+            ],
+            [
+              10.5424637,
+              60.7671655
+            ],
+            [
+              10.5424317,
+              60.7671876
+            ],
+            [
+              10.5424201,
+              60.7672243
+            ],
+            [
+              10.5424229,
+              60.767343
+            ],
+            [
+              10.5423471,
+              60.7673945
+            ],
+            [
+              10.5422252,
+              60.7674334
+            ],
+            [
+              10.5421096,
+              60.7674445
+            ],
+            [
+              10.5419249,
+              60.7674458
+            ],
+            [
+              10.5418457,
+              60.7674624
+            ],
+            [
+              10.541794,
+              60.7674858
+            ],
+            [
+              10.5417088,
+              60.7675506
+            ],
+            [
+              10.5415326,
+              60.7677201
+            ],
+            [
+              10.541431,
+              60.767869
+            ],
+            [
+              10.5413792,
+              60.7678975
+            ],
+            [
+              10.5411426,
+              60.7679867
+            ],
+            [
+              10.5408945,
+              60.7680434
+            ],
+            [
+              10.5407767,
+              60.7680856
+            ],
+            [
+              10.5406719,
+              60.7681449
+            ],
+            [
+              10.540509,
+              60.7682743
+            ],
+            [
+              10.5404053,
+              60.7683352
+            ],
+            [
+              10.5403396,
+              60.768355
+            ],
+            [
+              10.540193,
+              60.7683747
+            ],
+            [
+              10.5399543,
+              60.768455
+            ],
+            [
+              10.5398311,
+              60.7684635
+            ],
+            [
+              10.5396382,
+              60.76843
+            ],
+            [
+              10.5395979,
+              60.7684075
+            ],
+            [
+              10.5395736,
+              60.768373
+            ],
+            [
+              10.5395584,
+              60.7682998
+            ],
+            [
+              10.5395274,
+              60.7682602
+            ],
+            [
+              10.5394803,
+              60.7682427
+            ],
+            [
+              10.5394227,
+              60.7682397
+            ],
+            [
+              10.5393651,
+              60.768248
+            ],
+            [
+              10.5392654,
+              60.768298
+            ],
+            [
+              10.5391627,
+              60.7683876
+            ],
+            [
+              10.5390756,
+              60.7684433
+            ],
+            [
+              10.5388209,
+              60.7685599
+            ],
+            [
+              10.5387079,
+              60.7685975
+            ],
+            [
+              10.5386604,
+              60.7686254
+            ],
+            [
+              10.5385027,
+              60.7687563
+            ],
+            [
+              10.5381754,
+              60.7689326
+            ],
+            [
+              10.5380513,
+              60.7689521
+            ],
+            [
+              10.5376909,
+              60.768956
+            ],
+            [
+              10.5374888,
+              60.7689799
+            ],
+            [
+              10.5372765,
+              60.7689928
+            ],
+            [
+              10.5370274,
+              60.7690244
+            ],
+            [
+              10.5369019,
+              60.7690273
+            ],
+            [
+              10.5367876,
+              60.7690139
+            ],
+            [
+              10.5366925,
+              60.7689519
+            ],
+            [
+              10.5365744,
+              60.7687963
+            ],
+            [
+              10.5364603,
+              60.7687
+            ],
+            [
+              10.536428,
+              60.7686186
+            ],
+            [
+              10.5364285,
+              60.7684193
+            ],
+            [
+              10.5363461,
+              60.7682725
+            ],
+            [
+              10.5363341,
+              60.7680874
+            ],
+            [
+              10.5362917,
+              60.7680259
+            ],
+            [
+              10.5362854,
+              60.7679863
+            ],
+            [
+              10.5362513,
+              60.7679656
+            ],
+            [
+              10.5362426,
+              60.7679359
+            ],
+            [
+              10.536249,
+              60.7678163
+            ],
+            [
+              10.5363619,
+              60.7676634
+            ],
+            [
+              10.536507,
+              60.7675232
+            ],
+            [
+              10.5365961,
+              60.7674586
+            ],
+            [
+              10.5366928,
+              60.7674121
+            ],
+            [
+              10.5367269,
+              60.7673838
+            ],
+            [
+              10.5367225,
+              60.7673159
+            ],
+            [
+              10.536686,
+              60.7672813
+            ],
+            [
+              10.5365784,
+              60.7672275
+            ],
+            [
+              10.5364249,
+              60.767196
+            ],
+            [
+              10.5361035,
+              60.7671625
+            ],
+            [
+              10.5359569,
+              60.7671606
+            ],
+            [
+              10.5355057,
+              60.7671809
+            ],
+            [
+              10.53528,
+              60.7671728
+            ],
+            [
+              10.5350462,
+              60.7671319
+            ],
+            [
+              10.5348232,
+              60.7671057
+            ],
+            [
+              10.5346641,
+              60.7671034
+            ],
+            [
+              10.5344497,
+              60.7671298
+            ],
+            [
+              10.5340613,
+              60.7671596
+            ],
+            [
+              10.5337664,
+              60.767208
+            ],
+            [
+              10.5331538,
+              60.7673848
+            ],
+            [
+              10.5330377,
+              60.7674371
+            ],
+            [
+              10.5328552,
+              60.7675602
+            ],
+            [
+              10.532605,
+              60.7677057
+            ],
+            [
+              10.5323086,
+              60.7680209
+            ],
+            [
+              10.5321908,
+              60.7682411
+            ],
+            [
+              10.5321287,
+              60.7683132
+            ],
+            [
+              10.5319952,
+              60.7684048
+            ],
+            [
+              10.5319628,
+              60.7684676
+            ],
+            [
+              10.5319552,
+              60.7685705
+            ],
+            [
+              10.5319692,
+              60.7685941
+            ],
+            [
+              10.5319495,
+              60.7686038
+            ],
+            [
+              10.5319159,
+              60.7686662
+            ],
+            [
+              10.5318791,
+              60.7686995
+            ],
+            [
+              10.5317703,
+              60.7687592
+            ],
+            [
+              10.5313949,
+              60.7689049
+            ],
+            [
+              10.5311905,
+              60.7689727
+            ],
+            [
+              10.5308271,
+              60.7690491
+            ],
+            [
+              10.5304939,
+              60.7691454
+            ],
+            [
+              10.5303611,
+              60.7691749
+            ],
+            [
+              10.530234,
+              60.7691888
+            ],
+            [
+              10.5299737,
+              60.7691791
+            ],
+            [
+              10.5299211,
+              60.769188
+            ],
+            [
+              10.5298763,
+              60.7692157
+            ],
+            [
+              10.5297471,
+              60.7693402
+            ],
+            [
+              10.5296482,
+              60.769375
+            ],
+            [
+              10.5295284,
+              60.7693807
+            ],
+            [
+              10.5294702,
+              60.7693938
+            ],
+            [
+              10.5293914,
+              60.7694422
+            ],
+            [
+              10.5293419,
+              60.7695092
+            ],
+            [
+              10.5292865,
+              60.7696408
+            ],
+            [
+              10.5292693,
+              60.7697938
+            ],
+            [
+              10.5292368,
+              60.7698241
+            ],
+            [
+              10.5291062,
+              60.7698958
+            ],
+            [
+              10.5289642,
+              60.7701129
+            ],
+            [
+              10.528804,
+              60.7702381
+            ],
+            [
+              10.5287399,
+              60.770307
+            ],
+            [
+              10.5286224,
+              60.7705507
+            ],
+            [
+              10.5284494,
+              60.770634
+            ],
+            [
+              10.5282012,
+              60.7707097
+            ],
+            [
+              10.5281203,
+              60.7707179
+            ],
+            [
+              10.5280478,
+              60.7707098
+            ],
+            [
+              10.5280209,
+              60.7706854
+            ],
+            [
+              10.5280367,
+              60.7706154
+            ],
+            [
+              10.528189,
+              60.7705375
+            ],
+            [
+              10.528224,
+              60.7705084
+            ],
+            [
+              10.5282185,
+              60.7704444
+            ],
+            [
+              10.5281595,
+              60.770395
+            ],
+            [
+              10.528112,
+              60.7703314
+            ],
+            [
+              10.5281018,
+              60.7701022
+            ],
+            [
+              10.5282042,
+              60.7699744
+            ],
+            [
+              10.5281992,
+              60.7699458
+            ],
+            [
+              10.5280605,
+              60.7698751
+            ],
+            [
+              10.528022,
+              60.7698373
+            ],
+            [
+              10.5280947,
+              60.7697824
+            ],
+            [
+              10.528209,
+              60.769751
+            ],
+            [
+              10.528471,
+              60.7697462
+            ],
+            [
+              10.5285398,
+              60.7697295
+            ],
+            [
+              10.5286579,
+              60.7696807
+            ],
+            [
+              10.5287242,
+              60.7696201
+            ],
+            [
+              10.528738,
+              60.7695855
+            ],
+            [
+              10.5287356,
+              60.7694495
+            ],
+            [
+              10.5287571,
+              60.7694131
+            ],
+            [
+              10.5288538,
+              60.7693533
+            ],
+            [
+              10.5289789,
+              60.7692959
+            ],
+            [
+              10.5291766,
+              60.7692278
+            ],
+            [
+              10.529176,
+              60.7691988
+            ],
+            [
+              10.5291284,
+              60.7691823
+            ],
+            [
+              10.5290086,
+              60.7691616
+            ],
+            [
+              10.5288896,
+              60.7691529
+            ],
+            [
+              10.528205,
+              60.7691445
+            ],
+            [
+              10.528153,
+              60.7691302
+            ],
+            [
+              10.5281302,
+              60.7691015
+            ],
+            [
+              10.5281682,
+              60.7690697
+            ],
+            [
+              10.5282205,
+              60.7690586
+            ],
+            [
+              10.5289235,
+              60.7690596
+            ],
+            [
+              10.5291314,
+              60.7690525
+            ],
+            [
+              10.5292697,
+              60.7690345
+            ],
+            [
+              10.5293311,
+              60.7690167
+            ],
+            [
+              10.5295446,
+              60.7688972
+            ]
+          ],
+          [
+            [
+              10.5371364,
+              60.7425025
+            ],
+            [
+              10.5371612,
+              60.7424432
+            ],
+            [
+              10.5371599,
+              60.7423805
+            ],
+            [
+              10.5370879,
+              60.7423284
+            ],
+            [
+              10.5369814,
+              60.7422935
+            ],
+            [
+              10.536924,
+              60.7422824
+            ],
+            [
+              10.5367964,
+              60.7422824
+            ],
+            [
+              10.5366748,
+              60.7423016
+            ],
+            [
+              10.5366378,
+              60.7423229
+            ],
+            [
+              10.5364823,
+              60.7424997
+            ],
+            [
+              10.5364311,
+              60.7426189
+            ],
+            [
+              10.5364259,
+              60.7428517
+            ],
+            [
+              10.5364431,
+              60.7430192
+            ],
+            [
+              10.5364323,
+              60.7431167
+            ],
+            [
+              10.5363936,
+              60.7431363
+            ],
+            [
+              10.536377,
+              60.7431643
+            ],
+            [
+              10.5363812,
+              60.7432216
+            ],
+            [
+              10.536494,
+              60.7432896
+            ],
+            [
+              10.5365604,
+              60.7433051
+            ],
+            [
+              10.5367465,
+              60.7433033
+            ],
+            [
+              10.5367927,
+              60.7432882
+            ],
+            [
+              10.5368487,
+              60.7432348
+            ],
+            [
+              10.5369475,
+              60.7431993
+            ],
+            [
+              10.5369639,
+              60.7431424
+            ],
+            [
+              10.5370223,
+              60.7430871
+            ],
+            [
+              10.5370344,
+              60.742968
+            ],
+            [
+              10.5370634,
+              60.7429101
+            ],
+            [
+              10.5370645,
+              60.7428516
+            ],
+            [
+              10.5371031,
+              60.7427922
+            ],
+            [
+              10.5371364,
+              60.7425025
+            ]
+          ],
+          [
+            [
+              10.5448866,
+              60.7482449
+            ],
+            [
+              10.5448992,
+              60.7482975
+            ],
+            [
+              10.5450067,
+              60.7483705
+            ],
+            [
+              10.5451818,
+              60.7483709
+            ],
+            [
+              10.5452358,
+              60.7483577
+            ],
+            [
+              10.545303,
+              60.7483044
+            ],
+            [
+              10.5453684,
+              60.7482261
+            ],
+            [
+              10.5453614,
+              60.748169
+            ],
+            [
+              10.5452416,
+              60.7480997
+            ],
+            [
+              10.5451824,
+              60.7481013
+            ],
+            [
+              10.544957,
+              60.7482012
+            ],
+            [
+              10.5449312,
+              60.7482266
+            ],
+            [
+              10.5448866,
+              60.7482449
+            ]
+          ],
+          [
+            [
+              10.5433311,
+              60.7515144
+            ],
+            [
+              10.5434011,
+              60.7514483
+            ],
+            [
+              10.5436012,
+              60.7513126
+            ],
+            [
+              10.5436298,
+              60.7512558
+            ],
+            [
+              10.5436218,
+              60.7511924
+            ],
+            [
+              10.5435629,
+              60.7511688
+            ],
+            [
+              10.5435041,
+              60.7511709
+            ],
+            [
+              10.5434613,
+              60.7511881
+            ],
+            [
+              10.5434408,
+              60.7512816
+            ],
+            [
+              10.5433179,
+              60.7513471
+            ],
+            [
+              10.5431902,
+              60.7515356
+            ],
+            [
+              10.5432362,
+              60.7515524
+            ],
+            [
+              10.5432971,
+              60.7515373
+            ],
+            [
+              10.5433311,
+              60.7515144
+            ]
+          ],
+          [
+            [
+              10.5437658,
+              60.7495875
+            ],
+            [
+              10.5438436,
+              60.7496325
+            ],
+            [
+              10.5439093,
+              60.7496359
+            ],
+            [
+              10.5439485,
+              60.7496164
+            ],
+            [
+              10.5439646,
+              60.7495876
+            ],
+            [
+              10.5439807,
+              60.749541
+            ],
+            [
+              10.5439036,
+              60.7494988
+            ],
+            [
+              10.5438927,
+              60.7494702
+            ],
+            [
+              10.543833,
+              60.7494227
+            ],
+            [
+              10.5437764,
+              60.7494172
+            ],
+            [
+              10.5437353,
+              60.749436
+            ],
+            [
+              10.5437256,
+              60.7494952
+            ],
+            [
+              10.5437651,
+              60.7495193
+            ],
+            [
+              10.5437658,
+              60.7495875
+            ]
+          ],
+          [
+            [
+              10.5425466,
+              60.7507998
+            ],
+            [
+              10.5426289,
+              60.7507904
+            ],
+            [
+              10.5426185,
+              60.7507537
+            ],
+            [
+              10.5425479,
+              60.7507354
+            ],
+            [
+              10.5424305,
+              60.7507438
+            ],
+            [
+              10.5423088,
+              60.7507836
+            ],
+            [
+              10.5422354,
+              60.7508376
+            ],
+            [
+              10.5422259,
+              60.7508661
+            ],
+            [
+              10.5422499,
+              60.750896
+            ],
+            [
+              10.5423057,
+              60.7508885
+            ],
+            [
+              10.5424144,
+              60.750821
+            ],
+            [
+              10.5425466,
+              60.7507998
+            ]
+          ],
+          [
+            [
+              10.5430668,
+              60.7507773
+            ],
+            [
+              10.5430552,
+              60.7508218
+            ],
+            [
+              10.5430671,
+              60.7508595
+            ],
+            [
+              10.5431233,
+              60.750872
+            ],
+            [
+              10.5431906,
+              60.750859
+            ],
+            [
+              10.5432347,
+              60.7508369
+            ],
+            [
+              10.5432992,
+              60.7507833
+            ],
+            [
+              10.5433042,
+              60.7507443
+            ],
+            [
+              10.5432468,
+              60.7507308
+            ],
+            [
+              10.5431118,
+              60.7507502
+            ],
+            [
+              10.5430668,
+              60.7507773
+            ]
+          ]
+        ]
+      },
+      "id": "relation/7682780"
+    },
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "way/535531961",
+        "natural": "wood",
+        "place": "islet",
+        "@relations": [
+          {
+            "role": "inner",
+            "rel": 7682780,
+            "reltags": {
+              "ele": "432",
+              "ele:min": "429",
+              "name": "Skumsjøen",
+              "natural": "water",
+              "ref:nve:magasin": "46",
+              "ref:nve:vann": "195",
+              "ssr:stedsnr": "856500",
+              "type": "multipolygon",
+              "water": "reservoir",
+              "wikidata": "Q19389125"
+            }
+          }
+        ]
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5371364,
+              60.7425025
+            ],
+            [
+              10.5371031,
+              60.7427922
+            ],
+            [
+              10.5370645,
+              60.7428516
+            ],
+            [
+              10.5370634,
+              60.7429101
+            ],
+            [
+              10.5370344,
+              60.742968
+            ],
+            [
+              10.5370223,
+              60.7430871
+            ],
+            [
+              10.5369639,
+              60.7431424
+            ],
+            [
+              10.5369475,
+              60.7431993
+            ],
+            [
+              10.5368487,
+              60.7432348
+            ],
+            [
+              10.5367927,
+              60.7432882
+            ],
+            [
+              10.5367465,
+              60.7433033
+            ],
+            [
+              10.5365604,
+              60.7433051
+            ],
+            [
+              10.536494,
+              60.7432896
+            ],
+            [
+              10.5363812,
+              60.7432216
+            ],
+            [
+              10.536377,
+              60.7431643
+            ],
+            [
+              10.5363936,
+              60.7431363
+            ],
+            [
+              10.5364323,
+              60.7431167
+            ],
+            [
+              10.5364431,
+              60.7430192
+            ],
+            [
+              10.5364259,
+              60.7428517
+            ],
+            [
+              10.5364311,
+              60.7426189
+            ],
+            [
+              10.5364823,
+              60.7424997
+            ],
+            [
+              10.5366378,
+              60.7423229
+            ],
+            [
+              10.5366748,
+              60.7423016
+            ],
+            [
+              10.5367964,
+              60.7422824
+            ],
+            [
+              10.536924,
+              60.7422824
+            ],
+            [
+              10.5369814,
+              60.7422935
+            ],
+            [
+              10.5370879,
+              60.7423284
+            ],
+            [
+              10.5371599,
+              60.7423805
+            ],
+            [
+              10.5371612,
+              60.7424432
+            ],
+            [
+              10.5371364,
+              60.7425025
+            ]
+          ]
+        ]
+      },
+      "id": "way/535531961"
+    },
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "way/785964288",
+        "natural": "wood",
+        "place": "islet",
+        "@relations": [
+          {
+            "role": "inner",
+            "rel": 7682780,
+            "reltags": {
+              "ele": "432",
+              "ele:min": "429",
+              "name": "Skumsjøen",
+              "natural": "water",
+              "ref:nve:magasin": "46",
+              "ref:nve:vann": "195",
+              "ssr:stedsnr": "856500",
+              "type": "multipolygon",
+              "water": "reservoir",
+              "wikidata": "Q19389125"
+            }
+          }
+        ]
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5448866,
+              60.7482449
+            ],
+            [
+              10.5449312,
+              60.7482266
+            ],
+            [
+              10.544957,
+              60.7482012
+            ],
+            [
+              10.5451824,
+              60.7481013
+            ],
+            [
+              10.5452416,
+              60.7480997
+            ],
+            [
+              10.5453614,
+              60.748169
+            ],
+            [
+              10.5453684,
+              60.7482261
+            ],
+            [
+              10.545303,
+              60.7483044
+            ],
+            [
+              10.5452358,
+              60.7483577
+            ],
+            [
+              10.5451818,
+              60.7483709
+            ],
+            [
+              10.5450067,
+              60.7483705
+            ],
+            [
+              10.5448992,
+              60.7482975
+            ],
+            [
+              10.5448866,
+              60.7482449
+            ]
+          ]
+        ]
+      },
+      "id": "way/785964288"
+    },
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "way/1212280668",
+        "natural": "wood",
+        "place": "islet",
+        "@relations": [
+          {
+            "role": "inner",
+            "rel": 7682780,
+            "reltags": {
+              "ele": "432",
+              "ele:min": "429",
+              "name": "Skumsjøen",
+              "natural": "water",
+              "ref:nve:magasin": "46",
+              "ref:nve:vann": "195",
+              "ssr:stedsnr": "856500",
+              "type": "multipolygon",
+              "water": "reservoir",
+              "wikidata": "Q19389125"
+            }
+          }
+        ]
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5430668,
+              60.7507773
+            ],
+            [
+              10.5431118,
+              60.7507502
+            ],
+            [
+              10.5432468,
+              60.7507308
+            ],
+            [
+              10.5433042,
+              60.7507443
+            ],
+            [
+              10.5432992,
+              60.7507833
+            ],
+            [
+              10.5432347,
+              60.7508369
+            ],
+            [
+              10.5431906,
+              60.750859
+            ],
+            [
+              10.5431233,
+              60.750872
+            ],
+            [
+              10.5430671,
+              60.7508595
+            ],
+            [
+              10.5430552,
+              60.7508218
+            ],
+            [
+              10.5430668,
+              60.7507773
+            ]
+          ]
+        ]
+      },
+      "id": "way/1212280668"
+    },
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "way/1212280669",
+        "natural": "wood",
+        "place": "islet",
+        "@relations": [
+          {
+            "role": "inner",
+            "rel": 7682780,
+            "reltags": {
+              "ele": "432",
+              "ele:min": "429",
+              "name": "Skumsjøen",
+              "natural": "water",
+              "ref:nve:magasin": "46",
+              "ref:nve:vann": "195",
+              "ssr:stedsnr": "856500",
+              "type": "multipolygon",
+              "water": "reservoir",
+              "wikidata": "Q19389125"
+            }
+          }
+        ]
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5425466,
+              60.7507998
+            ],
+            [
+              10.5424144,
+              60.750821
+            ],
+            [
+              10.5423057,
+              60.7508885
+            ],
+            [
+              10.5422499,
+              60.750896
+            ],
+            [
+              10.5422259,
+              60.7508661
+            ],
+            [
+              10.5422354,
+              60.7508376
+            ],
+            [
+              10.5423088,
+              60.7507836
+            ],
+            [
+              10.5424305,
+              60.7507438
+            ],
+            [
+              10.5425479,
+              60.7507354
+            ],
+            [
+              10.5426185,
+              60.7507537
+            ],
+            [
+              10.5426289,
+              60.7507904
+            ],
+            [
+              10.5425466,
+              60.7507998
+            ]
+          ]
+        ]
+      },
+      "id": "way/1212280669"
+    },
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "way/1212280670",
+        "natural": "wood",
+        "place": "islet",
+        "@relations": [
+          {
+            "role": "inner",
+            "rel": 7682780,
+            "reltags": {
+              "ele": "432",
+              "ele:min": "429",
+              "name": "Skumsjøen",
+              "natural": "water",
+              "ref:nve:magasin": "46",
+              "ref:nve:vann": "195",
+              "ssr:stedsnr": "856500",
+              "type": "multipolygon",
+              "water": "reservoir",
+              "wikidata": "Q19389125"
+            }
+          }
+        ]
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5433311,
+              60.7515144
+            ],
+            [
+              10.5432971,
+              60.7515373
+            ],
+            [
+              10.5432362,
+              60.7515524
+            ],
+            [
+              10.5431902,
+              60.7515356
+            ],
+            [
+              10.5433179,
+              60.7513471
+            ],
+            [
+              10.5434408,
+              60.7512816
+            ],
+            [
+              10.5434613,
+              60.7511881
+            ],
+            [
+              10.5435041,
+              60.7511709
+            ],
+            [
+              10.5435629,
+              60.7511688
+            ],
+            [
+              10.5436218,
+              60.7511924
+            ],
+            [
+              10.5436298,
+              60.7512558
+            ],
+            [
+              10.5436012,
+              60.7513126
+            ],
+            [
+              10.5434011,
+              60.7514483
+            ],
+            [
+              10.5433311,
+              60.7515144
+            ]
+          ]
+        ]
+      },
+      "id": "way/1212280670"
+    },
+    {
+      "type": "Feature",
+      "properties": {
+        "@id": "way/1212280699",
+        "natural": "wood",
+        "place": "islet",
+        "@relations": [
+          {
+            "role": "inner",
+            "rel": 7682780,
+            "reltags": {
+              "ele": "432",
+              "ele:min": "429",
+              "name": "Skumsjøen",
+              "natural": "water",
+              "ref:nve:magasin": "46",
+              "ref:nve:vann": "195",
+              "ssr:stedsnr": "856500",
+              "type": "multipolygon",
+              "water": "reservoir",
+              "wikidata": "Q19389125"
+            }
+          }
+        ]
+      },
+      "geometry": {
+        "type": "Polygon",
+        "coordinates": [
+          [
+            [
+              10.5437658,
+              60.7495875
+            ],
+            [
+              10.5437651,
+              60.7495193
+            ],
+            [
+              10.5437256,
+              60.7494952
+            ],
+            [
+              10.5437353,
+              60.749436
+            ],
+            [
+              10.5437764,
+              60.7494172
+            ],
+            [
+              10.543833,
+              60.7494227
+            ],
+            [
+              10.5438927,
+              60.7494702
+            ],
+            [
+              10.5439036,
+              60.7494988
+            ],
+            [
+              10.5439807,
+              60.749541
+            ],
+            [
+              10.5439646,
+              60.7495876
+            ],
+            [
+              10.5439485,
+              60.7496164
+            ],
+            [
+              10.5439093,
+              60.7496359
+            ],
+            [
+              10.5438436,
+              60.7496325
+            ],
+            [
+              10.5437658,
+              60.7495875
+            ]
+          ]
+        ]
+      },
+      "id": "way/1212280699"
+    }
+  ]
+}
\ No newline at end of file
diff --git "a/server/map_handler/lake_relations/skumsj\303\270en_centers.txt" "b/server/map_handler/lake_relations/skumsj\303\270en_centers.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..5f6b73f14fb311ab3703b0d024d8f9c7a4d9f8f3
--- /dev/null
+++ "b/server/map_handler/lake_relations/skumsj\303\270en_centers.txt"
@@ -0,0 +1,8 @@
+0, 0.0217, 0.0112
+1, 0.017, 0.02
+2, 0.0008, 0.001
+3, 0.0005, 0.0003
+4, 0.0002, 0.0001
+5, 0.0004, 0.0002
+6, 0.0004, 0.0004
+7, 0.0003, 0.0002
diff --git "a/server/map_handler/lake_relations/skumsj\303\270en_div.json" "b/server/map_handler/lake_relations/skumsj\303\270en_div.json"
new file mode 100644
index 0000000000000000000000000000000000000000..5594f0a6850cfc5c65b11bc1e8584414401a979a
--- /dev/null
+++ "b/server/map_handler/lake_relations/skumsj\303\270en_div.json"
@@ -0,0 +1 @@
+{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"sub_div_id": "0", "sub_div_center": [0.0217, 0.0112]}, "geometry": {"type": "Polygon", "coordinates": [[[10.528, 60.7707], [10.5281, 60.7707], [10.5282, 60.7707], [10.5284, 60.7706], [10.5286, 60.7706], [10.5287, 60.7703], [10.5288, 60.7702], [10.529, 60.7701], [10.5291, 60.7699], [10.5292, 60.7698], [10.5293, 60.7698], [10.5293, 60.7696], [10.5293, 60.7695], [10.5294, 60.7694], [10.5295, 60.7694], [10.5295, 60.7694], [10.5296, 60.7694], [10.5297, 60.7693], [10.5299, 60.7692], [10.5299, 60.7692], [10.53, 60.7692], [10.5302, 60.7692], [10.5304, 60.7692], [10.5305, 60.7691], [10.5308, 60.769], [10.5312, 60.769], [10.5314, 60.7689], [10.5318, 60.7688], [10.5319, 60.7687], [10.5319, 60.7687], [10.5319, 60.7686], [10.532, 60.7686], [10.532, 60.7686], [10.532, 60.7685], [10.532, 60.7684], [10.5321, 60.7683], [10.5322, 60.7682], [10.5323, 60.768], [10.5326, 60.7677], [10.5329, 60.7676], [10.533, 60.7674], [10.5332, 60.7674], [10.5338, 60.7672], [10.5341, 60.7672], [10.5344, 60.7671], [10.5347, 60.7671], [10.5348, 60.7671], [10.535, 60.7671], [10.5353, 60.7672], [10.5355, 60.7672], [10.536, 60.7672], [10.5361, 60.7672], [10.5364, 60.7672], [10.5366, 60.7672], [10.5367, 60.7673], [10.5367, 60.7673], [10.5367, 60.7674], [10.5367, 60.7674], [10.5366, 60.7675], [10.5365, 60.7675], [10.5364, 60.7677], [10.5362, 60.7678], [10.5362, 60.7679], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.7681], [10.5363, 60.7683], [10.5364, 60.7684], [10.5364, 60.7686], [10.5365, 60.7687], [10.5366, 60.7688], [10.5367, 60.769], [10.5368, 60.769], [10.5369, 60.769], [10.537, 60.769], [10.5373, 60.769], [10.5375, 60.769], [10.5377, 60.769], [10.5381, 60.769], [10.5382, 60.7689], [10.5385, 60.7688], [10.5387, 60.7686], [10.5387, 60.7686], [10.5388, 60.7686], [10.5391, 60.7684], [10.5392, 60.7684], [10.5393, 60.7683], [10.5394, 60.7682], [10.5394, 60.7682], [10.5395, 60.7682], [10.5395, 60.7683], [10.5396, 60.7683], [10.5396, 60.7684], [10.5396, 60.7684], [10.5396, 60.7684], [10.5398, 60.7685], [10.54, 60.7685], [10.5402, 60.7684], [10.5403, 60.7684], [10.5404, 60.7683], [10.5405, 60.7683], [10.5407, 60.7681], [10.5408, 60.7681], [10.5409, 60.768], [10.5411, 60.768], [10.5414, 60.7679], [10.5414, 60.7679], [10.5415, 60.7677], [10.5417, 60.7676], [10.5418, 60.7675], [10.5418, 60.7675], [10.5419, 60.7674], [10.5421, 60.7674], [10.5422, 60.7674], [10.5423, 60.7674], [10.5424, 60.7673], [10.5424, 60.7672], [10.5424, 60.7672], [10.5425, 60.7672], [10.5426, 60.7671], [10.5428, 60.767], [10.5428, 60.767], [10.543, 60.7669], [10.5432, 60.7669], [10.5434, 60.7669], [10.5434, 60.7669], [10.5434, 60.7671], [10.5434, 60.7671], [10.5434, 60.7672], [10.5434, 60.7672], [10.5437, 60.7672], [10.5437, 60.7672], [10.5439, 60.7672], [10.544, 60.7672], [10.5441, 60.7672], [10.5442, 60.7671], [10.5443, 60.7671], [10.5443, 60.767], [10.5443, 60.7669], [10.5443, 60.7669], [10.5443, 60.7669], [10.5442, 60.7669], [10.5441, 60.7669], [10.5441, 60.7668], [10.5441, 60.7668], [10.5442, 60.7668], [10.5444, 60.7667], [10.5446, 60.7666], [10.5448, 60.7665], [10.5449, 60.7664], [10.5451, 60.7662], [10.5454, 60.766], [10.5456, 60.7659], [10.5456, 60.7659], [10.5456, 60.7659], [10.5455, 60.7658], [10.5454, 60.7657], [10.5454, 60.7656], [10.5454, 60.7655], [10.5453, 60.7654], [10.5452, 60.7653], [10.5451, 60.7652], [10.5451, 60.7652], [10.5452, 60.7652], [10.5452, 60.7652], [10.5453, 60.7652], [10.5454, 60.7652], [10.5455, 60.7653], [10.5457, 60.7654], [10.5458, 60.7655], [10.5459, 60.7655], [10.5463, 60.7655], [10.5463, 60.7655], [10.5464, 60.7656], [10.5464, 60.7656], [10.5464, 60.7656], [10.5465, 60.7657], [10.5467, 60.7657], [10.5469, 60.7658], [10.5471, 60.7658], [10.5473, 60.7658], [10.5473, 60.7658], [10.5475, 60.7657], [10.5476, 60.7656], [10.5477, 60.7656], [10.5478, 60.7655], [10.5481, 60.7655], [10.5483, 60.7655], [10.5487, 60.7655], [10.5488, 60.7654], [10.549, 60.7653], [10.5492, 60.7652], [10.5492, 60.7651], [10.5492, 60.7651], [10.5491, 60.765], [10.5491, 60.765], [10.5491, 60.7649], [10.5491, 60.7649], [10.5491, 60.7648], [10.5491, 60.7647], [10.5493, 60.7647], [10.5496, 60.7645], [10.5497, 60.7645], [10.5497, 60.7644], [10.5497, 60.7643], [10.5497, 60.7642], [10.5496, 60.7641], [10.5496, 60.764], [10.5492, 60.7637], [10.549, 60.7636], [10.5488, 60.7634], [10.5487, 60.7633], [10.5484, 60.7631], [10.5483, 60.7631], [10.5483, 60.763], [10.5482, 60.7628], [10.5482, 60.7627], [10.5481, 60.7627], [10.5478, 60.7624], [10.5477, 60.7624], [10.5477, 60.7623], [10.5477, 60.7622], [10.5478, 60.7622], [10.5479, 60.7621], [10.548, 60.7621], [10.548, 60.7621], [10.5481, 60.7621], [10.5482, 60.7621], [10.5483, 60.7622], [10.5484, 60.7622], [10.5485, 60.7621], [10.5486, 60.7621], [10.5487, 60.7621], [10.5488, 60.762], [10.549, 60.762], [10.5491, 60.7619], [10.5491, 60.7619], [10.5491, 60.7617], [10.5493, 60.7616], [10.5493, 60.7615], [10.5493, 60.7614], [10.5493, 60.7614], [10.5492, 60.7613], [10.5488, 60.761], [10.5486, 60.7609], [10.5482, 60.7607], [10.548, 60.7607], [10.5479, 60.7606], [10.5478, 60.7605], [10.5478, 60.7604], [10.5478, 60.7604], [10.5478, 60.7602], [10.5477, 60.7601], [10.5476, 60.7599], [10.5476, 60.7598], [10.5476, 60.7595], [10.5476, 60.7595], [10.5382, 60.7595], [10.5382, 60.7595], [10.5379, 60.7598], [10.5378, 60.76], [10.5379, 60.76], [10.538, 60.7601], [10.538, 60.7601], [10.5381, 60.7602], [10.5381, 60.7604], [10.5381, 60.7605], [10.538, 60.7605], [10.5379, 60.7606], [10.5378, 60.7607], [10.5377, 60.7609], [10.5377, 60.7611], [10.5377, 60.7612], [10.5376, 60.7613], [10.5375, 60.7614], [10.5374, 60.7615], [10.5373, 60.7616], [10.5372, 60.7617], [10.5371, 60.7619], [10.537, 60.7619], [10.537, 60.762], [10.5368, 60.762], [10.5367, 60.7621], [10.5367, 60.7621], [10.5366, 60.7622], [10.5366, 60.7623], [10.5364, 60.7623], [10.5363, 60.7624], [10.5362, 60.7625], [10.5361, 60.7626], [10.536, 60.7628], [10.536, 60.7628], [10.5359, 60.7628], [10.5359, 60.7628], [10.5358, 60.7628], [10.5356, 60.763], [10.5356, 60.763], [10.5355, 60.763], [10.5354, 60.7631], [10.5353, 60.7631], [10.5352, 60.7632], [10.5352, 60.7632], [10.5352, 60.7634], [10.5353, 60.7634], [10.5353, 60.7634], [10.5355, 60.7633], [10.5356, 60.7633], [10.5357, 60.7633], [10.5358, 60.7634], [10.5358, 60.7634], [10.5359, 60.7634], [10.5361, 60.7634], [10.5363, 60.7634], [10.5366, 60.7635], [10.5366, 60.7636], [10.5366, 60.7637], [10.5367, 60.7637], [10.5369, 60.7638], [10.5369, 60.7639], [10.537, 60.764], [10.537, 60.7641], [10.537, 60.7641], [10.5371, 60.7641], [10.5373, 60.764], [10.5374, 60.7639], [10.5375, 60.7638], [10.5376, 60.7638], [10.5376, 60.7639], [10.5377, 60.7639], [10.5377, 60.764], [10.5377, 60.7643], [10.5377, 60.7644], [10.5375, 60.7646], [10.5373, 60.7647], [10.5372, 60.7649], [10.5371, 60.7649], [10.537, 60.765], [10.5369, 60.7651], [10.5368, 60.7651], [10.5367, 60.7651], [10.5367, 60.7651], [10.5366, 60.765], [10.5365, 60.765], [10.5366, 60.7649], [10.5366, 60.7648], [10.5368, 60.7646], [10.5368, 60.7646], [10.5368, 60.7645], [10.5368, 60.7645], [10.5367, 60.7645], [10.5366, 60.7645], [10.5365, 60.7646], [10.5365, 60.7646], [10.5363, 60.7649], [10.5362, 60.765], [10.536, 60.7651], [10.536, 60.7651], [10.536, 60.7653], [10.536, 60.7653], [10.5359, 60.7653], [10.5359, 60.7653], [10.5357, 60.7653], [10.5355, 60.7653], [10.5353, 60.7653], [10.5352, 60.7653], [10.5349, 60.7653], [10.5349, 60.7653], [10.5348, 60.7654], [10.5347, 60.7654], [10.5346, 60.7654], [10.5345, 60.7654], [10.5344, 60.7654], [10.5342, 60.7653], [10.5341, 60.7653], [10.534, 60.7653], [10.5338, 60.7653], [10.5337, 60.7653], [10.5335, 60.7653], [10.5333, 60.7654], [10.5331, 60.7655], [10.533, 60.7655], [10.5329, 60.7656], [10.5328, 60.7657], [10.5326, 60.7659], [10.5323, 60.766], [10.5323, 60.7661], [10.5322, 60.7662], [10.5321, 60.7663], [10.5318, 60.7664], [10.5317, 60.7665], [10.5317, 60.7665], [10.5317, 60.7668], [10.5316, 60.7669], [10.5316, 60.767], [10.5316, 60.7672], [10.5314, 60.7673], [10.5314, 60.7673], [10.5314, 60.7675], [10.5313, 60.7676], [10.5311, 60.7679], [10.5307, 60.7681], [10.5306, 60.7682], [10.5305, 60.7683], [10.5304, 60.7684], [10.5304, 60.7684], [10.5304, 60.7687], [10.5304, 60.7688], [10.5303, 60.7688], [10.5302, 60.7688], [10.5301, 60.7687], [10.53, 60.7687], [10.53, 60.7687], [10.5298, 60.7688], [10.5296, 60.7689], [10.5295, 60.7689], [10.5293, 60.769], [10.5293, 60.769], [10.5291, 60.7691], [10.5289, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5281, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5289, 60.7692], [10.529, 60.7692], [10.5291, 60.7692], [10.5292, 60.7692], [10.5292, 60.7692], [10.529, 60.7693], [10.5289, 60.7694], [10.5288, 60.7694], [10.5287, 60.7694], [10.5287, 60.7696], [10.5287, 60.7696], [10.5287, 60.7697], [10.5285, 60.7697], [10.5285, 60.7697], [10.5282, 60.7698], [10.5281, 60.7698], [10.528, 60.7698], [10.5281, 60.7699], [10.5282, 60.7699], [10.5282, 60.77], [10.5281, 60.7701], [10.5281, 60.7703], [10.5282, 60.7704], [10.5282, 60.7704], [10.5282, 60.7705], [10.5282, 60.7705], [10.528, 60.7706], [10.528, 60.7707], [10.528, 60.7707]]]}}, {"type": "Feature", "properties": {"sub_div_id": "1", "sub_div_center": [0.017, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5475, 60.7593], [10.5475, 60.759], [10.5474, 60.7589], [10.5474, 60.7587], [10.5473, 60.7586], [10.5473, 60.7585], [10.5472, 60.7585], [10.547, 60.7583], [10.5468, 60.7581], [10.5468, 60.7581], [10.5465, 60.7579], [10.5465, 60.7579], [10.5464, 60.7576], [10.5464, 60.7575], [10.5462, 60.7574], [10.5461, 60.7573], [10.5459, 60.7571], [10.5456, 60.7568], [10.5453, 60.7566], [10.5452, 60.7565], [10.5451, 60.7565], [10.5451, 60.7563], [10.5451, 60.7563], [10.545, 60.7562], [10.5449, 60.7561], [10.5447, 60.7559], [10.5447, 60.7558], [10.5446, 60.7556], [10.5446, 60.7554], [10.5445, 60.7551], [10.5444, 60.755], [10.5443, 60.7549], [10.5443, 60.7548], [10.5443, 60.7547], [10.5442, 60.7546], [10.5442, 60.7544], [10.5441, 60.7543], [10.5441, 60.7539], [10.5441, 60.7538], [10.544, 60.7537], [10.544, 60.7534], [10.5439, 60.7531], [10.5439, 60.7531], [10.5439, 60.753], [10.5439, 60.7528], [10.5439, 60.7528], [10.544, 60.7527], [10.5441, 60.7526], [10.5443, 60.7525], [10.5443, 60.7524], [10.5449, 60.7522], [10.5453, 60.752], [10.5456, 60.7518], [10.5458, 60.7517], [10.546, 60.7516], [10.5461, 60.7516], [10.5462, 60.7515], [10.5462, 60.7514], [10.5462, 60.7514], [10.5462, 60.7513], [10.5462, 60.7513], [10.546, 60.7512], [10.5459, 60.7512], [10.5459, 60.7511], [10.5459, 60.751], [10.5459, 60.751], [10.546, 60.7509], [10.5459, 60.7509], [10.5459, 60.7509], [10.5457, 60.7509], [10.5455, 60.7509], [10.5453, 60.751], [10.5451, 60.751], [10.545, 60.751], [10.5449, 60.751], [10.5447, 60.7511], [10.5446, 60.7511], [10.5444, 60.7511], [10.5444, 60.7511], [10.5443, 60.7511], [10.5443, 60.751], [10.5444, 60.7509], [10.5445, 60.7508], [10.5445, 60.7507], [10.5445, 60.7507], [10.5444, 60.7506], [10.5444, 60.7506], [10.5445, 60.7505], [10.5446, 60.7505], [10.5446, 60.7504], [10.5447, 60.7502], [10.5448, 60.7501], [10.5449, 60.7501], [10.5449, 60.75], [10.5448, 60.75], [10.5446, 60.7499], [10.5446, 60.7499], [10.5445, 60.7498], [10.5446, 60.7497], [10.5446, 60.7497], [10.5445, 60.7496], [10.5444, 60.7496], [10.5444, 60.7496], [10.5443, 60.7496], [10.5442, 60.7495], [10.5441, 60.7495], [10.5441, 60.7495], [10.5441, 60.7494], [10.5441, 60.7494], [10.5441, 60.7492], [10.5442, 60.7491], [10.5442, 60.749], [10.5442, 60.7489], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7487], [10.5443, 60.7487], [10.5446, 60.7486], [10.5446, 60.7486], [10.5446, 60.7485], [10.5447, 60.7485], [10.5447, 60.7485], [10.5448, 60.7485], [10.545, 60.7484], [10.5451, 60.7484], [10.5452, 60.7484], [10.5453, 60.7484], [10.5454, 60.7484], [10.5455, 60.7483], [10.5456, 60.7483], [10.5457, 60.7482], [10.5457, 60.7481], [10.5457, 60.7481], [10.5459, 60.748], [10.546, 60.7479], [10.5464, 60.7479], [10.5465, 60.7479], [10.5466, 60.7479], [10.5467, 60.7478], [10.5468, 60.7478], [10.5468, 60.7478], [10.5469, 60.7478], [10.547, 60.7477], [10.547, 60.7477], [10.5471, 60.7477], [10.5472, 60.7477], [10.5473, 60.7476], [10.5477, 60.7475], [10.5477, 60.7474], [10.5478, 60.7473], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7471], [10.5476, 60.7471], [10.5475, 60.7471], [10.5472, 60.747], [10.5469, 60.747], [10.5467, 60.747], [10.5465, 60.7471], [10.5465, 60.7472], [10.5464, 60.7472], [10.5463, 60.7472], [10.5462, 60.7472], [10.5462, 60.7472], [10.5461, 60.7472], [10.546, 60.7472], [10.5459, 60.7472], [10.5459, 60.7471], [10.5459, 60.7471], [10.5461, 60.7471], [10.5462, 60.7471], [10.5463, 60.7471], [10.5463, 60.747], [10.5462, 60.747], [10.5462, 60.747], [10.5462, 60.7469], [10.5461, 60.7469], [10.546, 60.7469], [10.5459, 60.7469], [10.5458, 60.7468], [10.5458, 60.7468], [10.5458, 60.7468], [10.5457, 60.7467], [10.5457, 60.7466], [10.5457, 60.7466], [10.5457, 60.7464], [10.5456, 60.7464], [10.5455, 60.7463], [10.5454, 60.7462], [10.5453, 60.7462], [10.5452, 60.7461], [10.5452, 60.7461], [10.5453, 60.7461], [10.5453, 60.746], [10.5452, 60.746], [10.5452, 60.7457], [10.5452, 60.7457], [10.5451, 60.7457], [10.5449, 60.7456], [10.5445, 60.7455], [10.5441, 60.7453], [10.544, 60.7452], [10.5439, 60.7451], [10.5439, 60.745], [10.5439, 60.7448], [10.5438, 60.7448], [10.5436, 60.7448], [10.5435, 60.7448], [10.5433, 60.7447], [10.5432, 60.7446], [10.5432, 60.7445], [10.5432, 60.7444], [10.5433, 60.7444], [10.5433, 60.7443], [10.5434, 60.7442], [10.5434, 60.7442], [10.5435, 60.7442], [10.5435, 60.7441], [10.5435, 60.7441], [10.5435, 60.744], [10.5436, 60.744], [10.5436, 60.744], [10.5437, 60.7439], [10.5437, 60.7439], [10.5436, 60.7439], [10.5436, 60.7438], [10.5436, 60.7438], [10.5436, 60.7438], [10.5437, 60.7437], [10.5436, 60.7436], [10.5434, 60.7435], [10.5433, 60.7433], [10.5432, 60.7433], [10.5433, 60.7432], [10.5434, 60.7432], [10.5434, 60.7431], [10.5434, 60.743], [10.5433, 60.743], [10.543, 60.7431], [10.543, 60.7431], [10.543, 60.7431], [10.5429, 60.7432], [10.5429, 60.7432], [10.5428, 60.7432], [10.5428, 60.7432], [10.5427, 60.7432], [10.5427, 60.7431], [10.5426, 60.7431], [10.5422, 60.743], [10.542, 60.7429], [10.5418, 60.7428], [10.5415, 60.7427], [10.5416, 60.7427], [10.5416, 60.7426], [10.5416, 60.7426], [10.5413, 60.7424], [10.5412, 60.7423], [10.5411, 60.7422], [10.541, 60.7422], [10.541, 60.7422], [10.5409, 60.7421], [10.5409, 60.7421], [10.5408, 60.7421], [10.5408, 60.742], [10.5407, 60.7419], [10.5406, 60.7419], [10.5404, 60.7419], [10.5402, 60.7419], [10.5402, 60.7419], [10.5401, 60.7419], [10.5401, 60.742], [10.54, 60.742], [10.54, 60.742], [10.5398, 60.742], [10.5398, 60.742], [10.5397, 60.742], [10.5397, 60.7421], [10.5395, 60.7422], [10.5394, 60.7422], [10.5393, 60.7423], [10.5393, 60.7424], [10.5393, 60.7424], [10.5394, 60.7424], [10.5394, 60.7424], [10.5395, 60.7424], [10.5393, 60.7425], [10.5393, 60.7425], [10.5391, 60.7425], [10.539, 60.7426], [10.539, 60.7426], [10.539, 60.7426], [10.5389, 60.7427], [10.5389, 60.7427], [10.5388, 60.7427], [10.5388, 60.7426], [10.5388, 60.7426], [10.5387, 60.7426], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7428], [10.5387, 60.7428], [10.5388, 60.7428], [10.5389, 60.7429], [10.5389, 60.7429], [10.5389, 60.7429], [10.5388, 60.7429], [10.5387, 60.743], [10.5386, 60.743], [10.5385, 60.743], [10.5384, 60.743], [10.5381, 60.743], [10.538, 60.743], [10.5379, 60.743], [10.5378, 60.7429], [10.5378, 60.7429], [10.5378, 60.7429], [10.5377, 60.7429], [10.5377, 60.7428], [10.5377, 60.7428], [10.5376, 60.7427], [10.5376, 60.7427], [10.5377, 60.7426], [10.5378, 60.7426], [10.5378, 60.7426], [10.5379, 60.7426], [10.5379, 60.7425], [10.538, 60.7425], [10.538, 60.7425], [10.538, 60.7424], [10.538, 60.7424], [10.5379, 60.7424], [10.5376, 60.7424], [10.5375, 60.7424], [10.5375, 60.7423], [10.5375, 60.7423], [10.5376, 60.7423], [10.5377, 60.7423], [10.5377, 60.7422], [10.5377, 60.742], [10.5377, 60.742], [10.5377, 60.7418], [10.5379, 60.7418], [10.5381, 60.7417], [10.5382, 60.7417], [10.5383, 60.7416], [10.5385, 60.7416], [10.5386, 60.7416], [10.5387, 60.7416], [10.5388, 60.7416], [10.539, 60.7417], [10.5392, 60.7416], [10.5392, 60.7416], [10.5392, 60.7416], [10.539, 60.7415], [10.539, 60.7415], [10.5389, 60.7414], [10.5387, 60.7414], [10.5385, 60.7413], [10.5383, 60.7413], [10.5382, 60.7413], [10.5381, 60.7412], [10.5378, 60.7411], [10.5377, 60.7411], [10.5376, 60.741], [10.5376, 60.741], [10.5376, 60.7409], [10.5376, 60.7409], [10.5377, 60.7409], [10.5376, 60.7409], [10.5376, 60.7409], [10.5376, 60.7407], [10.5376, 60.7407], [10.5376, 60.7406], [10.5374, 60.7404], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5372, 60.7402], [10.5372, 60.7402], [10.5373, 60.7402], [10.5375, 60.7401], [10.5376, 60.74], [10.5376, 60.74], [10.5374, 60.7399], [10.5374, 60.7399], [10.5374, 60.7398], [10.5374, 60.7397], [10.5373, 60.7397], [10.5373, 60.7396], [10.5371, 60.7396], [10.5369, 60.7395], [10.5368, 60.7395], [10.5367, 60.7395], [10.5366, 60.7395], [10.5365, 60.7395], [10.5364, 60.7395], [10.5363, 60.7396], [10.5362, 60.7397], [10.5361, 60.7398], [10.5359, 60.7399], [10.5359, 60.7399], [10.5357, 60.74], [10.5355, 60.7401], [10.5353, 60.7401], [10.5352, 60.7401], [10.535, 60.7402], [10.5348, 60.7403], [10.5347, 60.7404], [10.5345, 60.7404], [10.5345, 60.7405], [10.5345, 60.7405], [10.5343, 60.7405], [10.5342, 60.7406], [10.5341, 60.7406], [10.534, 60.7405], [10.5339, 60.7405], [10.5338, 60.7405], [10.5337, 60.7405], [10.5334, 60.7406], [10.5332, 60.7407], [10.5331, 60.7407], [10.533, 60.7407], [10.5328, 60.7407], [10.5327, 60.7408], [10.5326, 60.7408], [10.5324, 60.7408], [10.5323, 60.7408], [10.5321, 60.7408], [10.532, 60.7408], [10.5319, 60.7407], [10.5317, 60.7407], [10.5315, 60.7407], [10.5313, 60.7407], [10.5311, 60.7408], [10.5311, 60.7408], [10.531, 60.7408], [10.5308, 60.7408], [10.5307, 60.7409], [10.5307, 60.741], [10.5308, 60.7411], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7414], [10.531, 60.7414], [10.5311, 60.7415], [10.5311, 60.7415], [10.5312, 60.7416], [10.5311, 60.7416], [10.5311, 60.7417], [10.5313, 60.7418], [10.5314, 60.7418], [10.5315, 60.7419], [10.5315, 60.742], [10.5316, 60.7421], [10.5317, 60.7421], [10.5317, 60.7422], [10.532, 60.7422], [10.5322, 60.7423], [10.5322, 60.7423], [10.5323, 60.7423], [10.5324, 60.7423], [10.5325, 60.7424], [10.5326, 60.7425], [10.5328, 60.7426], [10.5329, 60.7426], [10.5329, 60.7427], [10.5328, 60.7428], [10.5328, 60.7429], [10.5328, 60.743], [10.5328, 60.7431], [10.533, 60.7431], [10.533, 60.7432], [10.5328, 60.7432], [10.5328, 60.7432], [10.533, 60.7433], [10.533, 60.7433], [10.5332, 60.7434], [10.5333, 60.7434], [10.5333, 60.7433], [10.5333, 60.7434], [10.5334, 60.7434], [10.5333, 60.7434], [10.5333, 60.7435], [10.5334, 60.7435], [10.5335, 60.7436], [10.5335, 60.7436], [10.5335, 60.7438], [10.5336, 60.7439], [10.5336, 60.744], [10.5337, 60.744], [10.5337, 60.7441], [10.5337, 60.7441], [10.5337, 60.7442], [10.5337, 60.7443], [10.5337, 60.7443], [10.5338, 60.7443], [10.5338, 60.7444], [10.5338, 60.7444], [10.5339, 60.7445], [10.5339, 60.7446], [10.5339, 60.7446], [10.5338, 60.7446], [10.5338, 60.7447], [10.5338, 60.745], [10.5338, 60.7451], [10.5339, 60.7453], [10.534, 60.7454], [10.534, 60.7456], [10.5341, 60.7456], [10.5341, 60.7457], [10.5341, 60.7458], [10.5341, 60.7459], [10.5341, 60.7459], [10.5342, 60.746], [10.5342, 60.746], [10.5342, 60.7461], [10.5343, 60.7461], [10.5343, 60.7462], [10.5344, 60.7462], [10.5344, 60.7462], [10.5344, 60.7464], [10.5344, 60.7464], [10.5345, 60.7465], [10.5346, 60.7466], [10.5346, 60.7466], [10.5346, 60.7468], [10.5346, 60.7469], [10.5346, 60.7472], [10.5345, 60.7472], [10.5345, 60.7474], [10.5346, 60.7475], [10.5346, 60.7475], [10.5347, 60.7476], [10.5347, 60.7476], [10.5349, 60.7476], [10.535, 60.7477], [10.535, 60.7478], [10.5351, 60.7478], [10.535, 60.7479], [10.5351, 60.748], [10.5351, 60.748], [10.535, 60.7481], [10.535, 60.7481], [10.5349, 60.7482], [10.5349, 60.7483], [10.5349, 60.7483], [10.5348, 60.7484], [10.5348, 60.7484], [10.5346, 60.7486], [10.5345, 60.7486], [10.5343, 60.7487], [10.5343, 60.7487], [10.5343, 60.7487], [10.5342, 60.7488], [10.5341, 60.7488], [10.534, 60.7488], [10.5337, 60.7487], [10.5336, 60.7487], [10.5335, 60.7487], [10.5334, 60.7487], [10.5332, 60.7487], [10.533, 60.7487], [10.533, 60.7487], [10.5327, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5327, 60.7489], [10.5327, 60.749], [10.5327, 60.749], [10.5325, 60.749], [10.5325, 60.749], [10.5325, 60.7491], [10.5326, 60.7491], [10.5327, 60.7491], [10.5328, 60.7491], [10.5328, 60.7491], [10.5329, 60.7492], [10.5333, 60.7493], [10.5333, 60.7493], [10.5332, 60.7494], [10.5332, 60.7494], [10.5336, 60.7495], [10.5338, 60.7495], [10.5338, 60.7496], [10.5339, 60.7496], [10.5339, 60.7496], [10.5341, 60.7497], [10.5343, 60.7497], [10.5344, 60.7497], [10.5344, 60.7498], [10.5344, 60.7499], [10.5344, 60.7499], [10.5345, 60.75], [10.5346, 60.75], [10.5347, 60.75], [10.5349, 60.7502], [10.535, 60.7503], [10.5352, 60.7503], [10.5352, 60.7503], [10.5353, 60.7503], [10.5353, 60.7504], [10.5354, 60.7505], [10.5355, 60.7505], [10.5355, 60.7507], [10.5356, 60.7508], [10.5356, 60.7509], [10.5357, 60.751], [10.5358, 60.751], [10.5359, 60.7511], [10.5359, 60.7513], [10.5358, 60.7513], [10.5358, 60.7514], [10.5356, 60.7514], [10.5356, 60.7514], [10.5355, 60.7516], [10.5355, 60.7516], [10.5354, 60.7516], [10.5353, 60.7517], [10.5349, 60.7517], [10.5348, 60.7516], [10.5345, 60.7516], [10.5344, 60.7515], [10.5343, 60.7515], [10.5342, 60.7516], [10.5337, 60.7516], [10.5336, 60.7516], [10.5334, 60.7515], [10.5333, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5331, 60.7515], [10.5329, 60.7516], [10.5328, 60.7516], [10.5328, 60.7517], [10.5326, 60.7518], [10.5325, 60.7519], [10.5325, 60.7519], [10.5326, 60.7521], [10.5326, 60.7522], [10.5326, 60.7523], [10.5326, 60.7523], [10.5325, 60.7523], [10.5325, 60.7524], [10.5325, 60.7524], [10.5326, 60.7526], [10.5326, 60.7526], [10.5327, 60.7526], [10.5328, 60.7527], [10.5328, 60.7528], [10.5329, 60.7528], [10.5328, 60.7528], [10.5328, 60.7529], [10.5329, 60.7529], [10.533, 60.753], [10.5331, 60.7531], [10.5333, 60.7531], [10.5335, 60.7531], [10.5336, 60.7531], [10.5339, 60.7531], [10.534, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5339, 60.7532], [10.5338, 60.7533], [10.5335, 60.7534], [10.5335, 60.7535], [10.5334, 60.7535], [10.5333, 60.7536], [10.5333, 60.7539], [10.5333, 60.754], [10.5333, 60.754], [10.5332, 60.7541], [10.5331, 60.7541], [10.5329, 60.7542], [10.5328, 60.7542], [10.5327, 60.7543], [10.5327, 60.7544], [10.5326, 60.7545], [10.5326, 60.7547], [10.5324, 60.7548], [10.5324, 60.7548], [10.5324, 60.7549], [10.5323, 60.755], [10.5323, 60.755], [10.5323, 60.755], [10.5324, 60.7551], [10.5325, 60.7551], [10.5326, 60.7551], [10.5327, 60.7551], [10.5329, 60.7551], [10.5332, 60.755], [10.5333, 60.755], [10.5333, 60.755], [10.5334, 60.755], [10.5334, 60.755], [10.5334, 60.7552], [10.5335, 60.7554], [10.5335, 60.7555], [10.5335, 60.7558], [10.5335, 60.7559], [10.5334, 60.7559], [10.5334, 60.756], [10.5335, 60.7561], [10.5336, 60.7561], [10.5336, 60.7562], [10.5335, 60.7562], [10.5334, 60.7562], [10.5333, 60.7563], [10.5332, 60.7564], [10.5332, 60.7564], [10.5332, 60.7565], [10.5332, 60.7566], [10.5332, 60.7567], [10.5331, 60.7567], [10.5331, 60.7568], [10.5331, 60.7568], [10.5332, 60.7569], [10.5332, 60.757], [10.5331, 60.7571], [10.5331, 60.7573], [10.533, 60.7574], [10.533, 60.7575], [10.5329, 60.7575], [10.5329, 60.7575], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7577], [10.5327, 60.7578], [10.5328, 60.7579], [10.5327, 60.7579], [10.5327, 60.758], [10.5326, 60.758], [10.5326, 60.7582], [10.5325, 60.7583], [10.5323, 60.7584], [10.5321, 60.7586], [10.5319, 60.7586], [10.5318, 60.7588], [10.5316, 60.759], [10.5316, 60.7591], [10.5315, 60.7592], [10.5315, 60.7592], [10.5315, 60.7593], [10.5315, 60.7593], [10.5315, 60.7594], [10.5317, 60.7594], [10.5317, 60.7594], [10.5318, 60.7594], [10.532, 60.7593], [10.5323, 60.7592], [10.5327, 60.7589], [10.5329, 60.7588], [10.5329, 60.7587], [10.5329, 60.7586], [10.533, 60.7585], [10.533, 60.7585], [10.5332, 60.7584], [10.5334, 60.7584], [10.5335, 60.7583], [10.5336, 60.7582], [10.5338, 60.7582], [10.5339, 60.7582], [10.534, 60.7581], [10.5341, 60.758], [10.5342, 60.758], [10.5343, 60.7579], [10.5345, 60.7579], [10.5346, 60.7578], [10.5348, 60.7577], [10.535, 60.7576], [10.5351, 60.7576], [10.5351, 60.7575], [10.5352, 60.7575], [10.5353, 60.7576], [10.5357, 60.7576], [10.5357, 60.7576], [10.5357, 60.7577], [10.5358, 60.7577], [10.5359, 60.7578], [10.5359, 60.7578], [10.5359, 60.758], [10.536, 60.7581], [10.5361, 60.7581], [10.5361, 60.7581], [10.5362, 60.758], [10.5363, 60.758], [10.5363, 60.7581], [10.5363, 60.7582], [10.5364, 60.7582], [10.5364, 60.7582], [10.5365, 60.7583], [10.5366, 60.7582], [10.5367, 60.7582], [10.5368, 60.7581], [10.537, 60.758], [10.5371, 60.7579], [10.5372, 60.7579], [10.5373, 60.7578], [10.5372, 60.7577], [10.5372, 60.7577], [10.5372, 60.7576], [10.5373, 60.7576], [10.5374, 60.7575], [10.5375, 60.7575], [10.5376, 60.7575], [10.5377, 60.7576], [10.5378, 60.7576], [10.5378, 60.7576], [10.5379, 60.7575], [10.5379, 60.7574], [10.5379, 60.7574], [10.538, 60.7574], [10.538, 60.7575], [10.538, 60.7576], [10.5379, 60.7577], [10.5379, 60.7578], [10.538, 60.7579], [10.538, 60.7579], [10.5379, 60.758], [10.5379, 60.7581], [10.5378, 60.7582], [10.5378, 60.7583], [10.538, 60.7584], [10.538, 60.7585], [10.538, 60.7586], [10.538, 60.7586], [10.5383, 60.7586], [10.5384, 60.7587], [10.5384, 60.7587], [10.5383, 60.7587], [10.5382, 60.7587], [10.5381, 60.7588], [10.5381, 60.7588], [10.5382, 60.7589], [10.5382, 60.759], [10.5384, 60.7591], [10.5384, 60.7592], [10.5384, 60.7592], [10.5382, 60.7593], [10.5382, 60.7595], [10.5476, 60.7595], [10.5475, 60.7593]]]}}, {"type": "Feature", "properties": {"sub_div_id": "2", "sub_div_center": [0.0008, 0.001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5364, 60.7432], [10.5365, 60.7433], [10.5366, 60.7433], [10.5367, 60.7433], [10.5368, 60.7433], [10.5368, 60.7432], [10.5369, 60.7432], [10.537, 60.7431], [10.537, 60.7431], [10.537, 60.743], [10.5371, 60.7429], [10.5371, 60.7429], [10.5371, 60.7428], [10.5371, 60.7425], [10.5372, 60.7424], [10.5372, 60.7424], [10.5371, 60.7423], [10.537, 60.7423], [10.5369, 60.7423], [10.5368, 60.7423], [10.5367, 60.7423], [10.5366, 60.7423], [10.5365, 60.7425], [10.5364, 60.7426], [10.5364, 60.7429], [10.5364, 60.743], [10.5364, 60.7431], [10.5364, 60.7431], [10.5364, 60.7432], [10.5364, 60.7432]]]}}, {"type": "Feature", "properties": {"sub_div_id": "3", "sub_div_center": [0.0005, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5449, 60.7483], [10.545, 60.7484], [10.5452, 60.7484], [10.5452, 60.7484], [10.5453, 60.7483], [10.5454, 60.7482], [10.5454, 60.7482], [10.5452, 60.7481], [10.5452, 60.7481], [10.545, 60.7482], [10.5449, 60.7482], [10.5449, 60.7482], [10.5449, 60.7483]]]}}, {"type": "Feature", "properties": {"sub_div_id": "4", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5431, 60.7509], [10.5431, 60.7509], [10.5432, 60.7509], [10.5432, 60.7508], [10.5433, 60.7508], [10.5433, 60.7507], [10.5432, 60.7507], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "5", "sub_div_center": [0.0004, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5422, 60.7509], [10.5423, 60.7509], [10.5424, 60.7508], [10.5425, 60.7508], [10.5426, 60.7508], [10.5426, 60.7508], [10.5425, 60.7507], [10.5424, 60.7507], [10.5423, 60.7508], [10.5422, 60.7508], [10.5422, 60.7509], [10.5422, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "6", "sub_div_center": [0.0004, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5432, 60.7516], [10.5433, 60.7515], [10.5433, 60.7515], [10.5434, 60.7514], [10.5436, 60.7513], [10.5436, 60.7513], [10.5436, 60.7512], [10.5436, 60.7512], [10.5435, 60.7512], [10.5435, 60.7512], [10.5434, 60.7513], [10.5433, 60.7513], [10.5432, 60.7515], [10.5432, 60.7516]]]}}, {"type": "Feature", "properties": {"sub_div_id": "7", "sub_div_center": [0.0003, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5438, 60.7495], [10.5438, 60.7496], [10.5438, 60.7496], [10.5439, 60.7496], [10.5439, 60.7496], [10.544, 60.7496], [10.544, 60.7495], [10.5439, 60.7495], [10.5439, 60.7495], [10.5438, 60.7494], [10.5438, 60.7494], [10.5437, 60.7494], [10.5437, 60.7495], [10.5438, 60.7495]]]}}], "tile_count": 8}
\ No newline at end of file