{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Voronoi diagrams\n", "---\n", "## Introduction\n", "Very early attempts at combining Voronoi diagrams, data analysis and interactive visualization. The(still imprecise) goal is using Voronoi cells to cluster GeoDataframes and display informations about the resulting clusters. Ultimately, the method should be applicable with any set of polygons partitionning any type of GeoDataframe, even if the Dataframe contains complex shapes." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": { "hidden": true }, "report_default": {} } } } }, "outputs": [], "source": [ "import pandas as pd\n", "import qgrid as qg\n", "import ipyleaflet as ipyl\n", "import ipywidgets as ipyw" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": { "hidden": true }, "report_default": {} } } }, "scrolled": false }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "69b5b543ffd247dc87ba68b63224724c" } }, "metadata": {}, "output_type": "display_data" } ], "source": [ "qg.set_defaults(show_toolbar=None, remote_js=True, precision=None, grid_options=None, export_mode=None)\n", "df = pd.read_csv('../data/geo_centroids.csv')\n", "cdf = df[['LAT','LONG']]\n", "qg.show_grid(cdf)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": { "col": 0, "height": 16, "hidden": false, "row": 16, "width": null }, "report_default": {} } } } }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3b6d2081944d41d2a2b86e6432c1bfd4" } }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Map and label widgets\n", "\n", "m= ipyl.Map(scroll_wheel_zoom=True, layout=ipyw.Layout(width='100%', height='500px'), center=[-0.3515602939922709, 22.5], zoom=2)\n", "label = ipyw.Label(layout=ipyw.Layout(width='100%'))\n", "\n", "display = ipyw.Button(\n", " description='Voronoi cells',\n", " disabled=False,\n", " button_style='', # 'success', 'info', 'warning', 'danger' or ''\n", " tooltip='Display proximity cells',\n", " icon='check',\n", " layout=ipyw.Layout(width='50%')\n", ")\n", "\n", "clean = ipyw.Button(\n", " description='Clean map',\n", " disabled=False,\n", " button_style='', # 'success', 'info', 'warning', 'danger' or ''\n", " tooltip='Remove proximity cells',\n", " icon='check',\n", " layout=ipyw.Layout(width='50%')\n", ")\n", "\n", "ipyw.VBox([m, ipyw.HBox([display, clean])])" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": true, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": { "hidden": true }, "report_default": {} } } } }, "outputs": [], "source": [ "def base_geojson():\n", " return {\"type\": \"Feature\",'properties': {'style': {'clickable': True,\n", " 'color': '#f06eaa',\n", " 'dashArray': None,\n", " 'fill': True,\n", " 'fillColor': None,\n", " 'fillOpacity': 0.2,\n", " 'lineCap': None,\n", " 'lineJoin': None,\n", " 'noClip': True,\n", " 'opacity': 0.5,\n", " 'smoothFactor': 1,\n", " 'stroke': True,\n", " 'weight': 2}}}\n", "\n", "from voronoi import *\n", "list_polygons = list_voronoi_cells(cdf.values)\n", "\n", "vor_poly = [{**base_geojson(), 'geometry':{'coordinates': geo.mapping(poly)[\"coordinates\"], 'type': 'Polygon'}} for poly in list_polygons]\n", "\n", "cell_layers = [ipyl.GeoJSON(data=geo_poly, hover_style={'fillColor': 'black', 'fillOpacity': .5}) for geo_poly in vor_poly]\n", "\n", "seed_layers = [ipyl.Marker(location=pos) for pos in cdf.values.tolist()]\n", "\n", "def vorono_lay(b):\n", " for seed_layer in seed_layers:\n", " m.add_layer(seed_layer)\n", " for cell_layer in cell_layers:\n", " m.add_layer(cell_layer) \n", " \n", "def vorono_rem(b):\n", " while len(m.layers) > 1:\n", " m.remove_layer(m.layers[-1])\n", "\n", "display.on_click(vorono_lay)\n", "\n", "clean.on_click(vorono_rem)" ] } ], "metadata": { "extensions": { "jupyter_dashboards": { "activeView": "grid_default", "version": 1, "views": { "grid_default": { "cellMargin": 10, "defaultCellHeight": 20, "maxColumns": 12, "name": "grid", "type": "grid" }, "report_default": { "name": "report", "type": "report" } } } }, "kernelspec": { "display_name": "Python3.5", "language": "python", "name": "python3.5" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.2" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "002232d21de0457dbf41ef0fb8d711aa": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.223684210526315, -25.69407894736842 ], [ 33.826857172836064, -59.90835727776229 ], [ 10.521068792382458, -38.35129760856974 ], [ 20.5, -27.125 ], [ 26.223684210526315, -25.69407894736842 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "011f0db5d82c4833a419d5603d6ca891": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10, -84 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "018e93a49ae34e4290e87d68f7df08bc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.583333, 21 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "01e34860bb804552b40f76dd373f1af9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8.5, -11.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0254db4163f1405b8fe51f8c49c5c64f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, 146 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "02916fa9cac54d6c8c8da7de98891219": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 59, 26 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0292c2464cc544f9a3cb8550412d24c3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40.5, 47.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "02f1f889d8634b6f997c90e5938bfaf8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -54.433333, 3.4 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0331d25335554a19beaa4c535b2804b1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, -2 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "035f69db6bcf4ea6812c790f78d4593e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -7.821428571428571, 8.964285714285715 ], [ -3.6666666666666665, -3.5000000000000018 ], [ -3.8642210857592456, -4.092663257277733 ], [ -25.80676943699732, -7.8067694369973175 ], [ -9.1875, 8.8125 ], [ -7.821428571428571, 8.964285714285715 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "039caaaa155d4ee58245fe1def77acea": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 134.15286847600308, -80.17871349622823 ], [ 149.19034575842386, -45.680971495380525 ], [ 181.0092522949306, -30.834875382488434 ], [ 276.328125, -46.72135416666667 ], [ 276.328125, -80.17871349622823 ], [ 134.15286847600308, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "03fb6e0078a040499efa8a44d8887731": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 7.153846153846153, 5.538461538461538 ], [ 7.666666666666667, 5.666666666666667 ], [ 13.76923076923077, 2.6153846153846154 ], [ 13.375, 1.9583333333333333 ], [ 9.165697674418604, -0.4970930232558137 ], [ 7.153846153846153, 5.538461538461538 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0419887e37a24ee8bc93acca77089eba": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 23, -102 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "041b2f51618544ab90ff0c5ceb0f0288": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -27.5, -4 ], [ -12.625, 10.875 ], [ -9.1875, 8.8125 ], [ -25.80676943699732, -7.8067694369973175 ], [ -29.84176950998185, -8.76394736842105 ], [ -30.056053811659194, -8.260089686098656 ], [ -27.5, -4 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0457631fbdad4555b92f9539ce317b19": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -68.54679897096905, 15.563225984493243 ], [ -68.72890341392828, 14.521183691888274 ], [ -70.89838488585947, 8.229678962301621 ], [ -74.39601999494, 9.066368008095981 ], [ -75.69854867196685, 12.800283424855905 ], [ -74.3580646864007, 14.556511641279737 ], [ -71.541667, 15.618076923076922 ], [ -69.07772341198282, 15.88342469409416 ], [ -68.54679897096905, 15.563225984493243 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "04959ccd6f7146edb0a50677337fdec1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -75.2702312299441, 20.738973364333244 ], [ -74.3580646864007, 14.556511641279737 ], [ -75.69854867196685, 12.800283424855905 ], [ -80.10666666666667, 13.991666666666667 ], [ -80.68489583210638, 14.817708331580544 ], [ -78.61388916259259, 20.064259113283956 ], [ -76.66605839416059, 21.103102189781023 ], [ -75.2702312299441, 20.738973364333244 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "04d69a5890d84d0eac2acbac96d5c123": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.25, -77.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "04e60a508ca74f988dfa519bc461a7c2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -170.4724227238813, -11.534570980447954 ], [ -171.73818188040755, -16.734534397758562 ], [ -172.8635758637368, -17.231932125320665 ], [ -174.55330595078996, -16.462532409096713 ], [ -173.89861949850788, -11.229044937590686 ], [ -170.4724227238813, -11.534570980447954 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0504355190144dd5827e72cb9958cde2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.785714285714285, 28.785714285714285 ], [ 54.46341463414634, 28.120426829268293 ], [ 52.76086956521739, 28.578804347826086 ], [ 51.07425742574257, 29.281559405940595 ], [ 48.697072072072075, 34.273648648648646 ], [ 48.813380281690144, 35.320422535211264 ], [ 53.67874396135266, 38.468599033816425 ], [ 59.427835051546396, 33.43814432989691 ], [ 59.785714285714285, 28.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "057ea8f9be6441a19025a6ac437384e4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletTileLayerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "msg_throttle": 1, "options": [ "max_zoom", "attribution", "tile_size", "detect_retina", "min_zoom", "opacity" ] } }, "05ecad48cc544806ab09989c5a91eb8e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.1159951829596684, 36.04481059748873 ], [ 1.8525956304858004, 35.252290262193355 ], [ 1.839020916191858, 35.160979083808144 ], [ 1.3078069536398917, 34.61561390727978 ], [ -12.194267517742581, 33.472292992902965 ], [ -5.84044598302083, 38.47356786416664 ], [ 1.1159951829596684, 36.04481059748873 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "062f989ea51e441cace202ca8d65b664": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -8, 178 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "06611a884a4141658ba42366ce954780": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 3.9494053224097057, 48.02380909811617 ], [ 1.166198695233587, 49.17548088533882 ], [ 0.656780500166442, 51.10286815207589 ], [ 0.265230362026724, 53.08672208090377 ], [ 1.2215782427525297, 55.502758577891434 ], [ 5.462431728991378, 51.04986330791969 ], [ 3.9494053224097057, 48.02380909811617 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "06f836e29d9a4338a7dce573ba9437f3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.833332999999998, -88.916667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "06fad2e03b8b41ba994dbd52ab974665": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.439308997360335, 14.170491538406978 ], [ -59.85090662959023, 14.323187854569529 ], [ -60.37424231068609, 13.276515031904768 ], [ -63.439308997360335, 14.170491538406978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "06fe3820d8344eeab55be0629fec3052": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.10678997556401, -23.162729080542306 ], [ 32.425, -22.025 ], [ 31.870967741935484, -17.592741935483872 ], [ 32.74771341463415, -16.24390243902439 ], [ 38.455000434916215, -15.042368329491323 ], [ 38.85085760731817, -17.60574507520024 ], [ 35.10678997556401, -23.162729080542306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0710db5a45a14b2584fd4e92dc58a458": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.3078069536398917, 34.61561390727978 ], [ -3.7241379310344827, 24.551724137931036 ], [ -5.782051282051282, 24.414529914529915 ], [ -5.981132075471698, 24.53066037735849 ], [ -13.059734513274336, 33.126106194690266 ], [ -12.194267517742581, 33.472292992902965 ], [ 1.3078069536398917, 34.61561390727978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0725fba3b8ab493ea670e2e319a3e270": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 5.544117867770639, 5.717320236914374 ], [ 7.153846153846153, 5.538461538461538 ], [ 9.165697674418604, -0.4970930232558137 ], [ 4.89000059010976, -10.651873598489319 ], [ -3.8642210857592456, -4.092663257277733 ], [ -3.6666666666666665, -3.5000000000000018 ], [ -3.5, -3.2142857142857135 ], [ -0.41666649999999983, 0.7500002142857154 ], [ 5.544117867770639, 5.717320236914374 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0758a7021b82499195c1c92fddc65b80": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.1159951829596684, 36.04481059748873 ], [ -5.84044598302083, 38.47356786416664 ], [ -6.7003170151417955, 45.35253612113436 ], [ -2.74765924925983, 44.544850348371625 ], [ 1.1159951829596684, 36.04481059748873 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "079176b3aca149728f7c4dffc2cb3a12": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15.5, -90.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "079fdd77769748b0a648ad50eaa3666d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -51.75, -59.166667000000004 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "07c55f904bbd4a309b98c6c95b802f0b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 38.74495582194318, -80.17871349622823 ], [ 38.47184369784168, -66.91689378129499 ], [ 90.46140165378344, -35.72315900772993 ], [ 106.81273702950035, -45.22820342246508 ], [ 122.59683835313533, -80.17871349622823 ], [ 38.74495582194318, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "07ffb63e43ef4ceba518d5ac413fc663": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -13.5, 34 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0832a336814a42de828f3f005c9f8ad7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22, 98 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "084872767b92443a853985d4cc23a730": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -21.416667, 39.7 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "08505efd8f2b48358e77d48c61c59004": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 11, -10 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "08884968154a4b829a19b746a3d09347": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, 19 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "08a4747819944f77bf1e52bb969a9acf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 1, 7 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "08e66192f248405c965d5e53f0e92e9b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 142.83497536945814, 2.529556650246306 ], [ 142.94776792786263, 4.55982270152751 ], [ 151.33401642660658, 11.773099869058134 ], [ 157.03846153846155, 14.884615384615385 ], [ 160.40494007960388, 4.785179761188357 ], [ 158.71578172054782, 0.23157477260266646 ], [ 153.7605633802817, -2.436619718309859 ], [ 142.83497536945814, 2.529556650246306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "09d962ccb46247388f61ce6b82acb3de": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 38.79846944876572, -10.32312925983543 ], [ 39.181008727923356, -13.263900703552599 ], [ 38.455000434916215, -15.042368329491323 ], [ 32.74771341463415, -16.24390243902439 ], [ 30.125, -9.25 ], [ 30.28125, -9.1875 ], [ 38.79846944876572, -10.32312925983543 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0a62a9dad99747159191fb7912d52df4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, 30 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0b48ddac9e984530bb26fa8364094a15": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 30, 70 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0b9cd9aa50d14203bcabee559bd43a9b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -19, 29 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0c21d37bc6bd4d8f9ffa02b1b85cca8f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -6, 147 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0c960c2153e2494fb7c0cdbb5a6a713d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -16, 167 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0c974802321c42ea9164c9ab3b24f052": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.166667000000002, -59.533333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0d43302af05347b4b2df3d690e761e9e": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "HBoxModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "children": [ "IPY_MODEL_4bba2936de04476c957df44870de8d59", "IPY_MODEL_db466c570f0a462aafb2fd089d11ebf3" ], "layout": "IPY_MODEL_b3a3963b568b42e088b67a501aa76023" } }, "0d709cdb473f4dc2a6ce7112ea308100": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16.166667, 107.83333300000001 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0d92a69191ef400686bc2b0d7ce63220": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -21.1, 55.6 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0da2c05c4a3941bb9da36de7f2f9777b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.42881529044293, -26.625426758275115 ], [ -60.59814038674846, -28.7148769060123 ], [ -58.918818576811546, -42.149451385507646 ], [ -75.94969531226228, -46.786966796458984 ], [ -64.42881529044293, -26.625426758275115 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0dfd40c7c92e42deabc7f8420179f5d5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.223684210526315, -25.69407894736842 ], [ 33.826857172836064, -59.90835727776229 ], [ 10.521068792382458, -38.35129760856974 ], [ 20.5, -27.125 ], [ 26.223684210526315, -25.69407894736842 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0dff51d92f4d42caa64f67908e0b7295": { "model_module": "jupyter-js-widgets", "model_module_version": "*", "model_name": "DOMWidgetModel", "state": { "_cdn_base_url": "https://cdn.rawgit.com/quantopian/qgrid/73eaa7adf1762f66eaf4d30ed9cbf385a7e9d9fa/qgrid/qgridjs/", "_column_types_json": "[{\"field\": \"Index\", \"type\": \"Integer\"}, {\"field\": \"LAT\", \"type\": \"Float\"}, {\"field\": \"LONG\", \"type\": \"Float\"}]", "_df_json": "[{\"Index\":0,\"LAT\":33.0,\"LONG\":66.0},{\"Index\":1,\"LAT\":41.0,\"LONG\":20.0},{\"Index\":2,\"LAT\":28.0,\"LONG\":3.0},{\"Index\":3,\"LAT\":-14.33333,\"LONG\":-170.0},{\"Index\":4,\"LAT\":42.5,\"LONG\":1.5},{\"Index\":5,\"LAT\":-12.5,\"LONG\":18.5},{\"Index\":6,\"LAT\":18.21667,\"LONG\":-63.05},{\"Index\":7,\"LAT\":17.05,\"LONG\":-61.8},{\"Index\":8,\"LAT\":-34.0,\"LONG\":-64.0},{\"Index\":9,\"LAT\":40.0,\"LONG\":45.0},{\"Index\":10,\"LAT\":12.5,\"LONG\":-69.96667},{\"Index\":11,\"LAT\":-15.95,\"LONG\":-5.7},{\"Index\":12,\"LAT\":-12.41667,\"LONG\":123.33333},{\"Index\":13,\"LAT\":-25.0,\"LONG\":135.0},{\"Index\":14,\"LAT\":47.33333,\"LONG\":13.33333},{\"Index\":15,\"LAT\":40.5,\"LONG\":47.5},{\"Index\":16,\"LAT\":24.0,\"LONG\":-76.0},{\"Index\":17,\"LAT\":26.0,\"LONG\":50.5},{\"Index\":18,\"LAT\":24.0,\"LONG\":90.0},{\"Index\":19,\"LAT\":13.16667,\"LONG\":-59.53333},{\"Index\":20,\"LAT\":-21.41667,\"LONG\":39.7},{\"Index\":21,\"LAT\":53.0,\"LONG\":28.0},{\"Index\":22,\"LAT\":50.83333,\"LONG\":4.0},{\"Index\":23,\"LAT\":17.25,\"LONG\":-88.75},{\"Index\":24,\"LAT\":9.5,\"LONG\":2.25},{\"Index\":25,\"LAT\":32.33333,\"LONG\":-64.75},{\"Index\":26,\"LAT\":27.5,\"LONG\":90.5},{\"Index\":27,\"LAT\":-17.0,\"LONG\":-65.0},{\"Index\":28,\"LAT\":12.2,\"LONG\":-68.25},{\"Index\":29,\"LAT\":44.25,\"LONG\":17.83333},{\"Index\":30,\"LAT\":-22.0,\"LONG\":24.0},{\"Index\":31,\"LAT\":-54.43333,\"LONG\":3.4},{\"Index\":32,\"LAT\":-10.0,\"LONG\":-55.0},{\"Index\":33,\"LAT\":-6.0,\"LONG\":72.0},{\"Index\":34,\"LAT\":18.5,\"LONG\":-64.5},{\"Index\":35,\"LAT\":4.5,\"LONG\":114.66667},{\"Index\":36,\"LAT\":43.0,\"LONG\":25.0},{\"Index\":37,\"LAT\":13.0,\"LONG\":-2.0},{\"Index\":38,\"LAT\":22.0,\"LONG\":98.0},{\"Index\":39,\"LAT\":-3.5,\"LONG\":30.0},{\"Index\":40,\"LAT\":13.0,\"LONG\":105.0},{\"Index\":41,\"LAT\":6.0,\"LONG\":12.0},{\"Index\":42,\"LAT\":60.0,\"LONG\":-96.0},{\"Index\":43,\"LAT\":16.0,\"LONG\":-24.0},{\"Index\":44,\"LAT\":19.5,\"LONG\":-80.66667},{\"Index\":45,\"LAT\":7.0,\"LONG\":21.0},{\"Index\":46,\"LAT\":15.0,\"LONG\":19.0},{\"Index\":47,\"LAT\":-30.0,\"LONG\":-71.0},{\"Index\":48,\"LAT\":35.0,\"LONG\":105.0},{\"Index\":49,\"LAT\":-10.5,\"LONG\":105.66667},{\"Index\":50,\"LAT\":10.28333,\"LONG\":-109.21667},{\"Index\":51,\"LAT\":-12.0,\"LONG\":96.83333},{\"Index\":52,\"LAT\":4.0,\"LONG\":-72.0},{\"Index\":53,\"LAT\":-12.16667,\"LONG\":44.25},{\"Index\":54,\"LAT\":-16.08333,\"LONG\":-161.58333},{\"Index\":55,\"LAT\":-17.5,\"LONG\":151.0},{\"Index\":56,\"LAT\":10.0,\"LONG\":-84.0},{\"Index\":57,\"LAT\":8.0,\"LONG\":-5.0},{\"Index\":58,\"LAT\":45.16667,\"LONG\":15.5},{\"Index\":59,\"LAT\":22.0,\"LONG\":-79.5},{\"Index\":60,\"LAT\":12.16667,\"LONG\":-69.0},{\"Index\":61,\"LAT\":35.0,\"LONG\":33.0},{\"Index\":62,\"LAT\":49.75,\"LONG\":15.0},{\"Index\":63,\"LAT\":0.0,\"LONG\":25.0},{\"Index\":64,\"LAT\":56.0,\"LONG\":10.0},{\"Index\":65,\"LAT\":11.5,\"LONG\":42.5},{\"Index\":66,\"LAT\":15.5,\"LONG\":-61.33333},{\"Index\":67,\"LAT\":19.0,\"LONG\":-70.66667},{\"Index\":68,\"LAT\":-2.0,\"LONG\":-77.5},{\"Index\":69,\"LAT\":27.0,\"LONG\":30.0},{\"Index\":70,\"LAT\":13.83333,\"LONG\":-88.91667},{\"Index\":71,\"LAT\":2.0,\"LONG\":10.0},{\"Index\":72,\"LAT\":15.0,\"LONG\":39.0},{\"Index\":73,\"LAT\":59.0,\"LONG\":26.0},{\"Index\":74,\"LAT\":8.0,\"LONG\":38.0},{\"Index\":75,\"LAT\":-22.33333,\"LONG\":40.36667},{\"Index\":76,\"LAT\":-51.75,\"LONG\":-59.16667},{\"Index\":77,\"LAT\":62.0,\"LONG\":-7.0},{\"Index\":78,\"LAT\":5.0,\"LONG\":152.0},{\"Index\":79,\"LAT\":-18.0,\"LONG\":178.0},{\"Index\":80,\"LAT\":64.0,\"LONG\":26.0},{\"Index\":81,\"LAT\":46.0,\"LONG\":2.0},{\"Index\":82,\"LAT\":4.0,\"LONG\":-53.0},{\"Index\":83,\"LAT\":-15.0,\"LONG\":-140.0},{\"Index\":84,\"LAT\":-43.0,\"LONG\":67.0},{\"Index\":85,\"LAT\":-1.0,\"LONG\":11.75},{\"Index\":86,\"LAT\":13.5,\"LONG\":-15.5},{\"Index\":87,\"LAT\":31.42507,\"LONG\":34.3734},{\"Index\":88,\"LAT\":41.99998,\"LONG\":43.4999},{\"Index\":89,\"LAT\":51.5,\"LONG\":10.5},{\"Index\":90,\"LAT\":8.0,\"LONG\":-2.0},{\"Index\":91,\"LAT\":36.13333,\"LONG\":-5.35},{\"Index\":92,\"LAT\":-11.5,\"LONG\":47.33333},{\"Index\":93,\"LAT\":39.0,\"LONG\":22.0},{\"Index\":94,\"LAT\":72.0,\"LONG\":-40.0},{\"Index\":95,\"LAT\":12.11667,\"LONG\":-61.66667},{\"Index\":96,\"LAT\":16.25,\"LONG\":-61.58333},{\"Index\":97,\"LAT\":13.44444,\"LONG\":144.73667},{\"Index\":98,\"LAT\":15.5,\"LONG\":-90.25},{\"Index\":99,\"LAT\":49.58333,\"LONG\":-2.33333},{\"Index\":100,\"LAT\":11.0,\"LONG\":-10.0},{\"Index\":101,\"LAT\":12.0,\"LONG\":-15.0},{\"Index\":102,\"LAT\":5.0,\"LONG\":-59.0},{\"Index\":103,\"LAT\":19.0,\"LONG\":-72.41667},{\"Index\":104,\"LAT\":-53.0,\"LONG\":73.0},{\"Index\":105,\"LAT\":15.0,\"LONG\":-86.5},{\"Index\":106,\"LAT\":22.25,\"LONG\":114.16667},{\"Index\":107,\"LAT\":47.0,\"LONG\":20.0},{\"Index\":108,\"LAT\":65.0,\"LONG\":-18.0},{\"Index\":109,\"LAT\":20.0,\"LONG\":77.0},{\"Index\":110,\"LAT\":-5.0,\"LONG\":120.0},{\"Index\":111,\"LAT\":32.0,\"LONG\":53.0},{\"Index\":112,\"LAT\":33.0,\"LONG\":44.0},{\"Index\":113,\"LAT\":53.0,\"LONG\":-8.0},{\"Index\":114,\"LAT\":54.25,\"LONG\":-4.5},{\"Index\":115,\"LAT\":31.5,\"LONG\":34.75},{\"Index\":116,\"LAT\":42.83333,\"LONG\":12.83333},{\"Index\":117,\"LAT\":18.25,\"LONG\":-77.5},{\"Index\":118,\"LAT\":36.0,\"LONG\":138.0},{\"Index\":119,\"LAT\":49.21667,\"LONG\":-2.11667},{\"Index\":120,\"LAT\":31.0,\"LONG\":36.0},{\"Index\":121,\"LAT\":-17.05833,\"LONG\":42.71667},{\"Index\":122,\"LAT\":48.0,\"LONG\":68.0},{\"Index\":123,\"LAT\":1.0,\"LONG\":38.0},{\"Index\":124,\"LAT\":-5.0,\"LONG\":-170.0},{\"Index\":125,\"LAT\":42.58333,\"LONG\":21.0},{\"Index\":126,\"LAT\":29.5,\"LONG\":47.75},{\"Index\":127,\"LAT\":41.0,\"LONG\":75.0},{\"Index\":128,\"LAT\":18.0,\"LONG\":105.0},{\"Index\":129,\"LAT\":57.0,\"LONG\":25.0},{\"Index\":130,\"LAT\":33.83333,\"LONG\":35.83333},{\"Index\":131,\"LAT\":-29.5,\"LONG\":28.25},{\"Index\":132,\"LAT\":6.5,\"LONG\":-9.5},{\"Index\":133,\"LAT\":25.0,\"LONG\":17.0},{\"Index\":134,\"LAT\":47.16667,\"LONG\":9.53333},{\"Index\":135,\"LAT\":56.0,\"LONG\":24.0},{\"Index\":136,\"LAT\":49.75,\"LONG\":6.16667},{\"Index\":137,\"LAT\":22.15778,\"LONG\":113.55972},{\"Index\":138,\"LAT\":41.83333,\"LONG\":22.0},{\"Index\":139,\"LAT\":-20.0,\"LONG\":47.0},{\"Index\":140,\"LAT\":-13.5,\"LONG\":34.0},{\"Index\":141,\"LAT\":2.5,\"LONG\":112.5},{\"Index\":142,\"LAT\":3.2,\"LONG\":73.0},{\"Index\":143,\"LAT\":17.0,\"LONG\":-4.0},{\"Index\":144,\"LAT\":35.91667,\"LONG\":14.43333},{\"Index\":145,\"LAT\":10.0,\"LONG\":167.0},{\"Index\":146,\"LAT\":14.66667,\"LONG\":-61.0},{\"Index\":147,\"LAT\":20.0,\"LONG\":-12.0},{\"Index\":148,\"LAT\":-20.3,\"LONG\":57.58333},{\"Index\":149,\"LAT\":-12.83333,\"LONG\":45.16667},{\"Index\":150,\"LAT\":23.0,\"LONG\":-102.0},{\"Index\":151,\"LAT\":47.0,\"LONG\":29.0},{\"Index\":152,\"LAT\":43.73333,\"LONG\":7.4},{\"Index\":153,\"LAT\":46.0,\"LONG\":105.0},{\"Index\":154,\"LAT\":42.5,\"LONG\":19.3},{\"Index\":155,\"LAT\":16.75,\"LONG\":-62.2},{\"Index\":156,\"LAT\":32.0,\"LONG\":-5.0},{\"Index\":157,\"LAT\":-18.25,\"LONG\":35.0},{\"Index\":158,\"LAT\":-22.0,\"LONG\":17.0},{\"Index\":159,\"LAT\":-0.53333,\"LONG\":166.91667},{\"Index\":160,\"LAT\":28.0,\"LONG\":84.0},{\"Index\":161,\"LAT\":52.5,\"LONG\":5.75},{\"Index\":162,\"LAT\":-21.5,\"LONG\":165.5},{\"Index\":163,\"LAT\":-42.0,\"LONG\":174.0},{\"Index\":164,\"LAT\":13.0,\"LONG\":-85.0},{\"Index\":165,\"LAT\":16.0,\"LONG\":8.0},{\"Index\":166,\"LAT\":10.0,\"LONG\":8.0},{\"Index\":167,\"LAT\":-19.03333,\"LONG\":-169.86667},{\"Index\":168,\"LAT\":-29.03333,\"LONG\":167.95},{\"Index\":169,\"LAT\":40.0,\"LONG\":127.0},{\"Index\":170,\"LAT\":16.0,\"LONG\":146.0},{\"Index\":171,\"LAT\":62.0,\"LONG\":10.0},{\"Index\":172,\"LAT\":21.0,\"LONG\":57.0},{\"Index\":173,\"LAT\":30.0,\"LONG\":70.0},{\"Index\":174,\"LAT\":6.0,\"LONG\":134.0},{\"Index\":175,\"LAT\":9.0,\"LONG\":-80.0},{\"Index\":176,\"LAT\":-6.0,\"LONG\":147.0},{\"Index\":177,\"LAT\":-22.99333,\"LONG\":-57.99639},{\"Index\":178,\"LAT\":-10.0,\"LONG\":-76.0},{\"Index\":179,\"LAT\":13.0,\"LONG\":122.0},{\"Index\":180,\"LAT\":-25.06667,\"LONG\":-130.1},{\"Index\":181,\"LAT\":52.0,\"LONG\":20.0},{\"Index\":182,\"LAT\":39.5,\"LONG\":-8.0},{\"Index\":183,\"LAT\":18.24829,\"LONG\":-66.49989},{\"Index\":184,\"LAT\":25.5,\"LONG\":51.25},{\"Index\":185,\"LAT\":-1.0,\"LONG\":15.0},{\"Index\":186,\"LAT\":-21.1,\"LONG\":55.6},{\"Index\":187,\"LAT\":46.0,\"LONG\":25.0},{\"Index\":188,\"LAT\":60.0,\"LONG\":100.0},{\"Index\":189,\"LAT\":-2.0,\"LONG\":30.0},{\"Index\":190,\"LAT\":17.9,\"LONG\":-62.83333},{\"Index\":191,\"LAT\":17.33333,\"LONG\":-62.75},{\"Index\":192,\"LAT\":13.88333,\"LONG\":-60.96667},{\"Index\":193,\"LAT\":18.075,\"LONG\":-63.05833},{\"Index\":194,\"LAT\":46.83333,\"LONG\":-56.33333},{\"Index\":195,\"LAT\":13.08333,\"LONG\":-61.2},{\"Index\":196,\"LAT\":-13.8031,\"LONG\":-172.17831},{\"Index\":197,\"LAT\":43.93333,\"LONG\":12.41667},{\"Index\":198,\"LAT\":1.0,\"LONG\":7.0},{\"Index\":199,\"LAT\":25.0,\"LONG\":45.0},{\"Index\":200,\"LAT\":14.0,\"LONG\":-14.0},{\"Index\":201,\"LAT\":44.0,\"LONG\":21.0},{\"Index\":202,\"LAT\":-4.58333,\"LONG\":55.66667},{\"Index\":203,\"LAT\":8.5,\"LONG\":-11.5},{\"Index\":204,\"LAT\":1.36667,\"LONG\":103.8},{\"Index\":205,\"LAT\":18.04167,\"LONG\":-63.06667},{\"Index\":206,\"LAT\":48.66667,\"LONG\":19.5},{\"Index\":207,\"LAT\":46.25,\"LONG\":15.16667},{\"Index\":208,\"LAT\":-8.0,\"LONG\":159.0},{\"Index\":209,\"LAT\":6.0,\"LONG\":48.0},{\"Index\":210,\"LAT\":-30.0,\"LONG\":26.0},{\"Index\":211,\"LAT\":-56.0,\"LONG\":-33.0},{\"Index\":212,\"LAT\":37.0,\"LONG\":127.5},{\"Index\":213,\"LAT\":8.0,\"LONG\":30.0},{\"Index\":214,\"LAT\":40.0,\"LONG\":-4.0},{\"Index\":215,\"LAT\":7.0,\"LONG\":81.0},{\"Index\":216,\"LAT\":16.0,\"LONG\":30.0},{\"Index\":217,\"LAT\":4.0,\"LONG\":-56.0},{\"Index\":218,\"LAT\":78.0,\"LONG\":20.0},{\"Index\":219,\"LAT\":-26.5,\"LONG\":31.5},{\"Index\":220,\"LAT\":62.0,\"LONG\":15.0},{\"Index\":221,\"LAT\":47.0,\"LONG\":8.0},{\"Index\":222,\"LAT\":35.0,\"LONG\":38.0},{\"Index\":223,\"LAT\":24.0,\"LONG\":121.0},{\"Index\":224,\"LAT\":39.0,\"LONG\":71.0},{\"Index\":225,\"LAT\":-6.0,\"LONG\":35.0},{\"Index\":226,\"LAT\":15.0,\"LONG\":100.0},{\"Index\":227,\"LAT\":-8.83333,\"LONG\":125.75},{\"Index\":228,\"LAT\":8.0,\"LONG\":1.16667},{\"Index\":229,\"LAT\":-9.0,\"LONG\":-171.75},{\"Index\":230,\"LAT\":-20.0,\"LONG\":-175.0},{\"Index\":231,\"LAT\":11.0,\"LONG\":-61.0},{\"Index\":232,\"LAT\":-15.86667,\"LONG\":54.41667},{\"Index\":233,\"LAT\":34.0,\"LONG\":9.0},{\"Index\":234,\"LAT\":39.05901,\"LONG\":34.91155},{\"Index\":235,\"LAT\":40.0,\"LONG\":60.0},{\"Index\":236,\"LAT\":21.73333,\"LONG\":-71.58333},{\"Index\":237,\"LAT\":-8.0,\"LONG\":178.0},{\"Index\":238,\"LAT\":2.0,\"LONG\":33.0},{\"Index\":239,\"LAT\":49.0,\"LONG\":32.0},{\"Index\":240,\"LAT\":24.0,\"LONG\":54.0},{\"Index\":241,\"LAT\":54.0,\"LONG\":-4.0},{\"Index\":242,\"LAT\":39.82818,\"LONG\":-98.5795},{\"Index\":243,\"LAT\":-33.0,\"LONG\":-56.0},{\"Index\":244,\"LAT\":5.88111,\"LONG\":-162.0725},{\"Index\":245,\"LAT\":18.34829,\"LONG\":-64.98348},{\"Index\":246,\"LAT\":41.70754,\"LONG\":63.84911},{\"Index\":247,\"LAT\":-16.0,\"LONG\":167.0},{\"Index\":248,\"LAT\":41.9,\"LONG\":12.45},{\"Index\":249,\"LAT\":8.0,\"LONG\":-66.0},{\"Index\":250,\"LAT\":16.16667,\"LONG\":107.83333},{\"Index\":251,\"LAT\":-13.3,\"LONG\":-176.2},{\"Index\":252,\"LAT\":31.66667,\"LONG\":35.25},{\"Index\":253,\"LAT\":25.0,\"LONG\":-13.5},{\"Index\":254,\"LAT\":15.5,\"LONG\":47.5},{\"Index\":255,\"LAT\":-15.0,\"LONG\":30.0},{\"Index\":256,\"LAT\":-19.0,\"LONG\":29.0}]", "_model_name": "DOMWidgetModel", "_view_module": "nbextensions/qgridjs/qgrid.widget", "_view_name": "QGridView", "grid_options": { "autoEdit": false, "defaultColumnWidth": 150, "editable": true, "enableColumnReorder": false, "enableTextSelectionOnCells": true, "forceFitColumns": true, "fullWidthRows": true, "rowHeight": 28, "syncColumnCellResize": true }, "layout": "IPY_MODEL_a2ae598f07974e5caa6137601d02ad53" } }, "0e2987497bb64dc39c9d526d1743cb31": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -74.65869104893386, 21.177243786621233 ], [ -75.2702312299441, 20.738973364333244 ], [ -76.66605839416059, 21.103102189781023 ], [ -84.84039352023821, 35.40818866041687 ], [ -80.41518568686232, 41.72091771943416 ], [ -70.78653937242228, 28.7222446749932 ], [ -74.65869104893386, 21.177243786621233 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0e2e04a8d1e54da38a832fa105a59f94": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, 45 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "0e4ffe7c03c44fc4b43180fd036f90aa": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 108.91113314687364, -3.9094844341823056 ], [ 111.97829142260433, -5.521708577395669 ], [ 114.44628468733671, -11.953448451062306 ], [ 111.98520643877718, -34.63816489745933 ], [ 106.95096820648595, -44.8223708608476 ], [ 100.23524681685709, -5.2742308038236665 ], [ 108.91113314687364, -3.9094844341823056 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0e63d9c158a94962aeaaac4bdb9bd187": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -18, 178 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "0e9748fc9b1e44d8b2f2d99668e2beef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 14.960560103396157, 47.994153636088065 ], [ 12.410750188456655, 49.75264334174569 ], [ 14.133064516129032, 54.181451612903224 ], [ 15.514705882352942, 55.286764705882355 ], [ 17.598525373166268, 50.65605472629718 ], [ 16.980857950263637, 48.090358487872024 ], [ 14.960560103396157, 47.994153636088065 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0eee2d65b5a4421d8ce6d327d2c3fe61": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.8525956304858004, 35.252290262193355 ], [ 5.433482724099076, 38.41189652126389 ], [ 8.509475489529102, 38.91753918495248 ], [ 10.649727809605306, 37.98287203251414 ], [ 13.48886245635114, 29.934544405645457 ], [ 10.088235294117647, 26.91176470588235 ], [ 1.839020916191858, 35.160979083808144 ], [ 1.8525956304858004, 35.252290262193355 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "0f8cf3ac98ee49f9aa4b77535383fa6b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -60.41447873621172, 19.787462810021925 ], [ -62.11873122840681, 17.71562711529553 ], [ -63.201638847461005, 17.556376725527574 ], [ -62.91871969518241, 18.02235756999168 ], [ -62.832805212340695, 18.132817575111325 ], [ -60.41447873621172, 19.787462810021925 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1009c612d04a495198f69066a1f204b2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 31.870967741935484, -17.592741935483872 ], [ 23.850515463917525, -15.587628865979381 ], [ 25.22826086956522, -9.25 ], [ 30.125, -9.25 ], [ 32.74771341463415, -16.24390243902439 ], [ 31.870967741935484, -17.592741935483872 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "103f658b359742daa3964ba1850505b8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.950805199997426, -64.0185221111185 ], [ 44.84806791569086, -44.22082357533177 ], [ 45.04285705214008, -43.801731796910744 ], [ 49.32465014416529, -38.2837437605715 ], [ 61.19240924770094, -32.10600614503239 ], [ 77.06366145593447, -25.522116412964117 ], [ 80.31847569141645, -25.961956174515734 ], [ 90.46140165378344, -35.72315900772993 ], [ 38.47184369784168, -66.91689378129499 ], [ 37.950805199997426, -64.0185221111185 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "105933aa4b0c41408b54d2e65c5d4aa8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 17.296874963671776, 46.312499685937375 ], [ 13.696461019084081, 45.20468077763196 ], [ 13.470637558310848, 45.47274455940396 ], [ 14.960560103396157, 47.994153636088065 ], [ 16.980857950263637, 48.090358487872024 ], [ 17.500549257893905, 47.158498412335184 ], [ 17.574404945535726, 46.68253956924598 ], [ 17.296874963671776, 46.312499685937375 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "10b554a6b46f4a419feaed8c261a14d3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.478092783505154, 20.836340206185568 ], [ 43.00609756097561, 19.396341463414636 ], [ 37.11904761904762, 22.92857142857143 ], [ 40.86363636363637, 28.545454545454547 ], [ 43.679245283018865, 28.89740566037736 ], [ 47.56392045454545, 26.5234375 ], [ 48.38392857142857, 22.013392857142858 ], [ 48.478092783505154, 20.836340206185568 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "11657271a4da44299da22003540cc435": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -53, 73 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1172fbd1ff504c3eb3c0b758dad9007e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15.5, 47.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "11c2e06bec704846be2877c043268f2f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.5, 1.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "11c5170820fa443ba93ada64efd551a0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 62, 15 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1210e5d0ca0f4ea6880608c9455089d2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 16.024059880778594, 39.76433566653155 ], [ 16.061115007012624, 40.07518700327256 ], [ 20.176757075876065, 41.99581996874216 ], [ 20.966517910395396, 41.49702354719387 ], [ 21.4166665, 40.416666500000005 ], [ 18.286632681794458, 37.28663268179446 ], [ 16.024059880778594, 39.76433566653155 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "121f72e905514a04aee061051523aa5e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 28.38888888888889, 3.4444444444444446 ], [ 34, 6.25 ], [ 36.1, 4.5 ], [ 34.8421052631579, -1.7894736842105265 ], [ 34.125, -1.96875 ], [ 28.73076923076923, 2.0769230769230775 ], [ 28.38888888888889, 3.4444444444444446 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1239a421b60845c4aacf7ea302ee506c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 43, 25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1264f54b44a84fdab6e4d9d40eae05c2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 29.247033738409375, 39.24703373840938 ], [ 27.785714285714285, 37.785714285714285 ], [ 24.277777999999998, 40.416666500000005 ], [ 23.030797023629496, 43.623188094517985 ], [ 23.25, 44.5 ], [ 27.5, 44.5 ], [ 30.24445688154456, 41.75554311845544 ], [ 29.247033738409375, 39.24703373840938 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "126db8568d2b44c7b560643fdf607850": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -20, 47 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "12d346f4aec44bfb93cc3e3d706295d9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.166667, 44.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "13a5907caa55410c993be94f6d997b90": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.478092783505154, 20.836340206185568 ], [ 50.14858490566038, 20.20990566037736 ], [ 51.88333333333333, 18.883333333333333 ], [ 56.33064516129032, 11.201612903225806 ], [ 47.22222222222222, 10.722222222222221 ], [ 43.22222222222222, 15.722222222222221 ], [ 43.00609756097561, 19.396341463414636 ], [ 48.478092783505154, 20.836340206185568 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "13e3f7e6deb44859a1d3ca80fb714529": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 8.978791652479575, 45.13178642453233 ], [ 9.878864326017766, 44.57251816316969 ], [ 9.946503615816958, 42.875899197974476 ], [ 8.509475489529102, 38.91753918495248 ], [ 5.433482724099076, 38.41189652126389 ], [ 4.288907385560957, 43.88729894491986 ], [ 5.109590680277008, 45.842455918337954 ], [ 8.978791652479575, 45.13178642453233 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "144a5899f53b40ad922f874958c693a8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 52.256029642258895, 59.26685231115903 ], [ 50.68630726562837, 65.67655657227448 ], [ 56.21093847475361, 80.17871349622823 ], [ 74.18298243891442, 80.17871349622823 ], [ 83.18181818181819, 56.18181818181818 ], [ 71, 44 ], [ 68.48809998999228, 43.162699996664095 ], [ 57.76114404816097, 50.23885595183903 ], [ 54.28846153846154, 53.71153846153846 ], [ 52.256029642258895, 59.26685231115903 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1457544e093b410eb41c1126246a325d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -31.913874716402603, 44.83279422886172 ], [ -32.567386056786326, 40.52556022843619 ], [ -33.815676951894105, 38.076623110543125 ], [ -42.41341796816169, 29.060613607881244 ], [ -77.4924368400039, 49.42257364450274 ], [ -69.56524712185802, 73.30448656867075 ], [ -34.6760021000632, 50.66113625694425 ], [ -31.913874716402603, 44.83279422886172 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "14580fcf168245ae879aaf1fcbdf4b8d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.59232331103404, 45.24103110312757 ], [ 49.41678077774722, 64.66671231109889 ], [ 50.68630726562837, 65.67655657227448 ], [ 52.256029642258895, 59.26685231115903 ], [ 45.85867582567887, 42.20662087160565 ], [ 40.8314700518036, 38.435941927474964 ], [ 39.58810318261007, 39.41285881635107 ], [ 37.59232331103404, 45.24103110312757 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "147e0d4a8dfb4d42a3ae7675ee35af08": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "description": "Voronoi cells", "icon": "check", "layout": "IPY_MODEL_67be349e5ef54d08a5a0fc3273b52313", "style": "IPY_MODEL_1acc47e5f4c1497d90f6b2b5cea1fc86", "tooltip": "Display proximity cells" } }, "14878839f8884c7ba2c2c134ff6bf301": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.746604200046136, 15.445576266651287 ], [ -61.79209951287454, 16.62279935049939 ], [ -54.851649017960085, 18.502507584726434 ], [ -56.1344214183599, 17.649637193880032 ], [ -62.746604200046136, 15.445576266651287 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "149461cd813f416ab90f6f844429b729": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4, -53 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "14a4088ed9304f0caecb40f21538b9c3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 22.75581395348837, 30.837209302325583 ], [ 26.06, 33.04 ], [ 29.69216779614482, 31.677937076445694 ], [ 34.15554367635024, 27.26668448547464 ], [ 37.05555555555556, 22.916666666666668 ], [ 35.166666666666664, 21.5 ], [ 24.192307692307693, 21.5 ], [ 22.75581395348837, 30.837209302325583 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "14d1fe2c242149cd876bdae864e00169": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 90.12953367875647, 42.72279792746114 ], [ 89.20786516853933, 48.252808988764045 ], [ 120.47841726618705, 59.42086330935252 ], [ 115.31818181818181, 40.5 ], [ 92.96551724137932, 40.5 ], [ 90.12953367875647, 42.72279792746114 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "14ebf9f1ef364710a1415b91c0e5110b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -10.5, 105.66666699999999 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "153ed76bcf0c486a933c27aaf87f0fb3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15.5, -61.333332999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "155fe4f6db10469b8efed408bcfc27f5": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "width": "50%" } }, "15dbf7e77c1542e7924e4b7d1d2642ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 34, 9 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "16a7f44cb60d4998b98fb2beaef3479b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 60, -96 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "16ee4b33cf4b42eba400dad4cb05ae34": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, -4 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "175b269613c44868a34b62ad933757bb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 54.46341463414634, 28.120426829268293 ], [ 50.14858490566038, 20.20990566037736 ], [ 48.478092783505154, 20.836340206185568 ], [ 48.38392857142857, 22.013392857142858 ], [ 52.76086956521739, 28.578804347826086 ], [ 54.46341463414634, 28.120426829268293 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "17c7dfd4146447aaa27f371c039743f1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.01825943313615, 22.492226275690236 ], [ -65.50324553738248, 14.682556835644633 ], [ -68.54679897096905, 15.563225984493243 ], [ -69.07772341198282, 15.88342469409416 ], [ -68.08499191735669, 21.386180788630142 ], [ -66.22121752828403, 24.10476369758893 ], [ -66.01825943313615, 22.492226275690236 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1863375e678c4d3ba6275fca2cb69bfa": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -55.89891052069112, 9.303268437926665 ], [ -54.5, 9.8424847863339 ], [ -54.5, -2.928571428571428 ], [ -60.109756097560975, -3.3292682926829267 ], [ -55.89891052069112, 9.303268437926665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "18c96da3c2a64a52b75bc0354099de08": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -42, 174 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "18cdc813bd1240a49ee2719dea194aa2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.5, 19.3 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1993689e591a4222b3da8b2d9178c9e6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -43, 67 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "19ac1c8e7fa048298c124f6450976365": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -17.5, 151 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "19edd114752d47ca949188cd5e078787": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.01825943313615, 22.492226275690236 ], [ -66.22121752828403, 24.10476369758893 ], [ -65.63066875028943, 25.398491763111043 ], [ -62.38788707102656, 25.457096252702648 ], [ -63.80586497026158, 18.200377289889307 ], [ -64.1469281096143, 17.133774559261973 ], [ -64.27605747470798, 16.940080566962568 ], [ -66.01825943313615, 22.492226275690236 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1a20ea505f2846a1a12c345524133c1e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.583333, -2.333333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1a3789cb6e6945da959fb0019e5ac26f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -7.9512599555741215, 80.17871349622823 ], [ -13.941176470588236, 58.21568627450981 ], [ -28.3, 46.25 ], [ -31.913874716402603, 44.83279422886172 ], [ -34.6760021000632, 50.66113625694425 ], [ -25.28404570574557, 80.17871349622823 ], [ -7.9512599555741215, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1a4dc0c5a93f45189ed2a63b3a71a329": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.883332999999999, -60.966667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1a8c1313f2eb4622b042068dfa3fcb23": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -25.066667000000002, -130.1 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1ac896e4373941cbbb23bf06cdf9f7c0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -56.1344214183599, 17.649637193880032 ], [ -54.851649017960085, 18.502507584726434 ], [ -42.647190508937754, 25.626141678240977 ], [ -42.09370555292632, 18.684788419571937 ], [ -54.5, 9.8424847863339 ], [ -55.89891052069112, 9.303268437926665 ], [ -56.136801956994475, 9.287732681001842 ], [ -60.31626137783151, 12.116905419766404 ], [ -60.37424231068609, 13.276515031904768 ], [ -59.85090662959023, 14.323187854569529 ], [ -57.624361583844546, 16.50025461630865 ], [ -56.1344214183599, 17.649637193880032 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1acc47e5f4c1497d90f6b2b5cea1fc86": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonStyleModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "1aeab09d95be4ec2ab4265585ec20432": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -51.75, -59.166667000000004 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1aeda839e79c43548e64acb23e2d7a8c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.5, -27.125 ], [ 10.521068792382458, -38.35129760856974 ], [ 1.4946076894635336, -34.56630668581452 ], [ 6.579811436199801, -15.486286016242074 ], [ 20.5, -17.684210526315788 ], [ 20.5, -27.125 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1b238cffb0684578a9469c3053005f46": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -14.333333300000001, -170 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1b4706bac77643828c8a98376b93f2d4": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "width": "50%" } }, "1b927aa5b0bb46ce9aaf0ece7163c946": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, 30 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1bef17c742c4430d84348df9b327a002": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.6394390550387, -9.66666665 ], [ -158.5306729184465, -5.027678508745646 ], [ -151.32744754011327, -4.867256504318824 ], [ -149.8363327938139, -34.574858977971786 ], [ -154.2081680570249, -49.89655862899381 ], [ -166.0755949388039, -16.573894024806027 ], [ -164.6394390550387, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1c00eb08d3224ebc9acd21b234389599": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -61.79209951287454, 16.62279935049939 ], [ -62.258995793806164, 17.24532772507489 ], [ -62.11873122840681, 17.71562711529553 ], [ -60.41447873621172, 19.787462810021925 ], [ -54.20284766716669, 26.442779911051 ], [ -42.56209202800486, 28.689686991825027 ], [ -42.647190508937754, 25.626141678240977 ], [ -54.851649017960085, 18.502507584726434 ], [ -61.79209951287454, 16.62279935049939 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1c2bb45031d14fe5ab0f072fddcde716": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 276.328125, -13 ], [ 173.22727272727272, -13 ], [ 169.77381595324982, -8.251496935718524 ], [ 178.46018972151518, 4.642338163148159 ], [ 276.328125, 64.45052083333333 ], [ 276.328125, -13 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1c8e0cb6d7d2478b9e1e2c2c0a95af18": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46, 105 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1caf2b5ca9f1477c9cd27ac29e3c4500": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.242939754786114, 36.42332930935598 ], [ 33.964848739597294, 33.31939523876171 ], [ 29.69216779614482, 31.677937076445694 ], [ 26.06, 33.04 ], [ 27.785714285714285, 37.785714285714285 ], [ 29.247033738409375, 39.24703373840938 ], [ 35.242939754786114, 36.42332930935598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1cbab8af15fe49d1b6343139dbd61b87": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -5.782051282051282, 24.414529914529915 ], [ -8.954545454545455, 15.954545454545455 ], [ -9.5, 15.833333333333334 ], [ -16.1875, 18.0625 ], [ -18.421875, 19.265625 ], [ -18.886363636363637, 20.65909090909091 ], [ -5.981132075471698, 24.53066037735849 ], [ -5.782051282051282, 24.414529914529915 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1cfca26f05534a2eb5f52952bdad46ae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -20.891304347826086, 10.869565217391305 ], [ -27.5, -4 ], [ -30.056053811659194, -8.260089686098656 ], [ -31.80890052356021, -6.170157068062828 ], [ -42.09370555292632, 18.684788419571937 ], [ -42.647190508937754, 25.626141678240977 ], [ -42.56209202800486, 28.689686991825027 ], [ -42.41341796816169, 29.060613607881244 ], [ -33.815676951894105, 38.076623110543125 ], [ -18.886363636363637, 20.65909090909091 ], [ -18.421875, 19.265625 ], [ -20.891304347826086, 10.869565217391305 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1d811b824f334b30856992a7e048928e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 117.14333313520004, -0.3566668647999647 ], [ 124.2586961526276, 3.6379226497080444 ], [ 124.56086956521739, 3.604347826086956 ], [ 127.44330573591718, -0.06420730025821975 ], [ 121.6864972265454, -8.699420815204025 ], [ 114.44628468733671, -11.953448451062306 ], [ 111.97829142260433, -5.521708577395669 ], [ 117.14333313520004, -0.3566668647999647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1d8aabde19cc4e18b693e4ec2739753d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.833332999999998, -88.916667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1ddfaf50bae4463f94e4466b1d091ef9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10, 8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1e260b8bd8864b37838dd1df74f6cc94": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 27, 30 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1e4aaf92c66d4ec480a19d9d12847cfd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 36, 138 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1e4e6305a2ad41a187e85fd7c6579e47": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 48.666667, 19.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1eb0d31255404c47a3126ce4ff805af4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 85.24859930655916, -5.556722596848646 ], [ 80.31847569141645, -25.961956174515734 ], [ 77.06366145593447, -25.522116412964117 ], [ 64.00997065428118, -12.361926664125068 ], [ 63.32584190405518, -11.142744580641589 ], [ 64.24866706916984, -0.5031159857793304 ], [ 80.50057306590259, -2.269627507163321 ], [ 85.24859930655916, -5.556722596848646 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1ed0a368f2424667a2e1d51d1debe89e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22.157778, 113.559722 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1f10b43de14941b0b3bd82c591023470": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 72, -40 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "1f14c5c89e044732bc1f6167ffb4b981": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 44.41699815786587, 80.17871349622823 ], [ 19.33132530120482, 69.42771084337349 ], [ 12.5, 71.5625 ], [ 1.5, 78.4375 ], [ 0.46816978001290277, 80.17871349622823 ], [ 44.41699815786587, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "1f71ec13035a45a19db0491fb545e75d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, 122 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "1fb95546311b4808b1292bae4677cd35": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LabelModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "layout": "IPY_MODEL_31234a65654a43bc9a163d37c94c6898" } }, "202ce71ab150418cace74e282401ca82": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 103.1, 15.5 ], [ 99.9566685702624, 7.641671425655971 ], [ 92.75877380995436, 5.635412201358397 ], [ 89.49601593625498, 13.384462151394423 ], [ 92.40384615384616, 16.615384615384613 ], [ 100.96341463414635, 19.0609756097561 ], [ 103.1, 15.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "210ba1229012473ba8a8612b72c0b0b7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 14.18815861380963, 43.97543758816509 ], [ 13.696461019084081, 45.20468077763196 ], [ 17.296874963671776, 46.312499685937375 ], [ 15.699970183868817, 42.247653214348475 ], [ 14.18815861380963, 43.97543758816509 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "211179d5f9bc438da793867371a17dae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.216667, -63.05 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2123ac1f68204f758afd21e7cbe4e90c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -74.65869104893386, 21.177243786621233 ], [ -71.541667, 20.226930700438803 ], [ -71.541667, 15.618076923076922 ], [ -74.3580646864007, 14.556511641279737 ], [ -75.2702312299441, 20.738973364333244 ], [ -74.65869104893386, 21.177243786621233 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "21457ca204384eb6a7361b5d58c8b1bc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, -5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "21f0d74949344166a93b042ff7a112a2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46, 2 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "22274d814ce7491e8e9f7a81b99ef37b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -87.04008449711586, 13.032436627163102 ], [ -82.78921576310886, 16.220588177668354 ], [ -80.68489583210638, 14.817708331580544 ], [ -80.10666666666667, 13.991666666666667 ], [ -81.22727272727273, 12.59090909090909 ], [ -87.58492347817732, 10.471692173940895 ], [ -87.04008449711586, 13.032436627163102 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "22a9572c2bb245b7a9cf63a9d92cc890": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 137.1265963517219, -13.05363980108751 ], [ 132.26621549659933, -15.834579305184665 ], [ 121.6864972265454, -8.699420815204025 ], [ 127.44330573591718, -0.06420730025821975 ], [ 136.03155345278148, -4.840817092820053 ], [ 137.1265963517219, -13.05363980108751 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "22d2e0b8c5db48e6b45b6cde351044aa": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "width": "50%" } }, "230afd245a204168bd8d00fb547a561c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 21.733333, -71.583333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "235cb0fd3adf4a82bf1e525f9ce1140f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 29.1, 50.1 ], [ 26.22, 49.62 ], [ 24.254716981132077, 50.4622641509434 ], [ 24.07142857142857, 51.92857142857143 ], [ 26.214285714285715, 54.785714285714285 ], [ 28.5, 56.5 ], [ 39, 60 ], [ 29.1, 50.1 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "23b6d93973db4a3d87fc3692f5659602": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -81.22727272727273, 12.59090909090909 ], [ -83.78614457831326, 2.355421686746988 ], [ -96.77487043278369, -4.680138151091159 ], [ -96.73651180719696, -1.2662164123666528 ], [ -87.58492347817732, 10.471692173940895 ], [ -81.22727272727273, 12.59090909090909 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2409f6da2d4449e8b59e6e0e2df57ff6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 27.223484848484848, -25.127525252525253 ], [ 26.223684210526315, -25.69407894736842 ], [ 20.5, -27.125 ], [ 20.5, -17.684210526315788 ], [ 23.69921875, -15.83203125 ], [ 28.25, -23.416666666666668 ], [ 27.223484848484848, -25.127525252525253 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2433df99749e4a408db8febc425a5dff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39, 22 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "243a81ab13f848faa994202c3ae4cc41": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.075, -63.058330000000005 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "24449b1c45664bd583def6b4e92361bb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6, 12 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "244eba2be0b249748980f83fdb870246": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 172.7463506798477, -23.30839528517029 ], [ 181.0092522949306, -30.834875382488434 ], [ 149.19034575842386, -45.680971495380525 ], [ 150.27985045921292, -36.780347646320905 ], [ 155.66712482070056, -28.862922524960464 ], [ 172.7463506798477, -23.30839528517029 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2498256677764cb38d50753d77f010be": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 63.32584190405518, -11.142744580641589 ], [ 53.137036401771624, -10.013999576917119 ], [ 47.089672949612705, -2.728019282328227 ], [ 60.79089492561899, 7.197276121598136 ], [ 64.24866706916984, -0.5031159857793304 ], [ 63.32584190405518, -11.142744580641589 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "24c73a1010d9424782be7c0415729746": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 46.35726516274236, -16.346590974368567 ], [ 48.486991450447825, -15.801777397259722 ], [ 49.543500258193944, -15.843209073778832 ], [ 51.461768608905146, -19.285263603105218 ], [ 49.211107650863816, -36.88134018415563 ], [ 43.467793172954615, -20.55391608494097 ], [ 46.35726516274236, -16.346590974368567 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "24f06c0d30c84b8ebf7a05b31e0f94e0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.486991450447825, -15.801777397259722 ], [ 45.65451341086134, -11.199000848476553 ], [ 44.131721455719834, -4.156092338797324 ], [ 46.09506471289707, -2.690129425794141 ], [ 47.089672949612705, -2.728019282328227 ], [ 53.137036401771624, -10.013999576917119 ], [ 49.543500258193944, -15.843209073778832 ], [ 48.486991450447825, -15.801777397259722 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "25185557e36943b9b3b87515d8dc14b0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 158.93571428571428, -16.064285714285713 ], [ 166.73211465335726, -8.267885346642737 ], [ 169.77381595324982, -8.251496935718524 ], [ 173.22727272727272, -13 ], [ 171.9015748031496, -20.291338582677167 ], [ 159.0021865889213, -16.77332361516035 ], [ 158.93571428571428, -16.064285714285713 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2523624baf5b4be7876f9a4c9a841e65": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -10, -55 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "25614025ed3c4dc2ba4f3e6347f1c78c": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LabelModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "layout": "IPY_MODEL_c692b8e16d1c4eef8ad46febc33317f6" } }, "258948c2f42d40d58398de2bb3b207fc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4, -56 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "25ead47f4a204ff8a674d51fbc020bf1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47, 8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "25ffb51715a44341aacb3fdb132f5453": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47, 29 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "26bd6c1371654f8bb8a136c67f41b2e2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.166666666666664, 21.5 ], [ 37.05555555555556, 22.916666666666668 ], [ 37.11904761904762, 22.92857142857143 ], [ 43.00609756097561, 19.396341463414636 ], [ 43.22222222222222, 15.722222222222221 ], [ 38.9375, 11.4375 ], [ 34.125, 12.125 ], [ 35.166666666666664, 21.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "270a8d25a77c490ba6a30c1f0cfd10ef": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonStyleModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "276ec83c9185490cb5c509eeceef9481": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -5, 120 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "283f9ce483a64266a37ee18e59e155cb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.5610010467612, 14.109910590673937 ], [ -60.41333519149932, 12.107586332163239 ], [ -63.837857127346986, 10.063095212244974 ], [ -64.96977329998248, 11.254585732152242 ], [ -64.93390814958786, 14.087943803298156 ], [ -64.65910396060286, 14.119575922665348 ], [ -64.5610010467612, 14.109910590673937 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "288e964d1cb54b42889f9ef5f8ac04e9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -8.833333, 125.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "28acf190ef674be28cd6e68fb3dc2e9d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, -4 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "28afb72c7cc544969a1439158da0ab47": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47.333333, 13.333332999999998 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "28bb1b58217446ae871e1d8c1a602677": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49, 32 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "28c0acb693c342359df7c75ffc445c68": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, -86.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2915499908074f64b8b564bc67174145": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.837857127346986, 10.063095212244974 ], [ -62.166666666666664, 7.277777777777779 ], [ -65.17391304347827, 0.2608695652173916 ], [ -70.35285300194789, 8.029279502921838 ], [ -68.49967821943429, 9.363565239588775 ], [ -64.96977329998248, 11.254585732152242 ], [ -63.837857127346986, 10.063095212244974 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "291eeabb3bcd4796a070ea320501df5c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 37, 127.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "29614acd5ef44171a4bc089d1a36d0ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4, -72 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "29663c4e13cd4de591e3816563352655": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.785714285714285, 28.785714285714285 ], [ 54.46341463414634, 28.120426829268293 ], [ 52.76086956521739, 28.578804347826086 ], [ 51.07425742574257, 29.281559405940595 ], [ 48.697072072072075, 34.273648648648646 ], [ 48.813380281690144, 35.320422535211264 ], [ 53.67874396135266, 38.468599033816425 ], [ 59.427835051546396, 33.43814432989691 ], [ 59.785714285714285, 28.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "296bf9f9994c4069a9cf94668514fd34": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.5610010467612, 14.109910590673937 ], [ -60.41333519149932, 12.107586332163239 ], [ -63.837857127346986, 10.063095212244974 ], [ -64.96977329998248, 11.254585732152242 ], [ -64.93390814958786, 14.087943803298156 ], [ -64.65910396060286, 14.119575922665348 ], [ -64.5610010467612, 14.109910590673937 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "297d82b541ea44178dfaa4a7b21f69bf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 135.85460258979867, 80.17871349622823 ], [ 120.47841726618705, 59.42086330935252 ], [ 89.20786516853933, 48.252808988764045 ], [ 83.18181818181819, 56.18181818181818 ], [ 74.18298243891442, 80.17871349622823 ], [ 135.85460258979867, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "29838381b7494a7d872a2c5376c95734": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12, 96.833333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2992499f9a8b4267bf89a181a9714c82": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.25, -77.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2a035747c2574b81af94a19230f8dde4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -20, -175 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2a5a776fcaa2417c811cdfceccf8973f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.248288199999998, -66.4998941 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2a626d6ec2894db0910a6c97d6ca8d67": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46.25, 15.166667000000002 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2a9be48af54343798bccc9090386db09": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25, 17 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2a9d176fcd414a56bb5f174b66e12889": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -99.8688999707149, 13.38455671254664 ], [ -137.88294597575836, 34.957403696829424 ], [ -139.12252343571157, 39.30724891155245 ], [ -91.2714425982777, 29.581023577881815 ], [ -94.96832023575638, 21.06213163064833 ], [ -99.8688999707149, 13.38455671254664 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2aae3894c65a49d5919c7f34dfd047ef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15.5, -61.333332999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2b467ed81e6f40eeb63cc5118d1a5f15": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.9, -62.833332999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2b8c24bce5484f26931350aa61a9a009": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31.666666999999997, 35.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2c2d453f44a04332916028aabb849c2c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -30.056053811659194, -8.260089686098656 ], [ -29.84176950998185, -8.76394736842105 ], [ -31.471574816464322, -22.26804847927582 ], [ -58.17263266123864, -16.110524769659087 ], [ -65.5, -5.642857142857143 ], [ -65.5, -5.428571428571429 ], [ -64.80150753768844, -4.580402010050252 ], [ -60.109756097560975, -3.3292682926829267 ], [ -54.5, -2.928571428571428 ], [ -31.80890052356021, -6.170157068062828 ], [ -30.056053811659194, -8.260089686098656 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2c2e00d922874a6c97567d1628b9a5d4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 17.598525373166268, 50.65605472629718 ], [ 15.514705882352942, 55.286764705882355 ], [ 15.875, 56.1875 ], [ 18.5, 57.5 ], [ 24.07142857142857, 51.92857142857143 ], [ 24.254716981132077, 50.4622641509434 ], [ 23.436440791223777, 49.780367326019814 ], [ 17.598525373166268, 50.65605472629718 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2c5cdbe2c10341fcac1238f0cedb3018": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 55.63994231646179, -18.34051752486328 ], [ 64.00997065428118, -12.361926664125068 ], [ 77.06366145593447, -25.522116412964117 ], [ 61.19240924770094, -32.10600614503239 ], [ 55.63994231646179, -18.34051752486328 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2c730aff7b0b4e0db367aa30f73c1182": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46.833333, -56.333332999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2ca52cf1efe7456b90c1e73bc1e7598a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31.425074, 34.373398 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2cb90ff8ecf64c5abc21d3274cfcf2db": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 8.739950250369214, 49.618139552727044 ], [ 8.006109329101175, 51.435269313230584 ], [ 8.451347305389222, 53.5501497005988 ], [ 14.133064516129032, 54.181451612903224 ], [ 12.410750188456655, 49.75264334174569 ], [ 11.35505392604767, 49.03477002519314 ], [ 8.739950250369214, 49.618139552727044 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2d5a35e94aea4c70a8c4dafaefa8156b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -3.5, 30 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2d975fe2770f4ab684aa5778ed740cce": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.833333, 45.166667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2dd0b1d1d211488f8f4b3bf927bc2fb5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.075, -63.058330000000005 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2e226be12a634b358db8d15f0e58480a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 171.9015748031496, -20.291338582677167 ], [ 172.7463506798477, -23.30839528517029 ], [ 155.66712482070056, -28.862922524960464 ], [ 159.0021865889213, -16.77332361516035 ], [ 171.9015748031496, -20.291338582677167 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2e62bff43c9940aca4f805584eb44d9b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 7, 21 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "2ecaf98003304b62904954aa792718df": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, -66 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "2f8a72500f5e402fbb83bd94ea3237e5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 147.83771399862843, 80.17871349622823 ], [ 133.03225806451613, 39.46370967741935 ], [ 116.19160583941606, 36.65693430656934 ], [ 115.31818181818181, 40.5 ], [ 120.47841726618705, 59.42086330935252 ], [ 135.85460258979867, 80.17871349622823 ], [ 147.83771399862843, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "2ffe5413eccc4f158d3c942a914b5a70": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 28, 84 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "30605473ef264ad288fee052f6d42a0f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 91.2237241126437, -0.5774520299382842 ], [ 100.23524681685709, -5.2742308038236665 ], [ 106.95096820648595, -44.8223708608476 ], [ 106.81273702950035, -45.22820342246508 ], [ 90.46140165378344, -35.72315900772993 ], [ 80.31847569141645, -25.961956174515734 ], [ 85.24859930655916, -5.556722596848646 ], [ 91.2237241126437, -0.5774520299382842 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "31234a65654a43bc9a163d37c94c6898": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "width": "100%" } }, "318344e020b84af6a9361db3ae171951": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -34, -64 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "318a1b7f35724da4aeaf0ced4f931471": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.166667, -69 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "31a41e18c2d54b39a3ade4c67f0adfa2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 56.33064516129032, 11.201612903225806 ], [ 51.88333333333333, 18.883333333333333 ], [ 60.64285714285714, 27.642857142857142 ], [ 63.5, 25.5 ], [ 66.99740932642487, 20.44818652849741 ], [ 66.65435294117647, 13.58705882352941 ], [ 60.930284857571216, 8.441829085457272 ], [ 56.33064516129032, 11.201612903225806 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "31bd3cd3f8a54c31aadf8d9d7f7a0d16": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, 121 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "323570f9e8ef49a6ad386ef96b5c1a19": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 5.446735306940168, 6.050043970188057 ], [ 5.544117867770639, 5.717320236914374 ], [ -0.41666649999999983, 0.7500002142857154 ], [ -0.41666649999999983, 10.28472175 ], [ 5.446735306940168, 6.050043970188057 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "32eefb20ae824b8295511748a4632ac2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 77.59756097560975, 33.1829268292683 ], [ 76.75396825396825, 27.27777777777778 ], [ 66.99740932642487, 20.44818652849741 ], [ 63.5, 25.5 ], [ 70.26923076923077, 34.52564102564102 ], [ 76.05882352941177, 33.88235294117647 ], [ 77.59756097560975, 33.1829268292683 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3335eaf1f4474e34b1b339f5b8683d60": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8.5, -11.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "334af036dc3c4900a6b6032aeb260ac5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 57, 25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "3351961a6e8845f4b1e7646cb5c3032e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 56.33064516129032, 11.201612903225806 ], [ 51.88333333333333, 18.883333333333333 ], [ 60.64285714285714, 27.642857142857142 ], [ 63.5, 25.5 ], [ 66.99740932642487, 20.44818652849741 ], [ 66.65435294117647, 13.58705882352941 ], [ 60.930284857571216, 8.441829085457272 ], [ 56.33064516129032, 11.201612903225806 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3360fc5ecb6344beb2082eb4a2d62be8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.444444400000002, 144.7366667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "33e1306a09ce4f33b46937c207cf2d20": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 20, 77 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "341cc1841d9e4319b503a4ce9c3677db": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -75.2702312299441, 20.738973364333244 ], [ -74.3580646864007, 14.556511641279737 ], [ -75.69854867196685, 12.800283424855905 ], [ -80.10666666666667, 13.991666666666667 ], [ -80.68489583210638, 14.817708331580544 ], [ -78.61388916259259, 20.064259113283956 ], [ -76.66605839416059, 21.103102189781023 ], [ -75.2702312299441, 20.738973364333244 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3427ba5b5642490a9e4946d0c60379c2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.375, -7.7771739130434785 ], [ 20.51054852320675, -5.60548523206751 ], [ 23.65615835777126, -7.241202346041056 ], [ 25.22826086956522, -9.25 ], [ 23.850515463917525, -15.587628865979381 ], [ 23.69921875, -15.83203125 ], [ 20.5, -17.684210526315788 ], [ 6.579811436199801, -15.486286016242074 ], [ 6.09034795042898, -12.052947942139513 ], [ 13.375, -7.7771739130434785 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "34c65218f30c47118b32135228a45bdf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 32.425, -22.025 ], [ 28.25, -23.416666666666668 ], [ 23.69921875, -15.83203125 ], [ 23.850515463917525, -15.587628865979381 ], [ 31.870967741935484, -17.592741935483872 ], [ 32.425, -22.025 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "34ca612fe7c541fda817188835710ff3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 121.6864972265454, -8.699420815204025 ], [ 132.26621549659933, -15.834579305184665 ], [ 111.98520643877718, -34.63816489745933 ], [ 114.44628468733671, -11.953448451062306 ], [ 121.6864972265454, -8.699420815204025 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "351921f75b7942ef89e1afbffecd855f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.77976194285714, -9.66666665 ], [ -170.4724227238813, -11.534570980447954 ], [ -173.89861949850788, -11.229044937590686 ], [ -183.1922749391728, -1.611192214111906 ], [ -164.77976194285714, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3541ad82714146e6836a1b4f9d216362": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -2, -77.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "355ac6d55ee04e939a70ce7387fb9f4e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -276.328125, 67.96016566265047 ], [ -183.1922749391728, -1.611192214111906 ], [ -173.89861949850788, -11.229044937590686 ], [ -174.55330595078996, -16.462532409096713 ], [ -276.328125, -34.69085820895506 ], [ -276.328125, 67.96016566265047 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "356940a213fe4a7799477d4d3968ac78": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 16.024059880778594, 39.76433566653155 ], [ 16.061115007012624, 40.07518700327256 ], [ 20.176757075876065, 41.99581996874216 ], [ 20.966517910395396, 41.49702354719387 ], [ 21.4166665, 40.416666500000005 ], [ 18.286632681794458, 37.28663268179446 ], [ 16.024059880778594, 39.76433566653155 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "35c13a99dd6642289cc7ff2dc8a71c0a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 25, 12 ], [ 34, 12 ], [ 34, 6.25 ], [ 28.38888888888889, 3.4444444444444446 ], [ 25.76865671641791, 5.082089552238806 ], [ 25, 12 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3601fdf377bc4702a16161e0e9234515": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 11.5, 42.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "364e8f473c90475f923394bab41a089c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 14.666667000000002, -61 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3665c8f0263c4fce901c7d53692da738": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 38.79846944876572, -10.32312925983543 ], [ 39.181008727923356, -13.263900703552599 ], [ 38.455000434916215, -15.042368329491323 ], [ 32.74771341463415, -16.24390243902439 ], [ 30.125, -9.25 ], [ 30.28125, -9.1875 ], [ 38.79846944876572, -10.32312925983543 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3688fbceff534db381f187e4d715eb62": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.980516452919288, 40.99535382917147 ], [ 16.061115007012624, 40.07518700327256 ], [ 16.024059880778594, 39.76433566653155 ], [ 10.649727809605306, 37.98287203251414 ], [ 8.509475489529102, 38.91753918495248 ], [ 9.946503615816958, 42.875899197974476 ], [ 11.345937796438811, 42.89884051626453 ], [ 15.980516452919288, 40.99535382917147 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "36e134de9d854c169caa4ab245a236b0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.258995793806164, 17.24532772507489 ], [ -65.21347445472163, 14.459674824410085 ], [ -65.34108922815484, 14.596404947681389 ], [ -64.27605747470798, 16.940080566962568 ], [ -64.1469281096143, 17.133774559261973 ], [ -63.201638847461005, 17.556376725527574 ], [ -62.11873122840681, 17.71562711529553 ], [ -62.258995793806164, 17.24532772507489 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3722236fe9634f9e824c7fe7be93902b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 2.08695652173913, 17.543478260869566 ], [ -6.333333333333333, 13.333333333333334 ], [ -8.954545454545455, 15.954545454545455 ], [ -5.782051282051282, 24.414529914529915 ], [ -3.7241379310344827, 24.551724137931036 ], [ 2.3489208633093526, 20.68705035971223 ], [ 2.08695652173913, 17.543478260869566 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "373b178c8384412999f5105edb48dd0c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 171.9015748031496, -20.291338582677167 ], [ 172.7463506798477, -23.30839528517029 ], [ 155.66712482070056, -28.862922524960464 ], [ 159.0021865889213, -16.77332361516035 ], [ 171.9015748031496, -20.291338582677167 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "375abc79acf540ccb546e9c873ed0c36": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.77976194285714, -9.66666665 ], [ -183.1922749391728, -1.611192214111906 ], [ -276.328125, 67.96016566265047 ], [ -276.328125, 80.17871349622823 ], [ -275.48308134938577, 80.17871349622823 ], [ -158.5306729184465, -5.027678508745646 ], [ -164.6394390550387, -9.66666665 ], [ -164.77976194285714, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "37d122c3ee5a40d5b6ca5e965e38b65c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -17, -65 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "37f2e265e9814e7a85d6f7d22d93b1ee": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -74.65869104893386, 21.177243786621233 ], [ -75.2702312299441, 20.738973364333244 ], [ -76.66605839416059, 21.103102189781023 ], [ -84.84039352023821, 35.40818866041687 ], [ -80.41518568686232, 41.72091771943416 ], [ -70.78653937242228, 28.7222446749932 ], [ -74.65869104893386, 21.177243786621233 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "37fe5e982cb14403836735c56a1928b6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22.157778, 113.559722 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "38040d2dadd2428ebfbff494359d951f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, 38 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "391ab1cfe94c4bfeb64057e26679eac8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 8.978791652479575, 45.13178642453233 ], [ 9.878864326017766, 44.57251816316969 ], [ 9.946503615816958, 42.875899197974476 ], [ 8.509475489529102, 38.91753918495248 ], [ 5.433482724099076, 38.41189652126389 ], [ 4.288907385560957, 43.88729894491986 ], [ 5.109590680277008, 45.842455918337954 ], [ 8.978791652479575, 45.13178642453233 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "393e21d2185e4d0cbe808ab4099e4e2c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25, 17 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "393ed1cef272424a886ff9f2a6dd9361": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.991948760672756, 41.21714083280807 ], [ 15.980516452919288, 40.99535382917147 ], [ 11.345937796438811, 42.89884051626453 ], [ 14.18815861380963, 43.97543758816509 ], [ 15.699970183868817, 42.247653214348475 ], [ 15.991948760672756, 41.21714083280807 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "39431a553e004dc3bc0c7b4169e12811": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -10, -55 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "396b7d4cae484a5cae0b8f94a0b03a84": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 203.76367416903219, 80.17871349622823 ], [ 162.56451612903226, 34.225806451612904 ], [ 134.454128440367, 22.98165137614679 ], [ 131.8181818181818, 26.715909090909093 ], [ 133.03225806451613, 39.46370967741935 ], [ 147.83771399862843, 80.17871349622823 ], [ 203.76367416903219, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "39c9b3145d6b4216805a33073934ebba": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 23.982142857142858, 21.196428571428573 ], [ 24.8, 12.2 ], [ 16.10810810810811, 10.027027027027026 ], [ 13.8125, 11.8125 ], [ 13.272727272727273, 13 ], [ 13.833333333333334, 19.166666666666668 ], [ 23.982142857142858, 21.196428571428573 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3afdb0ef456d44519ae6ca6fef133938": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40.5, 47.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3b6d2081944d41d2a2b86e6432c1bfd4": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "VBoxModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "children": [ "IPY_MODEL_6f7c6a5925f14dc389180e6b555b6adf", "IPY_MODEL_d11e854ccf7e4b29a5dd206453b95c45" ], "layout": "IPY_MODEL_af7c143dbd07462db7a3f8c45a40ac38" } }, "3b73994d3f57459e8023eeb778092c6b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 2, 33 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3bc50452e4b04be1bb1969635bd177a8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 276.328125, -46.72135416666667 ], [ 181.0092522949306, -30.834875382488434 ], [ 172.7463506798477, -23.30839528517029 ], [ 171.9015748031496, -20.291338582677167 ], [ 173.22727272727272, -13 ], [ 276.328125, -13 ], [ 276.328125, -46.72135416666667 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3beb18a1e1064f27b59ce86bd799f610": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -60.31626137783151, 12.116905419766404 ], [ -56.136801956994475, 9.287732681001842 ], [ -62.166666666666664, 7.277777777777779 ], [ -63.837857127346986, 10.063095212244974 ], [ -60.41333519149932, 12.107586332163239 ], [ -60.31626137783151, 12.116905419766404 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3bede27be82446cca4293a7e5a34e350": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -42, 174 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "3c385ea564844bbbb285a6480f393ce4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -10, -76 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3c702b93b6a74c239d912f6ca832fcf6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 9.5, 2.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3c82ef251e23474997212ebb6a8f5dcd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 47.22222222222222, 10.722222222222221 ], [ 56.33064516129032, 11.201612903225806 ], [ 60.930284857571216, 8.441829085457272 ], [ 60.79089492561899, 7.197276121598136 ], [ 47.089672949612705, -2.728019282328227 ], [ 46.09506471289707, -2.690129425794141 ], [ 42.5, 4.5 ], [ 42.875, 6.375 ], [ 47.22222222222222, 10.722222222222221 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3cba8ead8c1c43b987a7b0921adb9646": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 2.5, 112.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "3cc48d9df0be427cb53db6e9de33cf52": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -110.34629822105572, -80.17871349622823 ], [ -103.40402681867948, -61.72380573934753 ], [ -75.94969531226228, -46.786966796458984 ], [ -58.918818576811546, -42.149451385507646 ], [ -44.57240199636398, -44.57240199636398 ], [ -50.35559264400829, -80.17871349622823 ], [ -110.34629822105572, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3ccaf38ba1ce49149dc8b90c0b2df71d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -75.69854867196685, 12.800283424855905 ], [ -74.39601999494, 9.066368008095981 ], [ -77.73013245033113, 3.7317880794701983 ], [ -83.78614457831326, 2.355421686746988 ], [ -81.22727272727273, 12.59090909090909 ], [ -80.10666666666667, 13.991666666666667 ], [ -75.69854867196685, 12.800283424855905 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3cd31aba839b4528b3d0a8d218f32f94": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 48, 68 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3cd7f240917a4828abffab3c303d32d1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 47.0735294117647, 36.13235294117647 ], [ 45.85867582567887, 42.20662087160565 ], [ 52.256029642258895, 59.26685231115903 ], [ 54.28846153846154, 53.71153846153846 ], [ 53.67874396135266, 38.468599033816425 ], [ 48.813380281690144, 35.320422535211264 ], [ 47.0735294117647, 36.13235294117647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3d33032efac84ec995ffee24a7fcf9df": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6, 48 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "3d860799c1684a649fec270fbba4e984": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, -66 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "3dc0564c363e41d2a3e100b15c21d939": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, 122 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "3dd7b24d57154945ac5cb7112daf0db4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35.916667, 14.433333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "3ec87e830b8d43cdb11b2893c1d6f6a9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -121.2433711294087, -6.455291649717887 ], [ -103.16004951275413, -17.138177846795568 ], [ -100.48428378448884, -26.74607094612221 ], [ -103.40402681867948, -61.72380573934753 ], [ -110.34629822105572, -80.17871349622823 ], [ -158.8025273115672, -80.17871349622823 ], [ -154.2081680570249, -49.89655862899381 ], [ -149.8363327938139, -34.574858977971786 ], [ -121.2433711294087, -6.455291649717887 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3ef86be419f24b31bc3b85fd8c040345": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -54.20284766716669, 26.442779911051 ], [ -60.41447873621172, 19.787462810021925 ], [ -62.832805212340695, 18.132817575111325 ], [ -63.52215011315157, 18.173350959906372 ], [ -63.80586497026158, 18.200377289889307 ], [ -62.38788707102656, 25.457096252702648 ], [ -54.20284766716669, 26.442779911051 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3f044c6e8ab9495eae6191c62242f9cc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.966517910395396, 41.49702354719387 ], [ 22.312500125, 43.291666500000005 ], [ 23.030797023629496, 43.623188094517985 ], [ 24.277777999999998, 40.416666500000005 ], [ 21.4166665, 40.416666500000005 ], [ 20.966517910395396, 41.49702354719387 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3f4eff4d0e1a49f992e4f485f9e993d3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 2.08695652173913, 17.543478260869566 ], [ -6.333333333333333, 13.333333333333334 ], [ -8.954545454545455, 15.954545454545455 ], [ -5.782051282051282, 24.414529914529915 ], [ -3.7241379310344827, 24.551724137931036 ], [ 2.3489208633093526, 20.68705035971223 ], [ 2.08695652173913, 17.543478260869566 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "3f63d7e0b83f47e29445c4f3aa6fd34a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 107.5078536394889, 6.86275259963493 ], [ 108.91113314687364, -3.9094844341823056 ], [ 100.23524681685709, -5.2742308038236665 ], [ 91.2237241126437, -0.5774520299382842 ], [ 92.75877380995436, 5.635412201358397 ], [ 99.9566685702624, 7.641671425655971 ], [ 107.5078536394889, 6.86275259963493 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "40cd206dad284e66bb5e57badc5d8685": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -42.56209202800486, 28.689686991825027 ], [ -54.20284766716669, 26.442779911051 ], [ -62.38788707102656, 25.457096252702648 ], [ -65.63066875028943, 25.398491763111043 ], [ -70.78653937242228, 28.7222446749932 ], [ -80.41518568686232, 41.72091771943416 ], [ -79.1149149258917, 47.5899553466791 ], [ -77.4924368400039, 49.42257364450274 ], [ -42.41341796816169, 29.060613607881244 ], [ -42.56209202800486, 28.689686991825027 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "40eac9865db64f2d86cd9206b0dc8819": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, 45 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "4111696ce6684650b2e6a37a8c9f6fa5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 32, 53 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4144c9e5fffd4539b8b10d7ba42160eb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -21.5, 165.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "418c20101e034b8ea37bed23e15076d0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.60112571034901, 31.606740817732497 ], [ 18.286632681794458, 37.28663268179446 ], [ 21.4166665, 40.416666500000005 ], [ 24.277777999999998, 40.416666500000005 ], [ 27.785714285714285, 37.785714285714285 ], [ 26.06, 33.04 ], [ 22.75581395348837, 30.837209302325583 ], [ 20.60112571034901, 31.606740817732497 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "41ff01773f5047b7ad19dab8d080d1b7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.22, 49.62 ], [ 27.5, 44.5 ], [ 23.25, 44.5 ], [ 22.428571428571427, 46.142857142857146 ], [ 22.959219852648264, 48.796099263241324 ], [ 23.436440791223777, 49.780367326019814 ], [ 24.254716981132077, 50.4622641509434 ], [ 26.22, 49.62 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "42427007482f41f6842b38c39a90ef8b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.746604200046136, 15.445576266651287 ], [ -61.79209951287454, 16.62279935049939 ], [ -54.851649017960085, 18.502507584726434 ], [ -56.1344214183599, 17.649637193880032 ], [ -62.746604200046136, 15.445576266651287 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "42557d1db942410282046b38a5e71c9b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.10678997556401, -23.162729080542306 ], [ 36.08748872777859, -24.744708810801882 ], [ 45.04285705214008, -43.801731796910744 ], [ 44.84806791569086, -44.22082357533177 ], [ 27.223484848484848, -25.127525252525253 ], [ 28.25, -23.416666666666668 ], [ 32.425, -22.025 ], [ 35.10678997556401, -23.162729080542306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "426c65378cd54083ba62f304e0149747": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -2, 30 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4278aa40682241eeb155fdcb39969863": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -26.5, 31.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "429f2cc47afa4497ac73629b941227b9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 33.833333, 35.833333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "431ff9326a834c7980095dfcd3568db2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 5, -59 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "436e0965e499434596c5ce56268db374": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46.25, 15.166667000000002 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "4388839643a34fc0bfa50458ab39b7c8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.2, -68.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "43952b7de8a343b5ac76ff7251392362": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -42.09370555292632, 18.684788419571937 ], [ -31.80890052356021, -6.170157068062828 ], [ -54.5, -2.928571428571428 ], [ -54.5, 9.8424847863339 ], [ -42.09370555292632, 18.684788419571937 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "445eced5e0724a65b9e2ebafc42f85ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -14.5, 13 ], [ -20.891304347826086, 10.869565217391305 ], [ -18.421875, 19.265625 ], [ -16.1875, 18.0625 ], [ -14.5, 13 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4486ab5252f847d0976b94dbe503f87f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17, -4 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "44b9bf39eca5453eb075e0dd4fd5c7d7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 27.223484848484848, -25.127525252525253 ], [ 44.84806791569086, -44.22082357533177 ], [ 37.950805199997426, -64.0185221111185 ], [ 33.826857172836064, -59.90835727776229 ], [ 26.223684210526315, -25.69407894736842 ], [ 27.223484848484848, -25.127525252525253 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "44fec06a0b824cffb9c8aa1ac101e732": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -61.79209951287454, 16.62279935049939 ], [ -62.258995793806164, 17.24532772507489 ], [ -62.11873122840681, 17.71562711529553 ], [ -60.41447873621172, 19.787462810021925 ], [ -54.20284766716669, 26.442779911051 ], [ -42.56209202800486, 28.689686991825027 ], [ -42.647190508937754, 25.626141678240977 ], [ -54.851649017960085, 18.502507584726434 ], [ -61.79209951287454, 16.62279935049939 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4502a88df0ca4601b95cf875b17a7e76": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 17.574404945535726, 46.68253956924598 ], [ 17.500549257893905, 47.158498412335184 ], [ 22.959219852648264, 48.796099263241324 ], [ 22.428571428571427, 46.142857142857146 ], [ 19.498873693815437, 45.16629123127181 ], [ 17.574404945535726, 46.68253956924598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "453c208986e04831a0f3b7e66db73cd8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 29.5, 47.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "45680a2cd7054808898156e4d5b0a509": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -11.5, 47.333333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "458831147bb241f1ad479dbc7e252c97": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.842391304347826, 13 ], [ 13.272727272727273, 13 ], [ 13.8125, 11.8125 ], [ 7.666666666666667, 5.666666666666667 ], [ 7.153846153846153, 5.538461538461538 ], [ 5.544117867770639, 5.717320236914374 ], [ 5.446735306940168, 6.050043970188057 ], [ 4.842391304347826, 13 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "45e9b73fe15647f69653f1daede9875f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -54.433333, 3.4 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "45ead647dce14bbe98fdb801bcfdfd3a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 24.192307692307693, 21.5 ], [ 35.166666666666664, 21.5 ], [ 34.125, 12.125 ], [ 34, 12 ], [ 25, 12 ], [ 24.8, 12.2 ], [ 23.982142857142858, 21.196428571428573 ], [ 24.192307692307693, 21.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "45fb228ef174479bbf285c82f4a23f30": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -50.35559264400829, -80.17871349622823 ], [ -44.57240199636398, -44.57240199636398 ], [ -29.236135857461026, -29.236135857461026 ], [ -15.515674418943778, -38.5886601339035 ], [ -13.725625953806592, -80.17871349622823 ], [ -50.35559264400829, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "461256b249ff4b769377ada41b485a27": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 111.1996365700621, 10.303834917572708 ], [ 105.39215665397926, 15.5 ], [ 108.88327097592021, 20.89535884377141 ], [ 114.94192105365104, 15.104415033855883 ], [ 115.01592231071581, 15.027372616909282 ], [ 114.37592643202974, 12.164233393644647 ], [ 111.1996365700621, 10.303834917572708 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4657418ba2fd4f898ee7f544de830b3a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -20.3, 57.583332999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "468272e39f684e35972d50783f47aa71": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 109.29856561911754, 8.141832585083955 ], [ 117.14333313520004, -0.3566668647999647 ], [ 111.97829142260433, -5.521708577395669 ], [ 108.91113314687364, -3.9094844341823056 ], [ 107.5078536394889, 6.86275259963493 ], [ 109.29856561911754, 8.141832585083955 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "46c0101e110844bf94cc21ac1df2c191": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, 105 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "46f0318dc62b4ac4abd6a21ed33fe748": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 37, 127.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "471f875fbd634e94b2e549bb6be4c84c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 47.0735294117647, 36.13235294117647 ], [ 45.85867582567887, 42.20662087160565 ], [ 52.256029642258895, 59.26685231115903 ], [ 54.28846153846154, 53.71153846153846 ], [ 53.67874396135266, 38.468599033816425 ], [ 48.813380281690144, 35.320422535211264 ], [ 47.0735294117647, 36.13235294117647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "474897d27a3a45bdaba2b21965b05f85": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4, -53 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "47b592f3dbff4258b68a09a0144c9a02": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31.5, 34.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "47c367113c9745b4b94a02a4188a4c7d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47.166667, 9.533333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "47f0b6e210da4d8d99e5b1d6b3640e1b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -75.69854867196685, 12.800283424855905 ], [ -74.39601999494, 9.066368008095981 ], [ -77.73013245033113, 3.7317880794701983 ], [ -83.78614457831326, 2.355421686746988 ], [ -81.22727272727273, 12.59090909090909 ], [ -80.10666666666667, 13.991666666666667 ], [ -75.69854867196685, 12.800283424855905 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "482c67f9f3fb412489078ff2af40a29b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 136.03155345278148, -4.840817092820053 ], [ 127.44330573591718, -0.06420730025821975 ], [ 124.56086956521739, 3.604347826086956 ], [ 133.2646743878651, 18.52515609348306 ], [ 142.94776792786263, 4.55982270152751 ], [ 142.83497536945814, 2.529556650246306 ], [ 136.03155345278148, -4.840817092820053 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "48851eb14a3c4caaa20d1d113833007b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.5, 18.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "48a50e94ce0f4c45b411a4edec7f280c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46.833333, -56.333332999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "48b490208c734467b57e55b88a115199": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -30, 26 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "48ea681dffcf49c7a2ffe57390f3e69f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.486991450447825, -15.801777397259722 ], [ 45.65451341086134, -11.199000848476553 ], [ 44.131721455719834, -4.156092338797324 ], [ 46.09506471289707, -2.690129425794141 ], [ 47.089672949612705, -2.728019282328227 ], [ 53.137036401771624, -10.013999576917119 ], [ 49.543500258193944, -15.843209073778832 ], [ 48.486991450447825, -15.801777397259722 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "49f0436b254a4cce99a3ad3f798796da": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 203.76367416903219, 80.17871349622823 ], [ 162.56451612903226, 34.225806451612904 ], [ 134.454128440367, 22.98165137614679 ], [ 131.8181818181818, 26.715909090909093 ], [ 133.03225806451613, 39.46370967741935 ], [ 147.83771399862843, 80.17871349622823 ], [ 203.76367416903219, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4a479d80c0d04ef89583f9e6e3982c33": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 19, -70.666667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4ac6038978b64493ace0e439de59674c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -167.72824170203305, 80.17871349622823 ], [ -148.27975412727093, 56.43450474763602 ], [ -139.12252343571157, 39.30724891155245 ], [ -137.88294597575836, 34.957403696829424 ], [ -135.92231409107774, 11.416829453819545 ], [ -151.32744754011327, -4.867256504318824 ], [ -158.5306729184465, -5.027678508745646 ], [ -275.48308134938577, 80.17871349622823 ], [ -167.72824170203305, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4ad8b5c4a5154a64bf791abba91ede62": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 65, -18 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4aece727f1224637993fd664c0512dae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 27.5, 90.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4b269d48f3af4027a74690f28a32088e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16.25, -61.583332999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4b8c211e08864e2aa66b9ccc44f356f9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -121.2433711294087, -6.455291649717887 ], [ -149.8363327938139, -34.574858977971786 ], [ -151.32744754011327, -4.867256504318824 ], [ -135.92231409107774, 11.416829453819545 ], [ -121.2433711294087, -6.455291649717887 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4bba2936de04476c957df44870de8d59": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "description": "Voronoi cells", "icon": "check", "layout": "IPY_MODEL_1b4706bac77643828c8a98376b93f2d4", "style": "IPY_MODEL_270a8d25a77c490ba6a30c1f0cfd10ef", "tooltip": "Display proximity cells" } }, "4c33a0fb56c34702aff07edb69f5d4d6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.8, -2.75 ], [ 33.5, -2.75 ], [ 30.28125, -9.1875 ], [ 30.125, -9.25 ], [ 25.22826086956522, -9.25 ], [ 23.65615835777126, -7.241202346041056 ], [ 26.8, -2.75 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4d02e48ad9494fb0a862ca406edd2fad": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6, 48 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "4d2205f5a2844d18872096177ed8ff44": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -74.65869104893386, 21.177243786621233 ], [ -71.541667, 20.226930700438803 ], [ -71.541667, 15.618076923076922 ], [ -74.3580646864007, 14.556511641279737 ], [ -75.2702312299441, 20.738973364333244 ], [ -74.65869104893386, 21.177243786621233 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4d9084eaa6c04f429ab756af14ef5950": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -55.89891052069112, 9.303268437926665 ], [ -54.5, 9.8424847863339 ], [ -54.5, -2.928571428571428 ], [ -60.109756097560975, -3.3292682926829267 ], [ -55.89891052069112, 9.303268437926665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4df927a93e0b49e59fd31b661b055b89": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.75, 15 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "4e1bf46f560f4fa49a21c74b321aeaf2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 29.69216779614482, 31.677937076445694 ], [ 33.964848739597294, 33.31939523876171 ], [ 34.223463239385296, 33.16261793210657 ], [ 34.86009047264048, 29.962726181601205 ], [ 34.15554367635024, 27.26668448547464 ], [ 29.69216779614482, 31.677937076445694 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4e49343462324e168c69c6af9a86955f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 137.1265963517219, -13.05363980108751 ], [ 136.03155345278148, -4.840817092820053 ], [ 142.83497536945814, 2.529556650246306 ], [ 153.7605633802817, -2.436619718309859 ], [ 152.40576923076924, -10.565384615384616 ], [ 140.01226635514018, -14.876168224299064 ], [ 137.1265963517219, -13.05363980108751 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4e5208e087254981a4b0076e5e527830": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.6394390550387, -9.66666665 ], [ -158.5306729184465, -5.027678508745646 ], [ -151.32744754011327, -4.867256504318824 ], [ -149.8363327938139, -34.574858977971786 ], [ -154.2081680570249, -49.89655862899381 ], [ -166.0755949388039, -16.573894024806027 ], [ -164.6394390550387, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4e985d340fa348d8ab7e59255d72de87": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 2.08695652173913, 17.543478260869566 ], [ 2.946989528795812, 14.676701570680628 ], [ -0.49264705882352944, 10.5 ], [ -3.5, 10.5 ], [ -6, 12 ], [ -6.333333333333333, 13.333333333333334 ], [ 2.08695652173913, 17.543478260869566 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4eafe8fc03c947d0afac428a3541a710": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 53, -8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "4eb9d79faa004603a7f89d9462af562c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 92.75877380995436, 5.635412201358397 ], [ 91.2237241126437, -0.5774520299382842 ], [ 85.24859930655916, -5.556722596848646 ], [ 80.50057306590259, -2.269627507163321 ], [ 73.77382550335571, 11.891946308724833 ], [ 85.5, 15.5 ], [ 89.49601593625498, 13.384462151394423 ], [ 92.75877380995436, 5.635412201358397 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4ef582ef24fc4fa3ab0c188906c48a6e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.242939754786114, 36.42332930935598 ], [ 29.247033738409375, 39.24703373840938 ], [ 30.24445688154456, 41.75554311845544 ], [ 33.19743739745738, 43.95384390381393 ], [ 37.59232331103404, 45.24103110312757 ], [ 39.58810318261007, 39.41285881635107 ], [ 35.784698164470235, 36.51889313162434 ], [ 35.242939754786114, 36.42332930935598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4f04c43dcdc049649bdba6b7bc57a681": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 91.2237241126437, -0.5774520299382842 ], [ 100.23524681685709, -5.2742308038236665 ], [ 106.95096820648595, -44.8223708608476 ], [ 106.81273702950035, -45.22820342246508 ], [ 90.46140165378344, -35.72315900772993 ], [ 80.31847569141645, -25.961956174515734 ], [ 85.24859930655916, -5.556722596848646 ], [ 91.2237241126437, -0.5774520299382842 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4f49f44bc86443c5b05e7caa8faf9886": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 166.73211465335726, -8.267885346642737 ], [ 158.71578172054782, 0.23157477260266646 ], [ 160.40494007960388, 4.785179761188357 ], [ 178.46018972151518, 4.642338163148159 ], [ 169.77381595324982, -8.251496935718524 ], [ 166.73211465335726, -8.267885346642737 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4f5a4e19919e421bb6bbe1b0403c4f6a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.697072072072075, 34.273648648648646 ], [ 51.07425742574257, 29.281559405940595 ], [ 47.56392045454545, 26.5234375 ], [ 43.679245283018865, 28.89740566037736 ], [ 48.697072072072075, 34.273648648648646 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4f63a3d525ef44f8947f89a008dddc4b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 18.5, 57.5 ], [ 15.875, 56.1875 ], [ 12.5, 59 ], [ 12.5, 71.5625 ], [ 19.33132530120482, 69.42771084337349 ], [ 20.772727272727273, 61.5 ], [ 20.5, 60.5 ], [ 18.5, 57.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4f7033190cc8459f8982f0aeb0535aa9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -68.08499191735669, 21.386180788630142 ], [ -69.07772341198282, 15.88342469409416 ], [ -71.541667, 15.618076923076922 ], [ -71.541667, 20.226930700438803 ], [ -68.08499191735669, 21.386180788630142 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4f92e13ece2e417fb1996c2fb0477ca1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.10678997556401, -23.162729080542306 ], [ 38.85085760731817, -17.60574507520024 ], [ 42.46443664721574, -20.106922813931277 ], [ 36.08748872777859, -24.744708810801882 ], [ 35.10678997556401, -23.162729080542306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4fb33b3a16354055b8ca4f22b1e2e899": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.242939754786114, 36.42332930935598 ], [ 35.784698164470235, 36.51889313162434 ], [ 37.92982439335175, 32.535087803324124 ], [ 36.62500030689651, 32.45833328275869 ], [ 34.519365245189505, 33.02523488062875 ], [ 34.223463239385296, 33.16261793210657 ], [ 33.964848739597294, 33.31939523876171 ], [ 35.242939754786114, 36.42332930935598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "4fb57356b07c478ca231114c17e160d1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 21.733333, -71.583333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "500a561d76ea435c84beb003fce09d9a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 151.33401642660658, 11.773099869058134 ], [ 133.6628212500836, 20.50881640651123 ], [ 134.454128440367, 22.98165137614679 ], [ 162.56451612903226, 34.225806451612904 ], [ 157.03846153846155, 14.884615384615385 ], [ 151.33401642660658, 11.773099869058134 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "50500ca4e2494442ad3a454868c1d577": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -18.25, 35 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "5062e95e5e114e70800eeafc532c1c97": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -98.3029214480826, 7.690999280584988 ], [ -99.8688999707149, 13.38455671254664 ], [ -94.96832023575638, 21.06213163064833 ], [ -88.50933882702878, 15.525861851738961 ], [ -98.3029214480826, 7.690999280584988 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "50b271cee9c549e9a23a044f64d3a88d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 8.522015150355557, 49.33412092585139 ], [ 8.739950250369214, 49.618139552727044 ], [ 11.35505392604767, 49.03477002519314 ], [ 11.487836160102283, 46.007322978959905 ], [ 9.878864326017766, 44.57251816316969 ], [ 8.978791652479575, 45.13178642453233 ], [ 8.522015150355557, 49.33412092585139 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "50faf151b49e42e2a118c41fa8eb73cb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 19.41348615972757, 44.08471568564209 ], [ 19.498873693815437, 45.16629123127181 ], [ 22.428571428571427, 46.142857142857146 ], [ 23.25, 44.5 ], [ 23.030797023629496, 43.623188094517985 ], [ 22.312500125, 43.291666500000005 ], [ 20.11323544117647, 43.2916665 ], [ 19.41348615972757, 44.08471568564209 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "518b64978ef24fceb44ad65337556c0c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.991948760672756, 41.21714083280807 ], [ 15.699970183868817, 42.247653214348475 ], [ 17.296874963671776, 46.312499685937375 ], [ 17.574404945535726, 46.68253956924598 ], [ 19.498873693815437, 45.16629123127181 ], [ 19.41348615972757, 44.08471568564209 ], [ 15.991948760672756, 41.21714083280807 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "51da194d75ae4b979aa283841022caee": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, 121 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "51e534ba565b488ab46b96555a2b5a1b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.5, 60.625 ], [ 1.5, 78.4375 ], [ 12.5, 71.5625 ], [ 12.5, 59 ], [ 3.963235294117647, 59 ], [ 1.9015151515151523, 59.922348484848484 ], [ 1.5, 60.625 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "51f46e47c553429b8b57783d776a2299": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 134.15286847600308, -80.17871349622823 ], [ 149.19034575842386, -45.680971495380525 ], [ 181.0092522949306, -30.834875382488434 ], [ 276.328125, -46.72135416666667 ], [ 276.328125, -80.17871349622823 ], [ 134.15286847600308, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "52298a3d8cd74ef9aa44d1af57252292": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 147.83771399862843, 80.17871349622823 ], [ 133.03225806451613, 39.46370967741935 ], [ 116.19160583941606, 36.65693430656934 ], [ 115.31818181818181, 40.5 ], [ 120.47841726618705, 59.42086330935252 ], [ 135.85460258979867, 80.17871349622823 ], [ 147.83771399862843, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "52bd6565411d443a9ede7896241d362b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 52.76086956521739, 28.578804347826086 ], [ 48.38392857142857, 22.013392857142858 ], [ 47.56392045454545, 26.5234375 ], [ 51.07425742574257, 29.281559405940595 ], [ 52.76086956521739, 28.578804347826086 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "52cbe7749dd349f79cf2d68f621b8b3c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 94.53448275862068, 25.137931034482758 ], [ 92.40384615384616, 16.615384615384613 ], [ 89.49601593625498, 13.384462151394423 ], [ 85.5, 15.5 ], [ 83.76315789473684, 21.144736842105264 ], [ 87.1304347826087, 26.195652173913043 ], [ 94.53448275862068, 25.137931034482758 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "53374bccaffb4a309399e9cbb64f643d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10, -84 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "53f86da89d9742b1bb743396ca1cab74": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.478092783505154, 20.836340206185568 ], [ 50.14858490566038, 20.20990566037736 ], [ 51.88333333333333, 18.883333333333333 ], [ 56.33064516129032, 11.201612903225806 ], [ 47.22222222222222, 10.722222222222221 ], [ 43.22222222222222, 15.722222222222221 ], [ 43.00609756097561, 19.396341463414636 ], [ 48.478092783505154, 20.836340206185568 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "541886fb08bf4eadbd99f333ac52d44c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, 1.166667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5442d2848df742d2a46694cb2c35f487": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 121.6864972265454, -8.699420815204025 ], [ 132.26621549659933, -15.834579305184665 ], [ 111.98520643877718, -34.63816489745933 ], [ 114.44628468733671, -11.953448451062306 ], [ 121.6864972265454, -8.699420815204025 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "545ae35b01ee4890b3e5626193e631ed": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.42881529044293, -26.625426758275115 ], [ -75.94969531226228, -46.786966796458984 ], [ -103.40402681867948, -61.72380573934753 ], [ -100.48428378448884, -26.74607094612221 ], [ -74.85135135135135, -20.33783783783784 ], [ -65.48822279584417, -24.659281786533462 ], [ -64.42881529044293, -26.625426758275115 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "54680a851472438bb0df239f56c097ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -25.066667000000002, -130.1 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "547810bbeb1b4642a57812e36a835973": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, 100 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "54e24b22140e493f848178faf105e8f6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -110.34629822105572, -80.17871349622823 ], [ -103.40402681867948, -61.72380573934753 ], [ -75.94969531226228, -46.786966796458984 ], [ -58.918818576811546, -42.149451385507646 ], [ -44.57240199636398, -44.57240199636398 ], [ -50.35559264400829, -80.17871349622823 ], [ -110.34629822105572, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "54e2b1202bf7453e96a8e53b479c66c1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 2, 10 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "559a608e9df349c283959043a9b98b78": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 52, 20 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "55a7b36e36254126b48fdc6f86788aef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 29.247033738409375, 39.24703373840938 ], [ 27.785714285714285, 37.785714285714285 ], [ 24.277777999999998, 40.416666500000005 ], [ 23.030797023629496, 43.623188094517985 ], [ 23.25, 44.5 ], [ 27.5, 44.5 ], [ 30.24445688154456, 41.75554311845544 ], [ 29.247033738409375, 39.24703373840938 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5605b3222a8b43518797fdde3ce4ea23": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.5, 60.625 ], [ 1.5, 78.4375 ], [ 12.5, 71.5625 ], [ 12.5, 59 ], [ 3.963235294117647, 59 ], [ 1.9015151515151523, 59.922348484848484 ], [ 1.5, 60.625 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5639e143adc442d6948a81af8446b252": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 107.5078536394889, 6.86275259963493 ], [ 108.91113314687364, -3.9094844341823056 ], [ 100.23524681685709, -5.2742308038236665 ], [ 91.2237241126437, -0.5774520299382842 ], [ 92.75877380995436, 5.635412201358397 ], [ 99.9566685702624, 7.641671425655971 ], [ 107.5078536394889, 6.86275259963493 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "566541d591b34c9bbf6527b02ebcffc3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35, 105 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "57b786d2d9b84a25948a905df4ae8e13": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 27.223484848484848, -25.127525252525253 ], [ 26.223684210526315, -25.69407894736842 ], [ 20.5, -27.125 ], [ 20.5, -17.684210526315788 ], [ 23.69921875, -15.83203125 ], [ 28.25, -23.416666666666668 ], [ 27.223484848484848, -25.127525252525253 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "57cf37cbb78845498f60f8a2a2c13663": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18, 105 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "57f75ab74d1f4c05b6e09afe8262e451": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -25.28404570574557, 80.17871349622823 ], [ -34.6760021000632, 50.66113625694425 ], [ -69.56524712185802, 73.30448656867075 ], [ -71.03829574919178, 80.17871349622823 ], [ -25.28404570574557, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "58403bddf18546998bf0775dc2527d24": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 30, 70 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5862b8d35dcc4bd78ffce0292b814119": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 56, 10 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "58874f541d7044a891c7fd5b89ecf1ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 28.73076923076923, 2.0769230769230775 ], [ 34.125, -1.96875 ], [ 33.5, -2.75 ], [ 26.8, -2.75 ], [ 28.73076923076923, 2.0769230769230775 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "596f3e40e2e24d12b3db7fd410d25ddf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -56, -33 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "59a92c78e83645e7b04db6faf96e1c97": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 32, -5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "5ace650aadc0462fbc4a9b122af4de68": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonStyleModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "5acf714a1e56485ca3eb263768160d57": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 56, 24 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5b1d1d3e217d4da8a7874e6ad0588225": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15, 30 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5b89c1d643e44d80992d5d8b8791bfa2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.8125, 11.8125 ], [ 16.10810810810811, 10.027027027027026 ], [ 16.78787878787879, 3.909090909090909 ], [ 13.76923076923077, 2.6153846153846154 ], [ 7.666666666666667, 5.666666666666667 ], [ 13.8125, 11.8125 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5b9693b8b94249a3a2e3972f48bec098": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 53, 28 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "5bc4448d1b4b42419ed3451dedaa863a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 51.461768608905146, -19.285263603105218 ], [ 55.63994231646179, -18.34051752486328 ], [ 61.19240924770094, -32.10600614503239 ], [ 49.32465014416529, -38.2837437605715 ], [ 49.211107650863816, -36.88134018415563 ], [ 51.461768608905146, -19.285263603105218 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5bcd2dc0268d46d288c206011d9e11de": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 28.73076923076923, 2.0769230769230775 ], [ 34.125, -1.96875 ], [ 33.5, -2.75 ], [ 26.8, -2.75 ], [ 28.73076923076923, 2.0769230769230775 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5bd1b1f84a5544f09aa6091160aa02b2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 14.133064516129032, 54.181451612903224 ], [ 8.451347305389222, 53.5501497005988 ], [ 3.963235294117647, 59 ], [ 12.5, 59 ], [ 15.875, 56.1875 ], [ 15.514705882352942, 55.286764705882355 ], [ 14.133064516129032, 54.181451612903224 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5c3bddeb8ec84c62a2f30edc5eda98be": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -7.9512599555741215, 80.17871349622823 ], [ -13.941176470588236, 58.21568627450981 ], [ -28.3, 46.25 ], [ -31.913874716402603, 44.83279422886172 ], [ -34.6760021000632, 50.66113625694425 ], [ -25.28404570574557, 80.17871349622823 ], [ -7.9512599555741215, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5c50f2e06ddc4796bd882b2207cfb8ae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22.25, 114.16666699999999 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "5d271907b898446fa03b53ee42719337": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, -76 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5d38065e1d18410cacea7686d0daa1fe": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.25, -88.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "5dd8ebbfc693454d899e4c12c364a760": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -25, 135 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5dfe8307dd5f4e4d8d6b2dc92718a9c9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25, 45 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5e0532b14380498d8beaa278d57e28f4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -30, -71 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "5e2f5477c1ed4d33b461098085ee3f62": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.333333, -62.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5e3c9a55fe024003827094b3ea5a71a4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 19, -72.416667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5e7f696ede9d42acb23746eea7868b2f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.5, -69.966667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5e8747c19b094c05bea1f02087a0fb6f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.166667000000002, -59.533333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "5ec82e2ea43944eba2cd87bf763a98c7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletTileLayerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "msg_throttle": 1, "options": [ "min_zoom", "max_zoom", "opacity", "tile_size", "attribution", "detect_retina" ] } }, "5f0e7d7d5dc84b719f2d936eb6ad2dd8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -1.5769230769230766, 59.47115384615385 ], [ -5.520833333333333, 51.583333333333336 ], [ -7.639462809917355, 57.51549586776859 ], [ -1.5769230769230766, 59.47115384615385 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5f2ed0a71ca3496ea3a3b6c34f1bf00c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 29.1, 50.1 ], [ 26.22, 49.62 ], [ 24.254716981132077, 50.4622641509434 ], [ 24.07142857142857, 51.92857142857143 ], [ 26.214285714285715, 54.785714285714285 ], [ 28.5, 56.5 ], [ 39, 60 ], [ 29.1, 50.1 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5f3f91f2fc2f4c929c638e6934ba94a6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 38.74495582194318, -80.17871349622823 ], [ 38.47184369784168, -66.91689378129499 ], [ 90.46140165378344, -35.72315900772993 ], [ 106.81273702950035, -45.22820342246508 ], [ 122.59683835313533, -80.17871349622823 ], [ 38.74495582194318, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5f4c6bc41fb64be5be548b323ccc2025": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.927083310795451, 46.937500135227296 ], [ 5.109590680277008, 45.842455918337954 ], [ 4.288907385560957, 43.88729894491986 ], [ -2.237365902890134, 44.819623700412876 ], [ 1.166198695233587, 49.17548088533882 ], [ 3.9494053224097057, 48.02380909811617 ], [ 4.927083310795451, 46.937500135227296 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5f4f331739b0442aaf7d515eac3ab51a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -167.72824170203305, 80.17871349622823 ], [ -148.27975412727093, 56.43450474763602 ], [ -139.12252343571157, 39.30724891155245 ], [ -137.88294597575836, 34.957403696829424 ], [ -135.92231409107774, 11.416829453819545 ], [ -151.32744754011327, -4.867256504318824 ], [ -158.5306729184465, -5.027678508745646 ], [ -275.48308134938577, 80.17871349622823 ], [ -167.72824170203305, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5fdc4ee035464c8b9fe7b2e61aeaedbd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.991948760672756, 41.21714083280807 ], [ 19.41348615972757, 44.08471568564209 ], [ 20.11323544117647, 43.2916665 ], [ 20.176757075876065, 41.99581996874216 ], [ 16.061115007012624, 40.07518700327256 ], [ 15.980516452919288, 40.99535382917147 ], [ 15.991948760672756, 41.21714083280807 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "5feee658ed2145f1ba54270e9243ec04": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 32, 53 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "600f6c0a9e864874806232525d141d4c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 63.620161109870644, 37.031566665603414 ], [ 57.76114404816097, 50.23885595183903 ], [ 68.48809998999228, 43.162699996664095 ], [ 66.42940954782578, 37.72549204347852 ], [ 63.620161109870644, 37.031566665603414 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "604d0222ee1449a4b0368f97795b57de": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -7.821428571428571, 8.964285714285715 ], [ -3.6666666666666665, -3.5000000000000018 ], [ -3.8642210857592456, -4.092663257277733 ], [ -25.80676943699732, -7.8067694369973175 ], [ -9.1875, 8.8125 ], [ -7.821428571428571, 8.964285714285715 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6051b776b8444e96ae17dac688faf5c5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.927083310795451, 46.937500135227296 ], [ 8.522015150355557, 49.33412092585139 ], [ 8.978791652479575, 45.13178642453233 ], [ 5.109590680277008, 45.842455918337954 ], [ 4.927083310795451, 46.937500135227296 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "60a0100945e64f80910204295f65e12d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 55.63994231646179, -18.34051752486328 ], [ 64.00997065428118, -12.361926664125068 ], [ 77.06366145593447, -25.522116412964117 ], [ 61.19240924770094, -32.10600614503239 ], [ 55.63994231646179, -18.34051752486328 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "60cc3e0cdb48463bb24feb0a17b2c495": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22.993333, -57.996389 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "614b322bafb94fb1a7506ba94dcdc971": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 27, 30 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6159a289865148c688db00c99c633420": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, 54 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "61d87946a2b3473baa15ed4cf8dde59d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -32.567386056786326, 40.52556022843619 ], [ -13.059734513274336, 33.126106194690266 ], [ -5.981132075471698, 24.53066037735849 ], [ -18.886363636363637, 20.65909090909091 ], [ -33.815676951894105, 38.076623110543125 ], [ -32.567386056786326, 40.52556022843619 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "621763df4c104eb8960b8abc50e4c6c4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 63.620161109870644, 37.031566665603414 ], [ 57.76114404816097, 50.23885595183903 ], [ 68.48809998999228, 43.162699996664095 ], [ 66.42940954782578, 37.72549204347852 ], [ 63.620161109870644, 37.031566665603414 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "621fa86d7e40436b8c8cfebbff292837": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.42881529044293, -26.625426758275115 ], [ -60.59814038674846, -28.7148769060123 ], [ -58.918818576811546, -42.149451385507646 ], [ -75.94969531226228, -46.786966796458984 ], [ -64.42881529044293, -26.625426758275115 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "623256d198f74bb4ad3876e47172e4d8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -30, 26 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6235dddf98974e8494209ede31ff51fa": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -82.78921576310886, 16.220588177668354 ], [ -84.85349475871489, 18.89650524128512 ], [ -86.15857079468962, 23.58511154755347 ], [ -78.61388916259259, 20.064259113283956 ], [ -80.68489583210638, 14.817708331580544 ], [ -82.78921576310886, 16.220588177668354 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "624c642b7cd543b192b838e2d2fa72de": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 43.22977652422616, -14.533018613986123 ], [ 39.181008727923356, -13.263900703552599 ], [ 38.79846944876572, -10.32312925983543 ], [ 42.34413600320691, -5.004629715660106 ], [ 44.131721455719834, -4.156092338797324 ], [ 45.65451341086134, -11.199000848476553 ], [ 43.22977652422616, -14.533018613986123 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "62520437754340c6a36660db240f93de": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -43, 67 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "62a573579700460485a434a25150b334": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -31.913874716402603, 44.83279422886172 ], [ -32.567386056786326, 40.52556022843619 ], [ -33.815676951894105, 38.076623110543125 ], [ -42.41341796816169, 29.060613607881244 ], [ -77.4924368400039, 49.42257364450274 ], [ -69.56524712185802, 73.30448656867075 ], [ -34.6760021000632, 50.66113625694425 ], [ -31.913874716402603, 44.83279422886172 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "631553bdbec540aeb3820314297f104d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, 60 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "63386211e06740debdfcdca869e9d526": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 276.328125, 64.45052083333333 ], [ 178.46018972151518, 4.642338163148159 ], [ 160.40494007960388, 4.785179761188357 ], [ 157.03846153846155, 14.884615384615385 ], [ 162.56451612903226, 34.225806451612904 ], [ 203.76367416903219, 80.17871349622823 ], [ 276.328125, 80.17871349622823 ], [ 276.328125, 64.45052083333333 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6385889410264316927e1718e63ab7fe": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 114.94192105365104, 15.104415033855883 ], [ 108.88327097592021, 20.89535884377141 ], [ 106.16088656936334, 26.5 ], [ 112.56213379527715, 30.766621205200572 ], [ 114.94192105365104, 15.104415033855883 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "64097fa1b4c74e829b95bcf0a31e250f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.375, 1.9583333333333333 ], [ 13.375, -7.7771739130434785 ], [ 6.09034795042898, -12.052947942139513 ], [ 4.89000059010976, -10.651873598489319 ], [ 9.165697674418604, -0.4970930232558137 ], [ 13.375, 1.9583333333333333 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6436c909063641b6b9875a10793af194": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.950805199997426, -64.0185221111185 ], [ 38.47184369784168, -66.91689378129499 ], [ 38.74495582194318, -80.17871349622823 ], [ -13.725625953806592, -80.17871349622823 ], [ -15.515674418943778, -38.5886601339035 ], [ 1.4946076894635336, -34.56630668581452 ], [ 10.521068792382458, -38.35129760856974 ], [ 33.826857172836064, -59.90835727776229 ], [ 37.950805199997426, -64.0185221111185 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6436e10f2faf49cb8eb676a27036cba3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 114.37592643202974, 12.164233393644647 ], [ 115.01592231071581, 15.027372616909282 ], [ 118.82994785682668, 18.257267986984242 ], [ 133.2442960059269, 19.56766327326608 ], [ 133.2646743878651, 18.52515609348306 ], [ 124.56086956521739, 3.604347826086956 ], [ 124.2586961526276, 3.6379226497080444 ], [ 114.37592643202974, 12.164233393644647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "64511a92c234415d8dc2acf2903e9b76": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 56, 10 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "645be34235b64623b64d6dc193969990": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -6, 35 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "648af86c822947538d4a6039643d52b6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31.5, 34.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6500c5dcae26448186bb001129e0a94b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46, 105 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "6515d944a9da41acb8b5401065a8859a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.5, -69.966667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "65446976616d4fb98730a4e667f65a70": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.77976194285714, -9.66666665 ], [ -164.6394390550387, -9.66666665 ], [ -166.0755949388039, -16.573894024806027 ], [ -171.73818188040755, -16.734534397758562 ], [ -170.4724227238813, -11.534570980447954 ], [ -164.77976194285714, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6563f8ac4dbb4ae38aab9d69d2e29bb4": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "659bd2bc34874e78a6fd56a55726317c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 16.024059880778594, 39.76433566653155 ], [ 18.286632681794458, 37.28663268179446 ], [ 20.60112571034901, 31.606740817732497 ], [ 13.48886245635114, 29.934544405645457 ], [ 10.649727809605306, 37.98287203251414 ], [ 16.024059880778594, 39.76433566653155 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "66a2dd1a9dda470988c15ca6b67e1a5b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -18, 178 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "67be349e5ef54d08a5a0fc3273b52313": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "width": "50%" } }, "67d72542118c4e068b0098a113619416": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 11.487836160102283, 46.007322978959905 ], [ 11.35505392604767, 49.03477002519314 ], [ 12.410750188456655, 49.75264334174569 ], [ 14.960560103396157, 47.994153636088065 ], [ 13.470637558310848, 45.47274455940396 ], [ 11.487836160102283, 46.007322978959905 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "67de321d01664557a6c0b1389d13f6e5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.8125, 11.8125 ], [ 16.10810810810811, 10.027027027027026 ], [ 16.78787878787879, 3.909090909090909 ], [ 13.76923076923077, 2.6153846153846154 ], [ 7.666666666666667, 5.666666666666667 ], [ 13.8125, 11.8125 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "67e90794605f4523b968a59d7b694fef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -25, 135 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "68021620fce847cf962107a87acf4548": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -29.033333000000002, 167.95 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "680cc672fb2a4311b5147756a5b47f0f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 76.05882352941177, 33.88235294117647 ], [ 70.26923076923077, 34.52564102564102 ], [ 66.42940954782578, 37.72549204347852 ], [ 68.48809998999228, 43.162699996664095 ], [ 71, 44 ], [ 76.05882352941177, 33.88235294117647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "68349cbc15964aa4995ff6e1674900f2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 47.22222222222222, 10.722222222222221 ], [ 56.33064516129032, 11.201612903225806 ], [ 60.930284857571216, 8.441829085457272 ], [ 60.79089492561899, 7.197276121598136 ], [ 47.089672949612705, -2.728019282328227 ], [ 46.09506471289707, -2.690129425794141 ], [ 42.5, 4.5 ], [ 42.875, 6.375 ], [ 47.22222222222222, 10.722222222222221 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "687031bb3729459b879bc9de06bfca45": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 51.461768608905146, -19.285263603105218 ], [ 49.543500258193944, -15.843209073778832 ], [ 53.137036401771624, -10.013999576917119 ], [ 63.32584190405518, -11.142744580641589 ], [ 64.00997065428118, -12.361926664125068 ], [ 55.63994231646179, -18.34051752486328 ], [ 51.461768608905146, -19.285263603105218 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "69b5b543ffd247dc87ba68b63224724c": { "model_module": "jupyter-js-widgets", "model_module_version": "*", "model_name": "DOMWidgetModel", "state": { "_cdn_base_url": "https://cdn.rawgit.com/quantopian/qgrid/73eaa7adf1762f66eaf4d30ed9cbf385a7e9d9fa/qgrid/qgridjs/", "_column_types_json": "[{\"field\": \"Index\", \"type\": \"Integer\"}, {\"field\": \"LAT\", \"type\": \"Float\"}, {\"field\": \"LONG\", \"type\": \"Float\"}]", "_df_json": "[{\"Index\":0,\"LAT\":33.0,\"LONG\":66.0},{\"Index\":1,\"LAT\":41.0,\"LONG\":20.0},{\"Index\":2,\"LAT\":28.0,\"LONG\":3.0},{\"Index\":3,\"LAT\":-14.33333,\"LONG\":-170.0},{\"Index\":4,\"LAT\":42.5,\"LONG\":1.5},{\"Index\":5,\"LAT\":-12.5,\"LONG\":18.5},{\"Index\":6,\"LAT\":18.21667,\"LONG\":-63.05},{\"Index\":7,\"LAT\":17.05,\"LONG\":-61.8},{\"Index\":8,\"LAT\":-34.0,\"LONG\":-64.0},{\"Index\":9,\"LAT\":40.0,\"LONG\":45.0},{\"Index\":10,\"LAT\":12.5,\"LONG\":-69.96667},{\"Index\":11,\"LAT\":-15.95,\"LONG\":-5.7},{\"Index\":12,\"LAT\":-12.41667,\"LONG\":123.33333},{\"Index\":13,\"LAT\":-25.0,\"LONG\":135.0},{\"Index\":14,\"LAT\":47.33333,\"LONG\":13.33333},{\"Index\":15,\"LAT\":40.5,\"LONG\":47.5},{\"Index\":16,\"LAT\":24.0,\"LONG\":-76.0},{\"Index\":17,\"LAT\":26.0,\"LONG\":50.5},{\"Index\":18,\"LAT\":24.0,\"LONG\":90.0},{\"Index\":19,\"LAT\":13.16667,\"LONG\":-59.53333},{\"Index\":20,\"LAT\":-21.41667,\"LONG\":39.7},{\"Index\":21,\"LAT\":53.0,\"LONG\":28.0},{\"Index\":22,\"LAT\":50.83333,\"LONG\":4.0},{\"Index\":23,\"LAT\":17.25,\"LONG\":-88.75},{\"Index\":24,\"LAT\":9.5,\"LONG\":2.25},{\"Index\":25,\"LAT\":32.33333,\"LONG\":-64.75},{\"Index\":26,\"LAT\":27.5,\"LONG\":90.5},{\"Index\":27,\"LAT\":-17.0,\"LONG\":-65.0},{\"Index\":28,\"LAT\":12.2,\"LONG\":-68.25},{\"Index\":29,\"LAT\":44.25,\"LONG\":17.83333},{\"Index\":30,\"LAT\":-22.0,\"LONG\":24.0},{\"Index\":31,\"LAT\":-54.43333,\"LONG\":3.4},{\"Index\":32,\"LAT\":-10.0,\"LONG\":-55.0},{\"Index\":33,\"LAT\":-6.0,\"LONG\":72.0},{\"Index\":34,\"LAT\":18.5,\"LONG\":-64.5},{\"Index\":35,\"LAT\":4.5,\"LONG\":114.66667},{\"Index\":36,\"LAT\":43.0,\"LONG\":25.0},{\"Index\":37,\"LAT\":13.0,\"LONG\":-2.0},{\"Index\":38,\"LAT\":22.0,\"LONG\":98.0},{\"Index\":39,\"LAT\":-3.5,\"LONG\":30.0},{\"Index\":40,\"LAT\":13.0,\"LONG\":105.0},{\"Index\":41,\"LAT\":6.0,\"LONG\":12.0},{\"Index\":42,\"LAT\":60.0,\"LONG\":-96.0},{\"Index\":43,\"LAT\":16.0,\"LONG\":-24.0},{\"Index\":44,\"LAT\":19.5,\"LONG\":-80.66667},{\"Index\":45,\"LAT\":7.0,\"LONG\":21.0},{\"Index\":46,\"LAT\":15.0,\"LONG\":19.0},{\"Index\":47,\"LAT\":-30.0,\"LONG\":-71.0},{\"Index\":48,\"LAT\":35.0,\"LONG\":105.0},{\"Index\":49,\"LAT\":-10.5,\"LONG\":105.66667},{\"Index\":50,\"LAT\":10.28333,\"LONG\":-109.21667},{\"Index\":51,\"LAT\":-12.0,\"LONG\":96.83333},{\"Index\":52,\"LAT\":4.0,\"LONG\":-72.0},{\"Index\":53,\"LAT\":-12.16667,\"LONG\":44.25},{\"Index\":54,\"LAT\":-16.08333,\"LONG\":-161.58333},{\"Index\":55,\"LAT\":-17.5,\"LONG\":151.0},{\"Index\":56,\"LAT\":10.0,\"LONG\":-84.0},{\"Index\":57,\"LAT\":8.0,\"LONG\":-5.0},{\"Index\":58,\"LAT\":45.16667,\"LONG\":15.5},{\"Index\":59,\"LAT\":22.0,\"LONG\":-79.5},{\"Index\":60,\"LAT\":12.16667,\"LONG\":-69.0},{\"Index\":61,\"LAT\":35.0,\"LONG\":33.0},{\"Index\":62,\"LAT\":49.75,\"LONG\":15.0},{\"Index\":63,\"LAT\":0.0,\"LONG\":25.0},{\"Index\":64,\"LAT\":56.0,\"LONG\":10.0},{\"Index\":65,\"LAT\":11.5,\"LONG\":42.5},{\"Index\":66,\"LAT\":15.5,\"LONG\":-61.33333},{\"Index\":67,\"LAT\":19.0,\"LONG\":-70.66667},{\"Index\":68,\"LAT\":-2.0,\"LONG\":-77.5},{\"Index\":69,\"LAT\":27.0,\"LONG\":30.0},{\"Index\":70,\"LAT\":13.83333,\"LONG\":-88.91667},{\"Index\":71,\"LAT\":2.0,\"LONG\":10.0},{\"Index\":72,\"LAT\":15.0,\"LONG\":39.0},{\"Index\":73,\"LAT\":59.0,\"LONG\":26.0},{\"Index\":74,\"LAT\":8.0,\"LONG\":38.0},{\"Index\":75,\"LAT\":-22.33333,\"LONG\":40.36667},{\"Index\":76,\"LAT\":-51.75,\"LONG\":-59.16667},{\"Index\":77,\"LAT\":62.0,\"LONG\":-7.0},{\"Index\":78,\"LAT\":5.0,\"LONG\":152.0},{\"Index\":79,\"LAT\":-18.0,\"LONG\":178.0},{\"Index\":80,\"LAT\":64.0,\"LONG\":26.0},{\"Index\":81,\"LAT\":46.0,\"LONG\":2.0},{\"Index\":82,\"LAT\":4.0,\"LONG\":-53.0},{\"Index\":83,\"LAT\":-15.0,\"LONG\":-140.0},{\"Index\":84,\"LAT\":-43.0,\"LONG\":67.0},{\"Index\":85,\"LAT\":-1.0,\"LONG\":11.75},{\"Index\":86,\"LAT\":13.5,\"LONG\":-15.5},{\"Index\":87,\"LAT\":31.42507,\"LONG\":34.3734},{\"Index\":88,\"LAT\":41.99998,\"LONG\":43.4999},{\"Index\":89,\"LAT\":51.5,\"LONG\":10.5},{\"Index\":90,\"LAT\":8.0,\"LONG\":-2.0},{\"Index\":91,\"LAT\":36.13333,\"LONG\":-5.35},{\"Index\":92,\"LAT\":-11.5,\"LONG\":47.33333},{\"Index\":93,\"LAT\":39.0,\"LONG\":22.0},{\"Index\":94,\"LAT\":72.0,\"LONG\":-40.0},{\"Index\":95,\"LAT\":12.11667,\"LONG\":-61.66667},{\"Index\":96,\"LAT\":16.25,\"LONG\":-61.58333},{\"Index\":97,\"LAT\":13.44444,\"LONG\":144.73667},{\"Index\":98,\"LAT\":15.5,\"LONG\":-90.25},{\"Index\":99,\"LAT\":49.58333,\"LONG\":-2.33333},{\"Index\":100,\"LAT\":11.0,\"LONG\":-10.0},{\"Index\":101,\"LAT\":12.0,\"LONG\":-15.0},{\"Index\":102,\"LAT\":5.0,\"LONG\":-59.0},{\"Index\":103,\"LAT\":19.0,\"LONG\":-72.41667},{\"Index\":104,\"LAT\":-53.0,\"LONG\":73.0},{\"Index\":105,\"LAT\":15.0,\"LONG\":-86.5},{\"Index\":106,\"LAT\":22.25,\"LONG\":114.16667},{\"Index\":107,\"LAT\":47.0,\"LONG\":20.0},{\"Index\":108,\"LAT\":65.0,\"LONG\":-18.0},{\"Index\":109,\"LAT\":20.0,\"LONG\":77.0},{\"Index\":110,\"LAT\":-5.0,\"LONG\":120.0},{\"Index\":111,\"LAT\":32.0,\"LONG\":53.0},{\"Index\":112,\"LAT\":33.0,\"LONG\":44.0},{\"Index\":113,\"LAT\":53.0,\"LONG\":-8.0},{\"Index\":114,\"LAT\":54.25,\"LONG\":-4.5},{\"Index\":115,\"LAT\":31.5,\"LONG\":34.75},{\"Index\":116,\"LAT\":42.83333,\"LONG\":12.83333},{\"Index\":117,\"LAT\":18.25,\"LONG\":-77.5},{\"Index\":118,\"LAT\":36.0,\"LONG\":138.0},{\"Index\":119,\"LAT\":49.21667,\"LONG\":-2.11667},{\"Index\":120,\"LAT\":31.0,\"LONG\":36.0},{\"Index\":121,\"LAT\":-17.05833,\"LONG\":42.71667},{\"Index\":122,\"LAT\":48.0,\"LONG\":68.0},{\"Index\":123,\"LAT\":1.0,\"LONG\":38.0},{\"Index\":124,\"LAT\":-5.0,\"LONG\":-170.0},{\"Index\":125,\"LAT\":42.58333,\"LONG\":21.0},{\"Index\":126,\"LAT\":29.5,\"LONG\":47.75},{\"Index\":127,\"LAT\":41.0,\"LONG\":75.0},{\"Index\":128,\"LAT\":18.0,\"LONG\":105.0},{\"Index\":129,\"LAT\":57.0,\"LONG\":25.0},{\"Index\":130,\"LAT\":33.83333,\"LONG\":35.83333},{\"Index\":131,\"LAT\":-29.5,\"LONG\":28.25},{\"Index\":132,\"LAT\":6.5,\"LONG\":-9.5},{\"Index\":133,\"LAT\":25.0,\"LONG\":17.0},{\"Index\":134,\"LAT\":47.16667,\"LONG\":9.53333},{\"Index\":135,\"LAT\":56.0,\"LONG\":24.0},{\"Index\":136,\"LAT\":49.75,\"LONG\":6.16667},{\"Index\":137,\"LAT\":22.15778,\"LONG\":113.55972},{\"Index\":138,\"LAT\":41.83333,\"LONG\":22.0},{\"Index\":139,\"LAT\":-20.0,\"LONG\":47.0},{\"Index\":140,\"LAT\":-13.5,\"LONG\":34.0},{\"Index\":141,\"LAT\":2.5,\"LONG\":112.5},{\"Index\":142,\"LAT\":3.2,\"LONG\":73.0},{\"Index\":143,\"LAT\":17.0,\"LONG\":-4.0},{\"Index\":144,\"LAT\":35.91667,\"LONG\":14.43333},{\"Index\":145,\"LAT\":10.0,\"LONG\":167.0},{\"Index\":146,\"LAT\":14.66667,\"LONG\":-61.0},{\"Index\":147,\"LAT\":20.0,\"LONG\":-12.0},{\"Index\":148,\"LAT\":-20.3,\"LONG\":57.58333},{\"Index\":149,\"LAT\":-12.83333,\"LONG\":45.16667},{\"Index\":150,\"LAT\":23.0,\"LONG\":-102.0},{\"Index\":151,\"LAT\":47.0,\"LONG\":29.0},{\"Index\":152,\"LAT\":43.73333,\"LONG\":7.4},{\"Index\":153,\"LAT\":46.0,\"LONG\":105.0},{\"Index\":154,\"LAT\":42.5,\"LONG\":19.3},{\"Index\":155,\"LAT\":16.75,\"LONG\":-62.2},{\"Index\":156,\"LAT\":32.0,\"LONG\":-5.0},{\"Index\":157,\"LAT\":-18.25,\"LONG\":35.0},{\"Index\":158,\"LAT\":-22.0,\"LONG\":17.0},{\"Index\":159,\"LAT\":-0.53333,\"LONG\":166.91667},{\"Index\":160,\"LAT\":28.0,\"LONG\":84.0},{\"Index\":161,\"LAT\":52.5,\"LONG\":5.75},{\"Index\":162,\"LAT\":-21.5,\"LONG\":165.5},{\"Index\":163,\"LAT\":-42.0,\"LONG\":174.0},{\"Index\":164,\"LAT\":13.0,\"LONG\":-85.0},{\"Index\":165,\"LAT\":16.0,\"LONG\":8.0},{\"Index\":166,\"LAT\":10.0,\"LONG\":8.0},{\"Index\":167,\"LAT\":-19.03333,\"LONG\":-169.86667},{\"Index\":168,\"LAT\":-29.03333,\"LONG\":167.95},{\"Index\":169,\"LAT\":40.0,\"LONG\":127.0},{\"Index\":170,\"LAT\":16.0,\"LONG\":146.0},{\"Index\":171,\"LAT\":62.0,\"LONG\":10.0},{\"Index\":172,\"LAT\":21.0,\"LONG\":57.0},{\"Index\":173,\"LAT\":30.0,\"LONG\":70.0},{\"Index\":174,\"LAT\":6.0,\"LONG\":134.0},{\"Index\":175,\"LAT\":9.0,\"LONG\":-80.0},{\"Index\":176,\"LAT\":-6.0,\"LONG\":147.0},{\"Index\":177,\"LAT\":-22.99333,\"LONG\":-57.99639},{\"Index\":178,\"LAT\":-10.0,\"LONG\":-76.0},{\"Index\":179,\"LAT\":13.0,\"LONG\":122.0},{\"Index\":180,\"LAT\":-25.06667,\"LONG\":-130.1},{\"Index\":181,\"LAT\":52.0,\"LONG\":20.0},{\"Index\":182,\"LAT\":39.5,\"LONG\":-8.0},{\"Index\":183,\"LAT\":18.24829,\"LONG\":-66.49989},{\"Index\":184,\"LAT\":25.5,\"LONG\":51.25},{\"Index\":185,\"LAT\":-1.0,\"LONG\":15.0},{\"Index\":186,\"LAT\":-21.1,\"LONG\":55.6},{\"Index\":187,\"LAT\":46.0,\"LONG\":25.0},{\"Index\":188,\"LAT\":60.0,\"LONG\":100.0},{\"Index\":189,\"LAT\":-2.0,\"LONG\":30.0},{\"Index\":190,\"LAT\":17.9,\"LONG\":-62.83333},{\"Index\":191,\"LAT\":17.33333,\"LONG\":-62.75},{\"Index\":192,\"LAT\":13.88333,\"LONG\":-60.96667},{\"Index\":193,\"LAT\":18.075,\"LONG\":-63.05833},{\"Index\":194,\"LAT\":46.83333,\"LONG\":-56.33333},{\"Index\":195,\"LAT\":13.08333,\"LONG\":-61.2},{\"Index\":196,\"LAT\":-13.8031,\"LONG\":-172.17831},{\"Index\":197,\"LAT\":43.93333,\"LONG\":12.41667},{\"Index\":198,\"LAT\":1.0,\"LONG\":7.0},{\"Index\":199,\"LAT\":25.0,\"LONG\":45.0},{\"Index\":200,\"LAT\":14.0,\"LONG\":-14.0},{\"Index\":201,\"LAT\":44.0,\"LONG\":21.0},{\"Index\":202,\"LAT\":-4.58333,\"LONG\":55.66667},{\"Index\":203,\"LAT\":8.5,\"LONG\":-11.5},{\"Index\":204,\"LAT\":1.36667,\"LONG\":103.8},{\"Index\":205,\"LAT\":18.04167,\"LONG\":-63.06667},{\"Index\":206,\"LAT\":48.66667,\"LONG\":19.5},{\"Index\":207,\"LAT\":46.25,\"LONG\":15.16667},{\"Index\":208,\"LAT\":-8.0,\"LONG\":159.0},{\"Index\":209,\"LAT\":6.0,\"LONG\":48.0},{\"Index\":210,\"LAT\":-30.0,\"LONG\":26.0},{\"Index\":211,\"LAT\":-56.0,\"LONG\":-33.0},{\"Index\":212,\"LAT\":37.0,\"LONG\":127.5},{\"Index\":213,\"LAT\":8.0,\"LONG\":30.0},{\"Index\":214,\"LAT\":40.0,\"LONG\":-4.0},{\"Index\":215,\"LAT\":7.0,\"LONG\":81.0},{\"Index\":216,\"LAT\":16.0,\"LONG\":30.0},{\"Index\":217,\"LAT\":4.0,\"LONG\":-56.0},{\"Index\":218,\"LAT\":78.0,\"LONG\":20.0},{\"Index\":219,\"LAT\":-26.5,\"LONG\":31.5},{\"Index\":220,\"LAT\":62.0,\"LONG\":15.0},{\"Index\":221,\"LAT\":47.0,\"LONG\":8.0},{\"Index\":222,\"LAT\":35.0,\"LONG\":38.0},{\"Index\":223,\"LAT\":24.0,\"LONG\":121.0},{\"Index\":224,\"LAT\":39.0,\"LONG\":71.0},{\"Index\":225,\"LAT\":-6.0,\"LONG\":35.0},{\"Index\":226,\"LAT\":15.0,\"LONG\":100.0},{\"Index\":227,\"LAT\":-8.83333,\"LONG\":125.75},{\"Index\":228,\"LAT\":8.0,\"LONG\":1.16667},{\"Index\":229,\"LAT\":-9.0,\"LONG\":-171.75},{\"Index\":230,\"LAT\":-20.0,\"LONG\":-175.0},{\"Index\":231,\"LAT\":11.0,\"LONG\":-61.0},{\"Index\":232,\"LAT\":-15.86667,\"LONG\":54.41667},{\"Index\":233,\"LAT\":34.0,\"LONG\":9.0},{\"Index\":234,\"LAT\":39.05901,\"LONG\":34.91155},{\"Index\":235,\"LAT\":40.0,\"LONG\":60.0},{\"Index\":236,\"LAT\":21.73333,\"LONG\":-71.58333},{\"Index\":237,\"LAT\":-8.0,\"LONG\":178.0},{\"Index\":238,\"LAT\":2.0,\"LONG\":33.0},{\"Index\":239,\"LAT\":49.0,\"LONG\":32.0},{\"Index\":240,\"LAT\":24.0,\"LONG\":54.0},{\"Index\":241,\"LAT\":54.0,\"LONG\":-4.0},{\"Index\":242,\"LAT\":39.82818,\"LONG\":-98.5795},{\"Index\":243,\"LAT\":-33.0,\"LONG\":-56.0},{\"Index\":244,\"LAT\":5.88111,\"LONG\":-162.0725},{\"Index\":245,\"LAT\":18.34829,\"LONG\":-64.98348},{\"Index\":246,\"LAT\":41.70754,\"LONG\":63.84911},{\"Index\":247,\"LAT\":-16.0,\"LONG\":167.0},{\"Index\":248,\"LAT\":41.9,\"LONG\":12.45},{\"Index\":249,\"LAT\":8.0,\"LONG\":-66.0},{\"Index\":250,\"LAT\":16.16667,\"LONG\":107.83333},{\"Index\":251,\"LAT\":-13.3,\"LONG\":-176.2},{\"Index\":252,\"LAT\":31.66667,\"LONG\":35.25},{\"Index\":253,\"LAT\":25.0,\"LONG\":-13.5},{\"Index\":254,\"LAT\":15.5,\"LONG\":47.5},{\"Index\":255,\"LAT\":-15.0,\"LONG\":30.0},{\"Index\":256,\"LAT\":-19.0,\"LONG\":29.0}]", "_model_name": "DOMWidgetModel", "_view_module": "nbextensions/qgridjs/qgrid.widget", "_view_name": "QGridView", "grid_options": { "autoEdit": false, "defaultColumnWidth": 150, "editable": true, "enableColumnReorder": false, "enableTextSelectionOnCells": true, "forceFitColumns": true, "fullWidthRows": true, "rowHeight": 28, "syncColumnCellResize": true }, "layout": "IPY_MODEL_b39ad2e4be3f4595b07ee74ac100cccb" } }, "69c1a69dcd464aba8bb7a2219343d496": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.59232331103404, 45.24103110312757 ], [ 33.19743739745738, 43.95384390381393 ], [ 29.1, 50.1 ], [ 39, 60 ], [ 41.5, 61.5 ], [ 49.41678077774722, 64.66671231109889 ], [ 37.59232331103404, 45.24103110312757 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "69cf5df07aa14169a9cde3da38ca2acb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 88.234375, 40.546875 ], [ 87.1304347826087, 26.195652173913043 ], [ 83.76315789473684, 21.144736842105264 ], [ 76.75396825396825, 27.27777777777778 ], [ 77.59756097560975, 33.1829268292683 ], [ 88.234375, 40.546875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "69df3b1c12cf4ce4b2fbcd5d539593d5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -31.388171208220108, -22.887316025016354 ], [ -29.236135857461026, -29.236135857461026 ], [ -44.57240199636398, -44.57240199636398 ], [ -58.918818576811546, -42.149451385507646 ], [ -60.59814038674846, -28.7148769060123 ], [ -31.388171208220108, -22.887316025016354 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6a3c68c3cab44a0da19a69dc34cf3915": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -276.328125, 67.96016566265047 ], [ -183.1922749391728, -1.611192214111906 ], [ -173.89861949850788, -11.229044937590686 ], [ -174.55330595078996, -16.462532409096713 ], [ -276.328125, -34.69085820895506 ], [ -276.328125, 67.96016566265047 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6a5e43db977d4ddcaab562be9992dde0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -0.533333, 166.916667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6a641c833d7045f4a612448e1779a25c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 90.12953367875647, 42.72279792746114 ], [ 89.20786516853933, 48.252808988764045 ], [ 120.47841726618705, 59.42086330935252 ], [ 115.31818181818181, 40.5 ], [ 92.96551724137932, 40.5 ], [ 90.12953367875647, 42.72279792746114 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6a856e63b94943339bd2558b07eb443c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39.828175, -98.5795 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "6b237cef92384ef5a9cb6a80b24e3580": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -60.41447873621172, 19.787462810021925 ], [ -62.11873122840681, 17.71562711529553 ], [ -63.201638847461005, 17.556376725527574 ], [ -62.91871969518241, 18.02235756999168 ], [ -62.832805212340695, 18.132817575111325 ], [ -60.41447873621172, 19.787462810021925 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6ba14e7148bc449fbdda32c2f3aac38a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35, 105 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6c80f9b8b26e4d1790d05a1b67c86ecd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.216667, -2.1166669999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "6cf185d0531a49fa9d8f18457c7fac76": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.166666666666664, 21.5 ], [ 37.05555555555556, 22.916666666666668 ], [ 37.11904761904762, 22.92857142857143 ], [ 43.00609756097561, 19.396341463414636 ], [ 43.22222222222222, 15.722222222222221 ], [ 38.9375, 11.4375 ], [ 34.125, 12.125 ], [ 35.166666666666664, 21.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6d750a9bdbba46dc81ce181776e69fed": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -2, 30 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6db0f3ab982e479a89ea57efb3728b74": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.5, 61.5 ], [ 20.772727272727273, 61.5 ], [ 19.33132530120482, 69.42771084337349 ], [ 44.41699815786587, 80.17871349622823 ], [ 56.21093847475361, 80.17871349622823 ], [ 50.68630726562837, 65.67655657227448 ], [ 49.41678077774722, 64.66671231109889 ], [ 41.5, 61.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6db551317e5f4685bbbf0a129d8ee744": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -3.5, 30 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "6dc506cbcc5b48c28655777436c85e63": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -5.365481245791843, 50.961924983167364 ], [ -8.20649494863753, 46.25 ], [ -28.3, 46.25 ], [ -13.941176470588236, 58.21568627450981 ], [ -7.639462809917355, 57.51549586776859 ], [ -5.520833333333333, 51.583333333333336 ], [ -5.365481245791843, 50.961924983167364 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6dca69d4d5c14f20930401a1bdc1e5a8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.95454545454545, 36.86363636363637 ], [ 40.8314700518036, 38.435941927474964 ], [ 45.85867582567887, 42.20662087160565 ], [ 47.0735294117647, 36.13235294117647 ], [ 41.95454545454545, 36.86363636363637 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6dd313c5b1d94932b29bdc36700b13fa": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, -24 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "6e5b626e0a254c6ba8e92eb99c871c05": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 276.328125, 64.45052083333333 ], [ 178.46018972151518, 4.642338163148159 ], [ 160.40494007960388, 4.785179761188357 ], [ 157.03846153846155, 14.884615384615385 ], [ 162.56451612903226, 34.225806451612904 ], [ 203.76367416903219, 80.17871349622823 ], [ 276.328125, 80.17871349622823 ], [ 276.328125, 64.45052083333333 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6e9874216abe49f6a13e55090997cfe0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.746604200046136, 15.445576266651287 ], [ -64.65910396060286, 14.119575922665348 ], [ -64.93390814958786, 14.087943803298156 ], [ -65.21347445472163, 14.459674824410085 ], [ -62.258995793806164, 17.24532772507489 ], [ -61.79209951287454, 16.62279935049939 ], [ -62.746604200046136, 15.445576266651287 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6ec83c9d08dd4dbcbf48789e929795e3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -31.388171208220108, -22.887316025016354 ], [ -29.236135857461026, -29.236135857461026 ], [ -44.57240199636398, -44.57240199636398 ], [ -58.918818576811546, -42.149451385507646 ], [ -60.59814038674846, -28.7148769060123 ], [ -31.388171208220108, -22.887316025016354 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6ed406bb9f5945b08abe420ae71176f5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16.166667, 107.83333300000001 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "6f5d9be3c1ca4191a50fa71bda18508b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34.519365245189505, 33.02523488062875 ], [ 36.62500030689651, 32.45833328275869 ], [ 35.23106088842955, 30.890152221073883 ], [ 34.519365245189505, 33.02523488062875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6f7c6a5925f14dc389180e6b555b6adf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMapModel", "state": { "_dom_classes": [], "_east": 195.82031249999997, "_model_module_version": "*", "_north": 65.5129625532949, "_south": -65.80277639340238, "_view_module_version": "*", "_west": -150.82031249999997, "center": [ -0.3515602939922709, 22.5 ], "layers": [ "IPY_MODEL_057ea8f9be6441a19025a6ac437384e4", "IPY_MODEL_fc0182a32dfb4b928f3c5ccd1ab03996", "IPY_MODEL_98342ef92dba4ae3bb74b2e1c1fdd981", "IPY_MODEL_8aa33464c2084be8bc61e27d215e47ef", "IPY_MODEL_1b238cffb0684578a9469c3053005f46", "IPY_MODEL_714b8055c536433481e9c809fe1db315", "IPY_MODEL_48851eb14a3c4caaa20d1d113833007b", "IPY_MODEL_9c44608090044be480d5c694f63473b7", "IPY_MODEL_f0224d5c8f1f4dcda9dec542d82aaf1e", "IPY_MODEL_318344e020b84af6a9361db3ae171951", "IPY_MODEL_0e2e04a8d1e54da38a832fa105a59f94", "IPY_MODEL_6515d944a9da41acb8b5401065a8859a", "IPY_MODEL_b84c55dad47f4ced9858162004265dca", "IPY_MODEL_80e4dd19ab71414f8b07762de5458607", "IPY_MODEL_67e90794605f4523b968a59d7b694fef", "IPY_MODEL_28afb72c7cc544969a1439158da0ab47", "IPY_MODEL_0292c2464cc544f9a3cb8550412d24c3", "IPY_MODEL_dddb6ffc22a34e7b8039ecdbd67316e6", "IPY_MODEL_b9f57682afc340bc8029676e21b8cf9c", "IPY_MODEL_aab9519768b941178b415950610eb16b", "IPY_MODEL_0c974802321c42ea9164c9ab3b24f052", "IPY_MODEL_8490474e331a442da87b66515302f61c", "IPY_MODEL_5b9693b8b94249a3a2e3972f48bec098", "IPY_MODEL_c1697352485d41d9a68d7edc51d8cbb1", "IPY_MODEL_5d38065e1d18410cacea7686d0daa1fe", "IPY_MODEL_b22c02427899433a9ed185f6f9a3544c", "IPY_MODEL_9989d85ca31e4577853fb539d318c461", "IPY_MODEL_4aece727f1224637993fd664c0512dae", "IPY_MODEL_37d122c3ee5a40d5b6ca5e965e38b65c", "IPY_MODEL_4388839643a34fc0bfa50458ab39b7c8", "IPY_MODEL_fedc5d0ce33a475b99fc11121bbfe3be", "IPY_MODEL_b66c0e7b66884ff0a97f28ce66c82dde", "IPY_MODEL_45e9b73fe15647f69653f1daede9875f", "IPY_MODEL_39431a553e004dc3bc0c7b4169e12811", "IPY_MODEL_ddd253a785ac43788a27b3b7e3f0fd86", "IPY_MODEL_abee857683b3476b8bb4ba20fe8d974f", "IPY_MODEL_6fa7b52a807f4a07a0d8b2beb17be7ac", "IPY_MODEL_7b357aa3c34344dd9bdbb49f7ef55e67", "IPY_MODEL_0331d25335554a19beaa4c535b2804b1", "IPY_MODEL_e8c5f928e76d49e8aa6986df0781bbcf", "IPY_MODEL_2d5a35e94aea4c70a8c4dafaefa8156b", "IPY_MODEL_46c0101e110844bf94cc21ac1df2c191", "IPY_MODEL_24449b1c45664bd583def6b4e92361bb", "IPY_MODEL_af96d84d69524e248c61aebca1a64312", "IPY_MODEL_6dd313c5b1d94932b29bdc36700b13fa", "IPY_MODEL_7f938158b97445a39f5834e2c0e0f442", "IPY_MODEL_cff99a5e1d0e48f0a53747dc17c92601", "IPY_MODEL_9f7d13550c8643b3b5a3d83103cad268", "IPY_MODEL_5e0532b14380498d8beaa278d57e28f4", "IPY_MODEL_566541d591b34c9bbf6527b02ebcffc3", "IPY_MODEL_14ebf9f1ef364710a1415b91c0e5110b", "IPY_MODEL_cb7488b2f4ea4c7e9d9a69dc4a1e6200", "IPY_MODEL_dae5e4a2f4b148eeb4373e7daa38d48c", "IPY_MODEL_29614acd5ef44171a4bc089d1a36d0ff", "IPY_MODEL_12d346f4aec44bfb93cc3e3d706295d9", "IPY_MODEL_f934d10a1f8240089eecb38ab5f9e40f", "IPY_MODEL_baaafce7817347629d335f6635fdc256", "IPY_MODEL_53374bccaffb4a309399e9cbb64f643d", "IPY_MODEL_a404913451a8449696599c778826e21e", "IPY_MODEL_a32547e6fe3c43a4a834ba216e13d535", "IPY_MODEL_b2a04339e78b47658d59b4bf0092f536", "IPY_MODEL_318a1b7f35724da4aeaf0ced4f931471", "IPY_MODEL_a2ed256784364190a56990462fa9ffe1", "IPY_MODEL_87f6d1a857df47dfb156510f0ce95474", "IPY_MODEL_f39dec944e104062b7c5d36ddcbfd526", "IPY_MODEL_64511a92c234415d8dc2acf2903e9b76", "IPY_MODEL_88d11f60ab964c64a7b8db2dcf2b8466", "IPY_MODEL_153ed76bcf0c486a933c27aaf87f0fb3", "IPY_MODEL_4a479d80c0d04ef89583f9e6e3982c33", "IPY_MODEL_3541ad82714146e6836a1b4f9d216362", "IPY_MODEL_1e260b8bd8864b37838dd1df74f6cc94", "IPY_MODEL_1d8aabde19cc4e18b693e4ec2739753d", "IPY_MODEL_54e2b1202bf7453e96a8e53b479c66c1", "IPY_MODEL_c3999d9df463470688fa10dfce04c5c0", "IPY_MODEL_02916fa9cac54d6c8c8da7de98891219", "IPY_MODEL_38040d2dadd2428ebfbff494359d951f", "IPY_MODEL_ab7d4e6081a24821bb9b206939f739a0", "IPY_MODEL_1aeab09d95be4ec2ab4265585ec20432", "IPY_MODEL_a05fe5a1633246369d6b2fcd690dcb9d", "IPY_MODEL_9d1c3b25bbdd4d789bfc7071a3e41538", "IPY_MODEL_66a2dd1a9dda470988c15ca6b67e1a5b", "IPY_MODEL_cf012dffa10a42aa99521107cd2d6100", "IPY_MODEL_21f0d74949344166a93b042ff7a112a2", "IPY_MODEL_149461cd813f416ab90f6f844429b729", "IPY_MODEL_9f8c4eaad64a4ce38a4f12e38d3c472b", "IPY_MODEL_1993689e591a4222b3da8b2d9178c9e6", "IPY_MODEL_aba5896fb08d456ea3c661d40adda32d", "IPY_MODEL_f467e0e0c088411b99b4759c1f5f93f1", "IPY_MODEL_2ca52cf1efe7456b90c1e73bc1e7598a", "IPY_MODEL_a7ed8e7acbd34a338f8b93526e097648", "IPY_MODEL_f5f217e26e2d48f7a27f3c99ad6d56b1", "IPY_MODEL_98d1a465247447f1b8b8ed07bec317d9", "IPY_MODEL_b16c302f0fcf4265b1fa923457ced1fa", "IPY_MODEL_cb40dbde73604b3d9ce9c56c87a12725", "IPY_MODEL_2433df99749e4a408db8febc425a5dff", "IPY_MODEL_1f10b43de14941b0b3bd82c591023470", "IPY_MODEL_921dadd337ca4f269aa0f5cd5208b3dc", "IPY_MODEL_4b269d48f3af4027a74690f28a32088e", "IPY_MODEL_3360fc5ecb6344beb2082eb4a2d62be8", "IPY_MODEL_079176b3aca149728f7c4dffc2cb3a12", "IPY_MODEL_1a20ea505f2846a1a12c345524133c1e", "IPY_MODEL_08505efd8f2b48358e77d48c61c59004", "IPY_MODEL_86ef936c815441278365d452f731f5c0", "IPY_MODEL_82d5be229a6f4154a2ec9d351d184d23", "IPY_MODEL_9fd683cebbed41399f99fa96ce98393e", "IPY_MODEL_11657271a4da44299da22003540cc435", "IPY_MODEL_cd3134237faf46b1815d4435af3ee1a7", "IPY_MODEL_5c50f2e06ddc4796bd882b2207cfb8ae", "IPY_MODEL_df94a0126b384682826ee2451601d30c", "IPY_MODEL_4ad8b5c4a5154a64bf791abba91ede62", "IPY_MODEL_f88c5838ecce4bc6807a027bda982702", "IPY_MODEL_a65770eef3fe4466b777be488ceb570f", "IPY_MODEL_4111696ce6684650b2e6a37a8c9f6fa5", "IPY_MODEL_d7860148a6044f99a2e69e2a9fc2f300", "IPY_MODEL_4eafe8fc03c947d0afac428a3541a710", "IPY_MODEL_ea77f2be6d6744c588ffd8cb4086c66b", "IPY_MODEL_47b592f3dbff4258b68a09a0144c9a02", "IPY_MODEL_a3519ff5de8f4ae6a86c3b195732db22", "IPY_MODEL_04d69a5890d84d0eac2acbac96d5c123", "IPY_MODEL_1e4aaf92c66d4ec480a19d9d12847cfd", "IPY_MODEL_6c80f9b8b26e4d1790d05a1b67c86ecd", "IPY_MODEL_c8e82357bff9404d96b01bf23e0138ab", "IPY_MODEL_816d26d8aefc4a848f930d41674a872d", "IPY_MODEL_b04560662bf44690a0ef4726a9c34b1d", "IPY_MODEL_82f8d08554f44ef490f13736eb47689b", "IPY_MODEL_bf5f5c6392dd43c497f64c691ee482f0", "IPY_MODEL_018e93a49ae34e4290e87d68f7df08bc", "IPY_MODEL_894447c405f74d09b1f5000a409bbe44", "IPY_MODEL_ad7441970672427e990b1352885da729", "IPY_MODEL_f8a6410e430347799cdc5438fc99da22", "IPY_MODEL_334af036dc3c4900a6b6032aeb260ac5", "IPY_MODEL_429f2cc47afa4497ac73629b941227b9", "IPY_MODEL_aff54be28bab42079667f4ab456f7040", "IPY_MODEL_e74b8e991de943b080363964b6b27677", "IPY_MODEL_2a9be48af54343798bccc9090386db09", "IPY_MODEL_91a3761e86474909a7f6daee520ef35a", "IPY_MODEL_f7cd177d10224928aebe79b65d73e385", "IPY_MODEL_97bc8c2fc0a742daad8d560d959d1ff9", "IPY_MODEL_1ed0a368f2424667a2e1d51d1debe89e", "IPY_MODEL_a380bae7de1e4bd2958e05673b07baab", "IPY_MODEL_126db8568d2b44c7b560643fdf607850", "IPY_MODEL_a9e94cdc72244b038de897782665ae89", "IPY_MODEL_3cba8ead8c1c43b987a7b0921adb9646", "IPY_MODEL_c44374aff8574ac191254da041d9f387", "IPY_MODEL_4486ab5252f847d0976b94dbe503f87f", "IPY_MODEL_3dd7b24d57154945ac5cb7112daf0db4", "IPY_MODEL_88b0b1c51b2d4857a953c3055686ca65", "IPY_MODEL_9cee985cd57044febd1d78e77b1e57b7", "IPY_MODEL_b33c3331db62490caf6ff799a90c7fd7", "IPY_MODEL_4657418ba2fd4f898ee7f544de830b3a", "IPY_MODEL_2d975fe2770f4ab684aa5778ed740cce", "IPY_MODEL_0419887e37a24ee8bc93acca77089eba", "IPY_MODEL_25ffb51715a44341aacb3fdb132f5453", "IPY_MODEL_88c1526472cb406d98ba088e7dd46a55", "IPY_MODEL_6500c5dcae26448186bb001129e0a94b", "IPY_MODEL_d3fed2db68ef4ff6a3dd02fca320e5b7", "IPY_MODEL_905310dacd71418aaa07dd84e412af2e", "IPY_MODEL_59a92c78e83645e7b04db6faf96e1c97", "IPY_MODEL_50500ca4e2494442ad3a454868c1d577", "IPY_MODEL_c1fb21b167ef4412a6d6b9a90d948dc0", "IPY_MODEL_f2a84b8286e94f10876f824cc88c9fb4", "IPY_MODEL_dec9fc57020549cb99266de89c49e534", "IPY_MODEL_be2451b100284855945106134ab400dc", "IPY_MODEL_4144c9e5fffd4539b8b10d7ba42160eb", "IPY_MODEL_3bede27be82446cca4293a7e5a34e350", "IPY_MODEL_972b552d0a86473b8767c77402f43b60", "IPY_MODEL_9da827b2a6394804b10ba6efb1fcb4a4", "IPY_MODEL_1ddfaf50bae4463f94e4466b1d091ef9", "IPY_MODEL_bc687fbf7c244a448528c4ebcf92b7d8", "IPY_MODEL_68021620fce847cf962107a87acf4548", "IPY_MODEL_fbef19ea9c754b268a2067352512a76c", "IPY_MODEL_0254db4163f1405b8fe51f8c49c5c64f", "IPY_MODEL_d0485d74b8f546bf9368bc030f5f7092", "IPY_MODEL_aefff9ab309f458bbdce5be3aebaab7c", "IPY_MODEL_0b48ddac9e984530bb26fa8364094a15", "IPY_MODEL_89b18aef35964d099f55935f4d39fd76", "IPY_MODEL_c2e79f2967314e84b4e1d619dca59c34", "IPY_MODEL_d36c9bda58f44a1f94a29126f441c02c", "IPY_MODEL_bf04e8fa5f224c21ae02e48c07269578", "IPY_MODEL_bc6b022d383846338ff06140509d45b2", "IPY_MODEL_3dc0564c363e41d2a3e100b15c21d939", "IPY_MODEL_1a8c1313f2eb4622b042068dfa3fcb23", "IPY_MODEL_559a608e9df349c283959043a9b98b78", "IPY_MODEL_aa71842779fd4c739c9af1d3d11e7466", "IPY_MODEL_2a5a776fcaa2417c811cdfceccf8973f", "IPY_MODEL_827823591ae34370992532451a5c0466", "IPY_MODEL_c48b5fdfa86745558c5420b6736c5043", "IPY_MODEL_0d92a69191ef400686bc2b0d7ce63220", "IPY_MODEL_a9149c0ab8834b3fa8fed7160751a18e", "IPY_MODEL_a1c6d4c9a75640538a5acfd4fd1536f0", "IPY_MODEL_426c65378cd54083ba62f304e0149747", "IPY_MODEL_9e90bb28c9ff4e47ad6cd282d9ee6025", "IPY_MODEL_c9a34737da974ff796231f981295d979", "IPY_MODEL_d687e04a5ab4498bb0c54e4d9e510195", "IPY_MODEL_243a81ab13f848faa994202c3ae4cc41", "IPY_MODEL_48a50e94ce0f4c45b411a4edec7f280c", "IPY_MODEL_be14bdecbc334184ac2e7dfe591cb1b1", "IPY_MODEL_e63a7956be264274935ee87c073e75cc", "IPY_MODEL_88bf404e5921412cafe2bac3b17feba5", "IPY_MODEL_96660a617d3c4597a96299d81a66fede", "IPY_MODEL_ca6ff035071c4139b452bc03d32f126d", "IPY_MODEL_ddfc7c0f6c6a4fb196451e9f05611ed3", "IPY_MODEL_9f4e6743aa58467fac6e76e94338023a", "IPY_MODEL_e3b28981f37546218313234a54e809ac", "IPY_MODEL_01e34860bb804552b40f76dd373f1af9", "IPY_MODEL_7bb4b020329842a99677e737f1ea4338", "IPY_MODEL_d0c190f30e4d478586438ec5dc03d7d7", "IPY_MODEL_cfe487fbdef842f297d2cc7fdba924b2", "IPY_MODEL_2a626d6ec2894db0910a6c97d6ca8d67", "IPY_MODEL_e1918dd72bc64d9688e0a0907b57d93d", "IPY_MODEL_3d33032efac84ec995ffee24a7fcf9df", "IPY_MODEL_48b490208c734467b57e55b88a115199", "IPY_MODEL_596f3e40e2e24d12b3db7fd410d25ddf", "IPY_MODEL_291eeabb3bcd4796a070ea320501df5c", "IPY_MODEL_a9f52ef73a68451799b82e49b6306e0a", "IPY_MODEL_16ee4b33cf4b42eba400dad4cb05ae34", "IPY_MODEL_b7212c11d29c451e8d0b2127712e8a8b", "IPY_MODEL_7fa26b20e6e24497a7805c9bb2f0ffae", "IPY_MODEL_258948c2f42d40d58398de2bb3b207fc", "IPY_MODEL_febe5928c1d44670a0f2133e9434a320", "IPY_MODEL_93ef10263a64438c8e1a7abe1f11d19a", "IPY_MODEL_11c5170820fa443ba93ada64efd551a0", "IPY_MODEL_25ead47f4a204ff8a674d51fbc020bf1", "IPY_MODEL_d7d3a7b02d914390b03e7a0402e3d2b0", "IPY_MODEL_31bd3cd3f8a54c31aadf8d9d7f7a0d16", "IPY_MODEL_b387673c3d044a53a616ffc6f423e40d", "IPY_MODEL_645be34235b64623b64d6dc193969990", "IPY_MODEL_aa5468d2396d4f4ea8e76e6e4531c3c5", "IPY_MODEL_288e964d1cb54b42889f9ef5f8ac04e9", "IPY_MODEL_f743b8c8ecfa45879f6076112cf7237d", "IPY_MODEL_f414172d2c694ea8a9a5aed75b12f500", "IPY_MODEL_2a035747c2574b81af94a19230f8dde4", "IPY_MODEL_8f06006817794becbec8f6a4e2be401f", "IPY_MODEL_b52cc04b71a04f77acf02f0a0a6536fd", "IPY_MODEL_a8a1a5d5516e467cb8e78ccbfe81c491", "IPY_MODEL_e2484a6a803a4afda5b9e5564503e149", "IPY_MODEL_9c49ff59de30475aa2f384e928e59508", "IPY_MODEL_230afd245a204168bd8d00fb547a561c", "IPY_MODEL_062f989ea51e441cace202ca8d65b664", "IPY_MODEL_ff1ebf04dd39459db63096f4887522e8", "IPY_MODEL_f67d9218026049a1a2776753b5211807", "IPY_MODEL_6159a289865148c688db00c99c633420", "IPY_MODEL_7e5e31b728874988916cd169dcd5d056", "IPY_MODEL_6a856e63b94943339bd2558b07eb443c", "IPY_MODEL_cf52e8a491494564af4b0c5d7424441b", "IPY_MODEL_a1db1f35fc624020a6e345527b9aaba3", "IPY_MODEL_d952e9cf4b084523b3d4559c10921570", "IPY_MODEL_adf21b88e70c43ac871f6917477b5b54", "IPY_MODEL_0c960c2153e2494fb7c0cdbb5a6a713d", "IPY_MODEL_d2ffed5f6823467eb8bc3ce33f23728c", "IPY_MODEL_2ecaf98003304b62904954aa792718df", "IPY_MODEL_6ed406bb9f5945b08abe420ae71176f5", "IPY_MODEL_867cc2d7c08e47338db76e01d8ab9705", "IPY_MODEL_2b8c24bce5484f26931350aa61a9a009", "IPY_MODEL_b82099391c684d75b77c49ae7601216a", "IPY_MODEL_91d4af68dfae448db5f63e9fe2f07292", "IPY_MODEL_8fc409c70b1941428f04348a884dcf99", "IPY_MODEL_8ce931ea556d4990a52e45ddeacf9ca3", "IPY_MODEL_c6ac6d598bff4c91b6732cbb0dc54278", "IPY_MODEL_356940a213fe4a7799477d4d3968ac78", "IPY_MODEL_83a49b6665c6444e86d75c0d4e5d5150", "IPY_MODEL_65446976616d4fb98730a4e667f65a70", "IPY_MODEL_bbf9073a60c74f038abc813f8b343b44", "IPY_MODEL_c752a8e3c2da4470a0753f7155248024", "IPY_MODEL_3ef86be419f24b31bc3b85fd8c040345", "IPY_MODEL_1c00eb08d3224ebc9acd21b234389599", "IPY_MODEL_0da2c05c4a3941bb9da36de7f2f9777b", "IPY_MODEL_6dca69d4d5c14f20930401a1bdc1e5a8", "IPY_MODEL_0457631fbdad4555b92f9539ce317b19", "IPY_MODEL_bb035c3487364f0fa3cfc69236083e3e", "IPY_MODEL_5442d2848df742d2a46694cb2c35f487", "IPY_MODEL_ba2c5f06c44e42349ad619981101991f", "IPY_MODEL_e11a90470b984368b83eaa1a0e0b924f", "IPY_MODEL_471f875fbd634e94b2e549bb6be4c84c", "IPY_MODEL_37f2e265e9814e7a85d6f7d22d93b1ee", "IPY_MODEL_52bd6565411d443a9ede7896241d362b", "IPY_MODEL_982cf825c27c4185a7bbdd56d8ce690a", "IPY_MODEL_79c92b094d1149fbaf820c730349dbc7", "IPY_MODEL_7e561221c21a4121b746b7453e738179", "IPY_MODEL_235cb0fd3adf4a82bf1e525f9ce1140f", "IPY_MODEL_06611a884a4141658ba42366ce954780", "IPY_MODEL_c5b4c64c71874daea6c40251ff808739", "IPY_MODEL_dc35f95457134b03bf0e6dad9ee2a080", "IPY_MODEL_d5a8886e6192437b94c5d67afba44eee", "IPY_MODEL_a65bc496e7644b6a9d2700b74ad8732f", "IPY_MODEL_7fda80ba56ad465799f5eca9cdc252fd", "IPY_MODEL_6fef7896a21c4c1b9a78abee5fa02794", "IPY_MODEL_afc1629f15284fdb8a9208907c45c1b4", "IPY_MODEL_2409f6da2d4449e8b59e6e0e2df57ff6", "IPY_MODEL_6436c909063641b6b9875a10793af194", "IPY_MODEL_2c2d453f44a04332916028aabb849c2c", "IPY_MODEL_1eb0d31255404c47a3126ce4ff805af4", "IPY_MODEL_19edd114752d47ca949188cd5e078787", "IPY_MODEL_dbf22241fb444980912fa1933ad6b27e", "IPY_MODEL_55a7b36e36254126b48fdc6f86788aef", "IPY_MODEL_4e985d340fa348d8ab7e59255d72de87", "IPY_MODEL_d7573b63dc7a4da78b81c3543ae29e4f", "IPY_MODEL_897c14ccba474f07a107480dea4c8716", "IPY_MODEL_9c9d8bb3e60f480884a14f7c0289961e", "IPY_MODEL_5b89c1d643e44d80992d5d8b8791bfa2", "IPY_MODEL_c9fad6aa8d174255a79c0fd61f129f7f", "IPY_MODEL_1cfca26f05534a2eb5f52952bdad46ae", "IPY_MODEL_6235dddf98974e8494209ede31ff51fa", "IPY_MODEL_ee89fe48c8634f0bab83c435e169ca0a", "IPY_MODEL_a8b3902decd74a3e966880a15d482bf0", "IPY_MODEL_545ae35b01ee4890b3e5626193e631ed", "IPY_MODEL_ccce02b8899e4e1e84cb43efd0b411f3", "IPY_MODEL_0e4ffe7c03c44fc4b43180fd036f90aa", "IPY_MODEL_73d8dd236ce14ff69a36553078d1365e", "IPY_MODEL_4f04c43dcdc049649bdba6b7bc57a681", "IPY_MODEL_fd9fad71e912484bbbaaee469b9dace6", "IPY_MODEL_624c642b7cd543b192b838e2d2fa72de", "IPY_MODEL_1bef17c742c4430d84348df9b327a002", "IPY_MODEL_a6542a1b704f421494a046378fbbc9ef", "IPY_MODEL_23b6d93973db4a3d87fc3692f5659602", "IPY_MODEL_d65efd60aa2748b39d79c35fb9b376b3", "IPY_MODEL_d815e5c8f83a4dfda0f5b49139ce42ad", "IPY_MODEL_7fdc42c6df2e4297859e33a6b80ad028", "IPY_MODEL_839a3c751c174351892ea05399d6e8ce", "IPY_MODEL_1caf2b5ca9f1477c9cd27ac29e3c4500", "IPY_MODEL_7c06a69f56d8414490c6bbb6a6b53de5", "IPY_MODEL_d2befa43b81c4e0d9ea746d9158444b3", "IPY_MODEL_8037675219c54c2c8a808a64a05961fe", "IPY_MODEL_b8d37af73ae24bd5be2efa6a99cfa0c8", "IPY_MODEL_ea221beb49f1424099e2618ae1128512", "IPY_MODEL_4f7033190cc8459f8982f0aeb0535aa9", "IPY_MODEL_c5b7cc009b1647e5a107981ac79fc7ac", "IPY_MODEL_14a4088ed9304f0caecb40f21538b9c3", "IPY_MODEL_e7ef526309bf474c88151ba5cb3bdcce", "IPY_MODEL_c562aeeb3a4148b39e17db1e9b40f711", "IPY_MODEL_6cf185d0531a49fa9d8f18457c7fac76", "IPY_MODEL_a1527b71365946aa8a37b367b7365985", "IPY_MODEL_d1b15609eec447b99e764bcf2aa92a22", "IPY_MODEL_f6c775b8c90b4d2ca8d868a7a6fd3c7e", "IPY_MODEL_54e24b22140e493f848178faf105e8f6", "IPY_MODEL_748aafa278cc4cd19051639c9a005744", "IPY_MODEL_c094321949e548649431456038b6a49e", "IPY_MODEL_3bc50452e4b04be1bb1969635bd177a8", "IPY_MODEL_6db0f3ab982e479a89ea57efb3728b74", "IPY_MODEL_84d768f345ba495ebf8e8bfe7a964c87", "IPY_MODEL_43952b7de8a343b5ac76ff7251392362", "IPY_MODEL_4b8c211e08864e2aa66b9ccc44f356f9", "IPY_MODEL_103f658b359742daa3964ba1850505b8", "IPY_MODEL_64097fa1b4c74e829b95bcf0a31e250f", "IPY_MODEL_9f96e8d64030424b99283de8a7a8f899", "IPY_MODEL_4e1bf46f560f4fa49a21c74b321aeaf2", "IPY_MODEL_14580fcf168245ae879aaf1fcbdf4b8d", "IPY_MODEL_ff5dcc7e3c214443b389d398c588fd50", "IPY_MODEL_77eff07a45d5437b9cce28b755bdb730", "IPY_MODEL_f9327f2bae154c05abee08e8eb43ae0e", "IPY_MODEL_24f06c0d30c84b8ebf7a05b31e0f94e0", "IPY_MODEL_b92f89abd7ee4809853fa5592d49915b", "IPY_MODEL_82efcc3fb8164680a7db3352d97634c8", "IPY_MODEL_296bf9f9994c4069a9cf94668514fd34", "IPY_MODEL_42427007482f41f6842b38c39a90ef8b", "IPY_MODEL_b3812b57102c4142b763963efaa13e88", "IPY_MODEL_eb073679140246569db0a7b2c8688fd7", "IPY_MODEL_bf4cfccc3c4c4d9b8edabe2d460475b5", "IPY_MODEL_c9e3949025604fa4bb99efbe6c5e7a5a", "IPY_MODEL_e2a8e55ba34b4539a00561b21dc182f2", "IPY_MODEL_986a256955e146e59d0382b2fb44e7dd", "IPY_MODEL_2123ac1f68204f758afd21e7cbe4e90c", "IPY_MODEL_07c55f904bbd4a309b98c6c95b802f0b", "IPY_MODEL_cdfffa46cf0c42fc9faa7fbd3e82e12c", "IPY_MODEL_a7817088554642a3bd9312e3cef5e102", "IPY_MODEL_9d07e97b1a064cecafaa05d93a62ca44", "IPY_MODEL_5c3bddeb8ec84c62a2f30edc5eda98be", "IPY_MODEL_9f819955d8cf496a8aa8b6dab5e3fc71", "IPY_MODEL_8776ca2de9fe47d0a5ac3759dace45ff", "IPY_MODEL_29663c4e13cd4de591e3816563352655", "IPY_MODEL_9570cd0cfb4d4d3d8f9dc4fa23d4414c", "IPY_MODEL_6dc506cbcc5b48c28655777436c85e63", "IPY_MODEL_5f0e7d7d5dc84b719f2d936eb6ad2dd8", "IPY_MODEL_abe3e42c8d574d7cbba3f043493640ab", "IPY_MODEL_d8f095ab439d44b6abb6bc9461be09d6", "IPY_MODEL_04959ccd6f7146edb0a50677337fdec1", "IPY_MODEL_396b7d4cae484a5cae0b8f94a0b03a84", "IPY_MODEL_7dcc09c9efc943948e82f0a1b7e976dd", "IPY_MODEL_b5252ab1cd5b480db570700f15481ac9", "IPY_MODEL_90cbb1ce16634cb788f6fa7ac7e29313", "IPY_MODEL_144a5899f53b40ad922f874958c693a8", "IPY_MODEL_b39a7896c9ad439093ef531945665536", "IPY_MODEL_375abc79acf540ccb546e9c873ed0c36", "IPY_MODEL_e80cb88271e04a8cb0b470f8d740b737", "IPY_MODEL_4f5a4e19919e421bb6bbe1b0403c4f6a", "IPY_MODEL_e93dc771a78242abb685fabd7bd13882", "IPY_MODEL_fe475ee50ed4484c93703b1e77cb3087", "IPY_MODEL_a44066adceab4fbe8c89d8d13a1518bb", "IPY_MODEL_4fb33b3a16354055b8ca4f22b1e2e899", "IPY_MODEL_99c6f352fc3f4e7e9315a43656284de0", "IPY_MODEL_035f69db6bcf4ea6812c790f78d4593e", "IPY_MODEL_a02c9e917d1445999d1c47720b0b183c", "IPY_MODEL_845547dc24e54404b977f50ffa265795", "IPY_MODEL_7143b54e293a4484b221143ad75f57e9", "IPY_MODEL_d5292cd2284d466c9661ecf4ac7f52df", "IPY_MODEL_6385889410264316927e1718e63ab7fe", "IPY_MODEL_3f044c6e8ab9495eae6191c62242f9cc", "IPY_MODEL_bd59a3892d4842c3ab8172f203237b6a", "IPY_MODEL_09d962ccb46247388f61ce6b82acb3de", "IPY_MODEL_468272e39f684e35972d50783f47aa71", "IPY_MODEL_f039f9ea6c8e43719dfc24de8727a93f", "IPY_MODEL_3f4eff4d0e1a49f992e4f485f9e993d3", "IPY_MODEL_a14bbc377e6045a6b97be0b8b97935ff", "IPY_MODEL_63386211e06740debdfcdca869e9d526", "IPY_MODEL_717644e8d1b7423b97f05fe835774309", "IPY_MODEL_1cbab8af15fe49d1b6343139dbd61b87", "IPY_MODEL_2c5cdbe2c10341fcac1238f0cedb3018", "IPY_MODEL_9bae02e3e98d4d92a3c22981eddc8474", "IPY_MODEL_e277bcb8dafa43efbcf168935fc0486d", "IPY_MODEL_ea180974824f408c8c893dfb5893ba95", "IPY_MODEL_13e3f7e6deb44859a1d3ca80fb714529", "IPY_MODEL_14d1fe2c242149cd876bdae864e00169", "IPY_MODEL_5fdc4ee035464c8b9fe7b2e61aeaedbd", "IPY_MODEL_973989d2a695489d9c576fbf5f1fbe70", "IPY_MODEL_0710db5a45a14b2584fd4e92dc58a458", "IPY_MODEL_9cb70511699a4c7ba39103d20ede9013", "IPY_MODEL_1aeda839e79c43548e64acb23e2d7a8c", "IPY_MODEL_818eccc89d8f47e38d15236ba0fc01b5", "IPY_MODEL_69cf5df07aa14169a9cde3da38ca2acb", "IPY_MODEL_8d504db552844799aefba30ba5fa532d", "IPY_MODEL_373b178c8384412999f5105edb48dd0c", "IPY_MODEL_039caaaa155d4ee58245fe1def77acea", "IPY_MODEL_22274d814ce7491e8e9f7a81b99ef37b", "IPY_MODEL_e6bb2ee44e774d8db264b312a9d4c776", "IPY_MODEL_72f553e1ff6d46e199be20dcf270b30a", "IPY_MODEL_c9bf851a801a4577a7170b11580713cc", "IPY_MODEL_244eba2be0b249748980f83fdb870246", "IPY_MODEL_52298a3d8cd74ef9aa44d1af57252292", "IPY_MODEL_500a561d76ea435c84beb003fce09d9a", "IPY_MODEL_5605b3222a8b43518797fdde3ce4ea23", "IPY_MODEL_31a41e18c2d54b39a3ade4c67f0adfa2", "IPY_MODEL_32eefb20ae824b8295511748a4632ac2", "IPY_MODEL_bf29e669ace1498f9efe663224b2fdec", "IPY_MODEL_3ccaf38ba1ce49149dc8b90c0b2df71d", "IPY_MODEL_4e49343462324e168c69c6af9a86955f", "IPY_MODEL_d36b36813dd04809b898682223a52fa5", "IPY_MODEL_9d65edded4364d1b941d3994b1e77254", "IPY_MODEL_dedb45f794554a17b3ebb1fd692a139a", "IPY_MODEL_fc3987432dfc4e488b8e6053302a1a20", "IPY_MODEL_2c2e00d922874a6c97567d1628b9a5d4", "IPY_MODEL_d33f790851034a66a299f508104fe0a1", "IPY_MODEL_c640fb7049f84f0b87eff459a4912203", "IPY_MODEL_175b269613c44868a34b62ad933757bb", "IPY_MODEL_a0e75b902b404d928a1941d151bf33cb", "IPY_MODEL_f6bc75cbd03d40df919e45e9fb83eddd", "IPY_MODEL_83238a5306724c68b2f36e83abd6fa01", "IPY_MODEL_297d82b541ea44178dfaa4a7b21f69bf", "IPY_MODEL_58874f541d7044a891c7fd5b89ecf1ac", "IPY_MODEL_6b237cef92384ef5a9cb6a80b24e3580", "IPY_MODEL_a0d919ef77394328acd54850ad82e2be", "IPY_MODEL_e1c7f3a0df804ef0a768ff8853512f4e", "IPY_MODEL_9018d2357aa648268e19a1b3e36d1699", "IPY_MODEL_62a573579700460485a434a25150b334", "IPY_MODEL_a7b259a757824b4da61e87d9a4cfb25d", "IPY_MODEL_04e60a508ca74f988dfa519bc461a7c2", "IPY_MODEL_ef406464e59a4854bb21584ce2985cf8", "IPY_MODEL_0725fba3b8ab493ea670e2e319a3e270", "IPY_MODEL_10b554a6b46f4a419feaed8c261a14d3", "IPY_MODEL_7b9ad3d5e02b448d96ea1ded5c548931", "IPY_MODEL_cd2d507d43cb4f3dbfd603622687ccf4", "IPY_MODEL_2498256677764cb38d50753d77f010be", "IPY_MODEL_041b2f51618544ab90ff0c5ceb0f0288", "IPY_MODEL_5639e143adc442d6948a81af8446b252", "IPY_MODEL_ffc1a7933d904d7f8b805ec161e7ae31", "IPY_MODEL_e9d733121e404de18d4ad906fef4803e", "IPY_MODEL_105933aa4b0c41408b54d2e65c5d4aa8", "IPY_MODEL_74e5909a0d5f49e6b1dc5e94e9f9b6f0", "IPY_MODEL_68349cbc15964aa4995ff6e1674900f2", "IPY_MODEL_002232d21de0457dbf41ef0fb8d711aa", "IPY_MODEL_45fb228ef174479bbf285c82f4a23f30", "IPY_MODEL_ce6c805b50164d3f833c32a46d2f98ac", "IPY_MODEL_35c13a99dd6642289cc7ff2dc8a71c0a", "IPY_MODEL_79cd06f9800246a9ad7be651cc896891", "IPY_MODEL_4eb9d79faa004603a7f89d9462af562c", "IPY_MODEL_45ead647dce14bbe98fdb801bcfdfd3a", "IPY_MODEL_4d9084eaa6c04f429ab756af14ef5950", "IPY_MODEL_e9166ee519f943a8819f9d62f3d090a1", "IPY_MODEL_b0cc07e6fc8340e4a00c2a5c66790d89", "IPY_MODEL_dc8867e4d78f45dea4faa79c438cf037", "IPY_MODEL_d05efa76baf34573aa9382b00e53fdc4", "IPY_MODEL_781d2de6e84e49a9b030249459a9ab1c", "IPY_MODEL_bbe83353d18f4f168d9f86baa32afc11", "IPY_MODEL_680cc672fb2a4311b5147756a5b47f0f", "IPY_MODEL_cf3db045a0294899a71e228623a8f865", "IPY_MODEL_202ce71ab150418cace74e282401ca82", "IPY_MODEL_928e35f7ae6a4507a4a4871230db9f33", "IPY_MODEL_323570f9e8ef49a6ad386ef96b5c1a19", "IPY_MODEL_e5491c8414ac42c0b481ad6750d51940", "IPY_MODEL_d25ffc9f11af408aa1dd93d62fc4265c", "IPY_MODEL_843495f6e1ac4c118922f33f08723af0", "IPY_MODEL_687031bb3729459b879bc9de06bfca45", "IPY_MODEL_0eee2d65b5a4421d8ce6d327d2c3fe61", "IPY_MODEL_4ef582ef24fc4fa3ab0c188906c48a6e", "IPY_MODEL_7cc6f89150e54efb9aa490e282a220ff", "IPY_MODEL_b3ab76b11ee046e6a538863b246264b1", "IPY_MODEL_c540aa6ea340406c8690499f75e96049", "IPY_MODEL_fb9d6ae59cb54011acee1fcd35ffcf1f", "IPY_MODEL_69c1a69dcd464aba8bb7a2219343d496", "IPY_MODEL_b740095300294595aff9012a2edcd8a2", "IPY_MODEL_abd377095c4d45a3bdaf39c5c13a812a", "IPY_MODEL_7ec36613431d44a88fc665a79795f71f", "IPY_MODEL_6ec83c9d08dd4dbcbf48789e929795e3", "IPY_MODEL_4ac6038978b64493ace0e439de59674c", "IPY_MODEL_e8cbeebf217f40d9b5816f1dc0f96bd6", "IPY_MODEL_621763df4c104eb8960b8abc50e4c6c4", "IPY_MODEL_ae8fdf6372454405a8b40c0cb4cf086e", "IPY_MODEL_f2775c9553434823a3572659966527d2", "IPY_MODEL_2915499908074f64b8b564bc67174145", "IPY_MODEL_7908c52ab53a4b8fbd6050120fa691bd", "IPY_MODEL_355ac6d55ee04e939a70ce7387fb9f4e", "IPY_MODEL_6f5d9be3c1ca4191a50fa71bda18508b", "IPY_MODEL_bbccf8b01c854e4793345a0f972cd65a", "IPY_MODEL_13a5907caa55410c993be94f6d997b90", "IPY_MODEL_1009c612d04a495198f69066a1f204b2", "IPY_MODEL_34c65218f30c47118b32135228a45bdf" ], "layout": "IPY_MODEL_de2767f2092e48cab814941ccb157e86", "msg_throttle": 1, "options": [ "tap", "keyboard", "zoom_start", "min_zoom", "close_popup_on_click", "double_click_zoom", "inertia_deceleration", "scroll_wheel_zoom", "zoom", "zoom_control", "zoom_animation_threshold", "world_copy_jump", "bounce_at_zoom_limits", "inertia_max_speed", "keyboard_zoom_offset", "touch_zoom", "dragging", "box_zoom", "max_zoom", "attribution_control", "inertia", "center", "tap_tolerance", "keyboard_pan_offset" ], "scroll_wheel_zoom": true, "zoom": 2 } }, "6f9d6e4a83f3418a943af4a65c9809cf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.746604200046136, 15.445576266651287 ], [ -56.1344214183599, 17.649637193880032 ], [ -57.624361583844546, 16.50025461630865 ], [ -63.446501466725216, 14.171400060470534 ], [ -64.5610010467612, 14.109910590673937 ], [ -64.65910396060286, 14.119575922665348 ], [ -62.746604200046136, 15.445576266651287 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6f9f976e310a47d5a779a71ff4f06a16": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 52.76086956521739, 28.578804347826086 ], [ 48.38392857142857, 22.013392857142858 ], [ 47.56392045454545, 26.5234375 ], [ 51.07425742574257, 29.281559405940595 ], [ 52.76086956521739, 28.578804347826086 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "6fa7b52a807f4a07a0d8b2beb17be7ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4.5, 114.66666699999999 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "6fef7896a21c4c1b9a78abee5fa02794": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -65.50324553738248, 14.682556835644633 ], [ -65.34108922815484, 14.596404947681389 ], [ -65.21347445472163, 14.459674824410085 ], [ -64.93390814958786, 14.087943803298156 ], [ -64.96977329998248, 11.254585732152242 ], [ -68.49967821943429, 9.363565239588775 ], [ -68.72890341392828, 14.521183691888274 ], [ -68.54679897096905, 15.563225984493243 ], [ -65.50324553738248, 14.682556835644633 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "70eee36fdc594f859f3558cf1e6d9bf8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.77976194285714, -9.66666665 ], [ -183.1922749391728, -1.611192214111906 ], [ -276.328125, 67.96016566265047 ], [ -276.328125, 80.17871349622823 ], [ -275.48308134938577, 80.17871349622823 ], [ -158.5306729184465, -5.027678508745646 ], [ -164.6394390550387, -9.66666665 ], [ -164.77976194285714, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7143b54e293a4484b221143ad75f57e9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.214285714285715, 54.785714285714285 ], [ 24.07142857142857, 51.92857142857143 ], [ 18.5, 57.5 ], [ 20.5, 60.5 ], [ 26.214285714285715, 54.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "714b8055c536433481e9c809fe1db315": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.5, 1.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "717644e8d1b7423b97f05fe835774309": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.439308997360335, 14.170491538406978 ], [ -63.446501466725216, 14.171400060470534 ], [ -57.624361583844546, 16.50025461630865 ], [ -59.85090662959023, 14.323187854569529 ], [ -63.439308997360335, 14.170491538406978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "72370bc5647f46beb7504b524700d291": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22, 17 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "727f35f2c5884870a5e4193799eee297": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "height": "500px", "width": "100%" } }, "72bd911449b04471a90398da6973f7b9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.04167, -63.066669999999995 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "72be1e3b257b4b1a9750ace553ed9c2c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -70.35285300194789, 8.029279502921838 ], [ -65.17391304347827, 0.2608695652173916 ], [ -64.80150753768844, -4.580402010050252 ], [ -65.5, -5.428571428571429 ], [ -68.75, -4.5 ], [ -77.73013245033113, 3.7317880794701983 ], [ -74.39601999494, 9.066368008095981 ], [ -70.89838488585947, 8.229678962301621 ], [ -70.35285300194789, 8.029279502921838 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "72f553e1ff6d46e199be20dcf270b30a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.842391304347826, 13 ], [ 13.272727272727273, 13 ], [ 13.8125, 11.8125 ], [ 7.666666666666667, 5.666666666666667 ], [ 7.153846153846153, 5.538461538461538 ], [ 5.544117867770639, 5.717320236914374 ], [ 5.446735306940168, 6.050043970188057 ], [ 4.842391304347826, 13 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "73d8dd236ce14ff69a36553078d1365e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -98.3029214480826, 7.690999280584988 ], [ -96.73651180719696, -1.2662164123666528 ], [ -96.77487043278369, -4.680138151091159 ], [ -98.8940331278323, -10.152006211468558 ], [ -103.16004951275413, -17.138177846795568 ], [ -121.2433711294087, -6.455291649717887 ], [ -135.92231409107774, 11.416829453819545 ], [ -137.88294597575836, 34.957403696829424 ], [ -99.8688999707149, 13.38455671254664 ], [ -98.3029214480826, 7.690999280584988 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "73e579406bc34823b67cc2c555dc5c84": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15.5, -90.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "74642a90481f4bc8b42f636a72bc5222": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -13.3, -176.2 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "74826283bc45426a90a6e45eb196e508": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.833333, 45.166667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "748aafa278cc4cd19051639c9a005744": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 0.46816978001290277, 80.17871349622823 ], [ 1.5, 78.4375 ], [ 1.5, 60.625 ], [ -1.5769230769230766, 59.47115384615385 ], [ -7.639462809917355, 57.51549586776859 ], [ -13.941176470588236, 58.21568627450981 ], [ -7.9512599555741215, 80.17871349622823 ], [ 0.46816978001290277, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "748cde76a5d1466e9fdbfecb3301e87a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4, -56 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "74b13535a94f4375ab7b5da2d0e45d0e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.01825943313615, 22.492226275690236 ], [ -64.27605747470798, 16.940080566962568 ], [ -65.34108922815484, 14.596404947681389 ], [ -65.50324553738248, 14.682556835644633 ], [ -66.01825943313615, 22.492226275690236 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "74b5ca39098a459d83a207521cc4686b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 43.733333, 7.4 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "74e5909a0d5f49e6b1dc5e94e9f9b6f0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 153.7605633802817, -2.436619718309859 ], [ 158.71578172054782, 0.23157477260266646 ], [ 166.73211465335726, -8.267885346642737 ], [ 158.93571428571428, -16.064285714285713 ], [ 152.40576923076924, -10.565384615384616 ], [ 153.7605633802817, -2.436619718309859 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "752698013b40437790f5e7ce21bf68f5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.166666666666664, 7.277777777777779 ], [ -56.136801956994475, 9.287732681001842 ], [ -55.89891052069112, 9.303268437926665 ], [ -60.109756097560975, -3.3292682926829267 ], [ -64.80150753768844, -4.580402010050252 ], [ -65.17391304347827, 0.2608695652173916 ], [ -62.166666666666664, 7.277777777777779 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7526b1cb542b413f876e38af888e9d38": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -68.54679897096905, 15.563225984493243 ], [ -68.72890341392828, 14.521183691888274 ], [ -70.89838488585947, 8.229678962301621 ], [ -74.39601999494, 9.066368008095981 ], [ -75.69854867196685, 12.800283424855905 ], [ -74.3580646864007, 14.556511641279737 ], [ -71.541667, 15.618076923076922 ], [ -69.07772341198282, 15.88342469409416 ], [ -68.54679897096905, 15.563225984493243 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "75d1c130d2dc48df938b9d53ad7f9aab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 2, 10 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "77eff07a45d5437b9cce28b755bdb730": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -0.49264705882352944, 10.5 ], [ -0.41666649999999983, 10.28472175 ], [ -0.41666649999999983, 0.7500002142857154 ], [ -3.5, -3.2142857142857135 ], [ -3.5, 10.5 ], [ -0.49264705882352944, 10.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "781d2de6e84e49a9b030249459a9ab1c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.784698164470235, 36.51889313162434 ], [ 39.58810318261007, 39.41285881635107 ], [ 40.8314700518036, 38.435941927474964 ], [ 41.95454545454545, 36.86363636363637 ], [ 40.142857142857146, 31.428571428571427 ], [ 37.92982439335175, 32.535087803324124 ], [ 35.784698164470235, 36.51889313162434 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "787ef327959649f8bc2d624b3f90fb14": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.950805199997426, -64.0185221111185 ], [ 44.84806791569086, -44.22082357533177 ], [ 45.04285705214008, -43.801731796910744 ], [ 49.32465014416529, -38.2837437605715 ], [ 61.19240924770094, -32.10600614503239 ], [ 77.06366145593447, -25.522116412964117 ], [ 80.31847569141645, -25.961956174515734 ], [ 90.46140165378344, -35.72315900772993 ], [ 38.47184369784168, -66.91689378129499 ], [ 37.950805199997426, -64.0185221111185 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "78be81f811c542f4a31c5b17724d051c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 54.46341463414634, 28.120426829268293 ], [ 50.14858490566038, 20.20990566037736 ], [ 48.478092783505154, 20.836340206185568 ], [ 48.38392857142857, 22.013392857142858 ], [ 52.76086956521739, 28.578804347826086 ], [ 54.46341463414634, 28.120426829268293 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "78f6b303a33f49a3adf059a5576c3f59": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -33, -56 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7908c52ab53a4b8fbd6050120fa691bd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 111.1996365700621, 10.303834917572708 ], [ 105.39215665397926, 15.5 ], [ 108.88327097592021, 20.89535884377141 ], [ 114.94192105365104, 15.104415033855883 ], [ 115.01592231071581, 15.027372616909282 ], [ 114.37592643202974, 12.164233393644647 ], [ 111.1996365700621, 10.303834917572708 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "79b3097ebc254310afe7f00564853949": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 52.256029642258895, 59.26685231115903 ], [ 50.68630726562837, 65.67655657227448 ], [ 56.21093847475361, 80.17871349622823 ], [ 74.18298243891442, 80.17871349622823 ], [ 83.18181818181819, 56.18181818181818 ], [ 71, 44 ], [ 68.48809998999228, 43.162699996664095 ], [ 57.76114404816097, 50.23885595183903 ], [ 54.28846153846154, 53.71153846153846 ], [ 52.256029642258895, 59.26685231115903 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "79c92b094d1149fbaf820c730349dbc7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -56.1344214183599, 17.649637193880032 ], [ -54.851649017960085, 18.502507584726434 ], [ -42.647190508937754, 25.626141678240977 ], [ -42.09370555292632, 18.684788419571937 ], [ -54.5, 9.8424847863339 ], [ -55.89891052069112, 9.303268437926665 ], [ -56.136801956994475, 9.287732681001842 ], [ -60.31626137783151, 12.116905419766404 ], [ -60.37424231068609, 13.276515031904768 ], [ -59.85090662959023, 14.323187854569529 ], [ -57.624361583844546, 16.50025461630865 ], [ -56.1344214183599, 17.649637193880032 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "79cd06f9800246a9ad7be651cc896891": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.1159951829596684, 36.04481059748873 ], [ -5.84044598302083, 38.47356786416664 ], [ -6.7003170151417955, 45.35253612113436 ], [ -2.74765924925983, 44.544850348371625 ], [ 1.1159951829596684, 36.04481059748873 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7a658445786d4c49b4b7eb9153281086": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25.5, 51.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7a7f909264fc41c8b27a9b07fb842826": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -68.08499191735669, 21.386180788630142 ], [ -69.07772341198282, 15.88342469409416 ], [ -71.541667, 15.618076923076922 ], [ -71.541667, 20.226930700438803 ], [ -68.08499191735669, 21.386180788630142 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7b357aa3c34344dd9bdbb49f7ef55e67": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 43, 25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "7b3820bca34e4953b7c7514dc1bdaceb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -50.35559264400829, -80.17871349622823 ], [ -44.57240199636398, -44.57240199636398 ], [ -29.236135857461026, -29.236135857461026 ], [ -15.515674418943778, -38.5886601339035 ], [ -13.725625953806592, -80.17871349622823 ], [ -50.35559264400829, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7b75bf5a625b4bec915302f3aed55eba": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, -2 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7b8dc2f34e92402da421af3749a905ad": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -82.78921576310886, 16.220588177668354 ], [ -84.85349475871489, 18.89650524128512 ], [ -86.15857079468962, 23.58511154755347 ], [ -78.61388916259259, 20.064259113283956 ], [ -80.68489583210638, 14.817708331580544 ], [ -82.78921576310886, 16.220588177668354 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7b9ad3d5e02b448d96ea1ded5c548931": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -12.409090909090908, 11.954545454545455 ], [ -14.5, 13 ], [ -16.1875, 18.0625 ], [ -9.5, 15.833333333333334 ], [ -12.409090909090908, 11.954545454545455 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7bb4b020329842a99677e737f1ea4338": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 1.366667, 103.8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "7bbbc85fbeb3483f90641ebc12c7697e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.083333, -61.2 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7bbed355bf4c4c08b060d79ba0c3ca4e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34.519365245189505, 33.02523488062875 ], [ 36.62500030689651, 32.45833328275869 ], [ 35.23106088842955, 30.890152221073883 ], [ 34.519365245189505, 33.02523488062875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7c06a69f56d8414490c6bbb6a6b53de5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 14.960560103396157, 47.994153636088065 ], [ 12.410750188456655, 49.75264334174569 ], [ 14.133064516129032, 54.181451612903224 ], [ 15.514705882352942, 55.286764705882355 ], [ 17.598525373166268, 50.65605472629718 ], [ 16.980857950263637, 48.090358487872024 ], [ 14.960560103396157, 47.994153636088065 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7cbd3c0a2e5943d3b15fa406b403e4d1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, 90 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7cc6f89150e54efb9aa490e282a220ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.427835051546396, 33.43814432989691 ], [ 53.67874396135266, 38.468599033816425 ], [ 54.28846153846154, 53.71153846153846 ], [ 57.76114404816097, 50.23885595183903 ], [ 63.620161109870644, 37.031566665603414 ], [ 59.427835051546396, 33.43814432989691 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7ccf59f4214f42e98e7635e7f832cf0e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 52.5, 5.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7dcc09c9efc943948e82f0a1b7e976dd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -2.237365902890134, 44.819623700412876 ], [ -2.74765924925983, 44.544850348371625 ], [ -6.7003170151417955, 45.35253612113436 ], [ -7.872972522649686, 46.0625658921405 ], [ 0.656780500166442, 51.10286815207589 ], [ 1.166198695233587, 49.17548088533882 ], [ -2.237365902890134, 44.819623700412876 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7dd2d174af0e4605a687c07528edcb17": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -6, 72 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7e3e69f1d4b347c9a3c3cebf7b1530cc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -4.5833330000000005, 55.666667000000004 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7e561221c21a4121b746b7453e738179": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.10678997556401, -23.162729080542306 ], [ 38.85085760731817, -17.60574507520024 ], [ 42.46443664721574, -20.106922813931277 ], [ 36.08748872777859, -24.744708810801882 ], [ 35.10678997556401, -23.162729080542306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7e5e31b728874988916cd169dcd5d056": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 54, -4 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "7ec36613431d44a88fc665a79795f71f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -84.84039352023821, 35.40818866041687 ], [ -89.60917051091685, 30.304700468627566 ], [ -91.2714425982777, 29.581023577881815 ], [ -139.12252343571157, 39.30724891155245 ], [ -148.27975412727093, 56.43450474763602 ], [ -79.1149149258917, 47.5899553466791 ], [ -80.41518568686232, 41.72091771943416 ], [ -84.84039352023821, 35.40818866041687 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7ee68fbc4fc849da9f8046494b073699": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.1469281096143, 17.133774559261973 ], [ -63.80586497026158, 18.200377289889307 ], [ -63.52215011315157, 18.173350959906372 ], [ -62.91871969518241, 18.02235756999168 ], [ -63.201638847461005, 17.556376725527574 ], [ -64.1469281096143, 17.133774559261973 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7ef56f748c654f90abed0c052ef1adab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -6, 35 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "7f938158b97445a39f5834e2c0e0f442": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 19.5, -80.666667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "7fa26b20e6e24497a7805c9bb2f0ffae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, 30 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "7fb1957a2fa449abbdfa878ccd2264ab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 33.19743739745738, 43.95384390381393 ], [ 30.24445688154456, 41.75554311845544 ], [ 27.5, 44.5 ], [ 26.22, 49.62 ], [ 29.1, 50.1 ], [ 33.19743739745738, 43.95384390381393 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7fda80ba56ad465799f5eca9cdc252fd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -65.48822279584417, -24.659281786533462 ], [ -74.85135135135135, -20.33783783783784 ], [ -65.5, -5.642857142857143 ], [ -58.17263266123864, -16.110524769659087 ], [ -65.48822279584417, -24.659281786533462 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "7fdc42c6df2e4297859e33a6b80ad028": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -86.15857079468962, 23.58511154755347 ], [ -89.60917051091685, 30.304700468627566 ], [ -84.84039352023821, 35.40818866041687 ], [ -76.66605839416059, 21.103102189781023 ], [ -78.61388916259259, 20.064259113283956 ], [ -86.15857079468962, 23.58511154755347 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "800c81d19432470a8d3950242e763c57": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10, 167 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8037675219c54c2c8a808a64a05961fe": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 14.133064516129032, 54.181451612903224 ], [ 8.451347305389222, 53.5501497005988 ], [ 3.963235294117647, 59 ], [ 12.5, 59 ], [ 15.875, 56.1875 ], [ 15.514705882352942, 55.286764705882355 ], [ 14.133064516129032, 54.181451612903224 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "80e4dd19ab71414f8b07762de5458607": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.416667, 123.33333300000001 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "816d26d8aefc4a848f930d41674a872d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -17.058329999999998, 42.71667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "818eccc89d8f47e38d15236ba0fc01b5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 166.73211465335726, -8.267885346642737 ], [ 158.71578172054782, 0.23157477260266646 ], [ 160.40494007960388, 4.785179761188357 ], [ 178.46018972151518, 4.642338163148159 ], [ 169.77381595324982, -8.251496935718524 ], [ 166.73211465335726, -8.267885346642737 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "819f262d1d334663a15b6fa0cf39a3cf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 23, -102 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "81c95ac775464a11a5c133161b92c13d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.166667, 44.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8267c9f5cde94738a8a6b5f0af784dc9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, 105 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "827823591ae34370992532451a5c0466": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25.5, 51.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "82d5be229a6f4154a2ec9d351d184d23": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 5, -59 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "82efcc3fb8164680a7db3352d97634c8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -25.28404570574557, 80.17871349622823 ], [ -34.6760021000632, 50.66113625694425 ], [ -69.56524712185802, 73.30448656867075 ], [ -71.03829574919178, 80.17871349622823 ], [ -25.28404570574557, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "82f8d08554f44ef490f13736eb47689b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 1, 38 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "83238a5306724c68b2f36e83abd6fa01": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.22, 49.62 ], [ 27.5, 44.5 ], [ 23.25, 44.5 ], [ 22.428571428571427, 46.142857142857146 ], [ 22.959219852648264, 48.796099263241324 ], [ 23.436440791223777, 49.780367326019814 ], [ 24.254716981132077, 50.4622641509434 ], [ 26.22, 49.62 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8369021f5f554aaeac5ab5169dc175cb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 43.933333000000005, 12.416667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "839a3c751c174351892ea05399d6e8ce": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -70.35285300194789, 8.029279502921838 ], [ -70.89838488585947, 8.229678962301621 ], [ -68.72890341392828, 14.521183691888274 ], [ -68.49967821943429, 9.363565239588775 ], [ -70.35285300194789, 8.029279502921838 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "83a49b6665c6444e86d75c0d4e5d5150": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.839020916191858, 35.160979083808144 ], [ 10.088235294117647, 26.91176470588235 ], [ 9.382352941176471, 23.61764705882353 ], [ 2.3489208633093526, 20.68705035971223 ], [ -3.7241379310344827, 24.551724137931036 ], [ 1.3078069536398917, 34.61561390727978 ], [ 1.839020916191858, 35.160979083808144 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "843495f6e1ac4c118922f33f08723af0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -60.31626137783151, 12.116905419766404 ], [ -56.136801956994475, 9.287732681001842 ], [ -62.166666666666664, 7.277777777777779 ], [ -63.837857127346986, 10.063095212244974 ], [ -60.41333519149932, 12.107586332163239 ], [ -60.31626137783151, 12.116905419766404 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "84423d84ab5a461d9db82d4df7fdca25": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.248288199999998, -66.4998941 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "844d5073309049bbbd57cc6febd810b8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -21.5, 165.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "845547dc24e54404b977f50ffa265795": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 8.522015150355557, 49.33412092585139 ], [ 8.739950250369214, 49.618139552727044 ], [ 11.35505392604767, 49.03477002519314 ], [ 11.487836160102283, 46.007322978959905 ], [ 9.878864326017766, 44.57251816316969 ], [ 8.978791652479575, 45.13178642453233 ], [ 8.522015150355557, 49.33412092585139 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8490474e331a442da87b66515302f61c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -21.416667, 39.7 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "84a7d04c544147f2aa7b3fb247bf25de": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6, 12 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "84d768f345ba495ebf8e8bfe7a964c87": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.927083310795451, 46.937500135227296 ], [ 5.109590680277008, 45.842455918337954 ], [ 4.288907385560957, 43.88729894491986 ], [ -2.237365902890134, 44.819623700412876 ], [ 1.166198695233587, 49.17548088533882 ], [ 3.9494053224097057, 48.02380909811617 ], [ 4.927083310795451, 46.937500135227296 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "852b1dbc2b3346778527438d24ed18c3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 111.1996365700621, 10.303834917572708 ], [ 109.29856561911754, 8.141832585083955 ], [ 107.5078536394889, 6.86275259963493 ], [ 99.9566685702624, 7.641671425655971 ], [ 103.1, 15.5 ], [ 105.39215665397926, 15.5 ], [ 111.1996365700621, 10.303834917572708 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "853b892c285944c8993c17dd0356b6cc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.416667, 123.33333300000001 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "85488d12339544dca5577bf59ec00626": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 151.33401642660658, 11.773099869058134 ], [ 142.94776792786263, 4.55982270152751 ], [ 133.2646743878651, 18.52515609348306 ], [ 133.2442960059269, 19.56766327326608 ], [ 133.6628212500836, 20.50881640651123 ], [ 151.33401642660658, 11.773099869058134 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "855335fed24b4cb7b804982ee0be7289": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35.916667, 14.433333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "85c166948518450da5ae345b9c7b1917": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4.5, 114.66666699999999 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8675477c254546449bb96049e48177bc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.166667, -69 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "867cc2d7c08e47338db76e01d8ab9705": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -13.3, -176.2 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "86983a9af52c4e1386f5fea89716609b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 22.75581395348837, 30.837209302325583 ], [ 26.06, 33.04 ], [ 29.69216779614482, 31.677937076445694 ], [ 34.15554367635024, 27.26668448547464 ], [ 37.05555555555556, 22.916666666666668 ], [ 35.166666666666664, 21.5 ], [ 24.192307692307693, 21.5 ], [ 22.75581395348837, 30.837209302325583 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "869cb5995a874d59a6484808e2f3bbc1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, -2 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "869ec9eca701414187cb9f0397d3e66b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 2.08695652173913, 17.543478260869566 ], [ 2.946989528795812, 14.676701570680628 ], [ -0.49264705882352944, 10.5 ], [ -3.5, 10.5 ], [ -6, 12 ], [ -6.333333333333333, 13.333333333333334 ], [ 2.08695652173913, 17.543478260869566 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "86ef936c815441278365d452f731f5c0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12, -15 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "8715939911b74c659aa06e73a1c0df4e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.3482891, -64.9834807 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "87429baa504346b48914af2726648a4d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 0.265230362026724, 53.08672208090377 ], [ 0.656780500166442, 51.10286815207589 ], [ -7.872972522649686, 46.0625658921405 ], [ -8.20649494863753, 46.25 ], [ -5.365481245791843, 50.961924983167364 ], [ 0.265230362026724, 53.08672208090377 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8776ca2de9fe47d0a5ac3759dace45ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 117.14333313520004, -0.3566668647999647 ], [ 124.2586961526276, 3.6379226497080444 ], [ 124.56086956521739, 3.604347826086956 ], [ 127.44330573591718, -0.06420730025821975 ], [ 121.6864972265454, -8.699420815204025 ], [ 114.44628468733671, -11.953448451062306 ], [ 111.97829142260433, -5.521708577395669 ], [ 117.14333313520004, -0.3566668647999647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "878c393a8f9046518e20c7641d6383c5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 20, -12 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "87c4489306124f5a9bf4af4c94995f24": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47, 8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "87eecc2605d444f684bff95cd131f494": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -70.35285300194789, 8.029279502921838 ], [ -70.89838488585947, 8.229678962301621 ], [ -68.72890341392828, 14.521183691888274 ], [ -68.49967821943429, 9.363565239588775 ], [ -70.35285300194789, 8.029279502921838 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "87f6d1a857df47dfb156510f0ce95474": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.75, 15 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "88b0b1c51b2d4857a953c3055686ca65": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10, 167 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "88bf404e5921412cafe2bac3b17feba5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 43.933333000000005, 12.416667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "88c1526472cb406d98ba088e7dd46a55": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 43.733333, 7.4 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "88d11f60ab964c64a7b8db2dcf2b8466": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 11.5, 42.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "89370b9e7a084a2380a6b8686dc6042b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -170.4724227238813, -11.534570980447954 ], [ -171.73818188040755, -16.734534397758562 ], [ -172.8635758637368, -17.231932125320665 ], [ -174.55330595078996, -16.462532409096713 ], [ -173.89861949850788, -11.229044937590686 ], [ -170.4724227238813, -11.534570980447954 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "894447c405f74d09b1f5000a409bbe44": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 29.5, 47.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "897c14ccba474f07a107480dea4c8716": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.8, -2.75 ], [ 33.5, -2.75 ], [ 30.28125, -9.1875 ], [ 30.125, -9.25 ], [ 25.22826086956522, -9.25 ], [ 23.65615835777126, -7.241202346041056 ], [ 26.8, -2.75 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "89b18aef35964d099f55935f4d39fd76": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6, 134 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "8aa33464c2084be8bc61e27d215e47ef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 28, 3 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "8b0f1461cee74515b5d8e66380fcf1ca": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -20.3, 57.583332999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8b3f57023f7049ab859f8237be0b47b9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.991948760672756, 41.21714083280807 ], [ 19.41348615972757, 44.08471568564209 ], [ 20.11323544117647, 43.2916665 ], [ 20.176757075876065, 41.99581996874216 ], [ 16.061115007012624, 40.07518700327256 ], [ 15.980516452919288, 40.99535382917147 ], [ 15.991948760672756, 41.21714083280807 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8b5013e96ef34d95b33065f5b8bd9547": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -1, 15 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8ba3c79a1d1449c290c9339235c8ff08": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34, 12 ], [ 34.125, 12.125 ], [ 38.9375, 11.4375 ], [ 42.875, 6.375 ], [ 42.5, 4.5 ], [ 36.1, 4.5 ], [ 34, 6.25 ], [ 34, 12 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8c35648a3ab346d587abcc0bad5a8d0f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -42.09370555292632, 18.684788419571937 ], [ -31.80890052356021, -6.170157068062828 ], [ -54.5, -2.928571428571428 ], [ -54.5, 9.8424847863339 ], [ -42.09370555292632, 18.684788419571937 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8c409cacc0d84ed5a22ddf6f3e13183f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 60, 100 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8c63477ba0a344a1af13fff97f45a2e2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.23106088842955, 30.890152221073883 ], [ 36.62500030689651, 32.45833328275869 ], [ 37.92982439335175, 32.535087803324124 ], [ 40.142857142857146, 31.428571428571427 ], [ 40.86363636363637, 28.545454545454547 ], [ 37.11904761904762, 22.92857142857143 ], [ 37.05555555555556, 22.916666666666668 ], [ 34.15554367635024, 27.26668448547464 ], [ 34.86009047264048, 29.962726181601205 ], [ 35.23106088842955, 30.890152221073883 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8ce931ea556d4990a52e45ddeacf9ca3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -19, 29 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "8cfb69b428a74d7cb73c342158943bc1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, 127 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8cfe700ebca6437897e74e4d112cb722": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 64, 26 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8d2a471339424d90a6fa560d38fe60cf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.9, 12.45 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8d2d6d3455444008a836934a2c62e3f6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.833333, 22 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8d504db552844799aefba30ba5fa532d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 5.462431728991378, 51.04986330791969 ], [ 1.2215782427525297, 55.502758577891434 ], [ 1.9015151515151523, 59.922348484848484 ], [ 3.963235294117647, 59 ], [ 8.451347305389222, 53.5501497005988 ], [ 8.006109329101175, 51.435269313230584 ], [ 5.462431728991378, 51.04986330791969 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8d561e68ca3d40ed859ad07794155a26": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "VBoxModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "children": [ "IPY_MODEL_a0c833c7118046bb89ec27e4a3f1582b", "IPY_MODEL_0d43302af05347b4b2df3d690e761e9e" ], "layout": "IPY_MODEL_6563f8ac4dbb4ae38aab9d69d2e29bb4" } }, "8da93ae58b2641aba269d89cc83bbe78": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -276.328125, -34.69085820895506 ], [ -174.55330595078996, -16.462532409096713 ], [ -172.8635758637368, -17.231932125320665 ], [ -161.00995633282557, -80.17871349622823 ], [ -276.328125, -80.17871349622823 ], [ -276.328125, -34.69085820895506 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8db31942f3494e689a1e28477d163dee": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 26.214285714285715, 54.785714285714285 ], [ 24.07142857142857, 51.92857142857143 ], [ 18.5, 57.5 ], [ 20.5, 60.5 ], [ 26.214285714285715, 54.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8db7e30ed4de4a06bd6c70949ece53ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 32.425, -22.025 ], [ 28.25, -23.416666666666668 ], [ 23.69921875, -15.83203125 ], [ 23.850515463917525, -15.587628865979381 ], [ 31.870967741935484, -17.592741935483872 ], [ 32.425, -22.025 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8de8a46a79ad41f095ad6322ab579ce8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.95454545454545, 36.86363636363637 ], [ 47.0735294117647, 36.13235294117647 ], [ 48.813380281690144, 35.320422535211264 ], [ 48.697072072072075, 34.273648648648646 ], [ 43.679245283018865, 28.89740566037736 ], [ 40.86363636363637, 28.545454545454547 ], [ 40.142857142857146, 31.428571428571427 ], [ 41.95454545454545, 36.86363636363637 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8e629fc13e374e129d4cec8b326ba889": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.59232331103404, 45.24103110312757 ], [ 33.19743739745738, 43.95384390381393 ], [ 29.1, 50.1 ], [ 39, 60 ], [ 41.5, 61.5 ], [ 49.41678077774722, 64.66671231109889 ], [ 37.59232331103404, 45.24103110312757 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8f06006817794becbec8f6a4e2be401f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 11, -61 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "8f4471df80b94b0a95da0a2954cdd1bf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 114.94192105365104, 15.104415033855883 ], [ 108.88327097592021, 20.89535884377141 ], [ 106.16088656936334, 26.5 ], [ 112.56213379527715, 30.766621205200572 ], [ 114.94192105365104, 15.104415033855883 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8f6f4e5050d54a00a34527d5a8e1a158": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.5, 61.5 ], [ 20.772727272727273, 61.5 ], [ 19.33132530120482, 69.42771084337349 ], [ 44.41699815786587, 80.17871349622823 ], [ 56.21093847475361, 80.17871349622823 ], [ 50.68630726562837, 65.67655657227448 ], [ 49.41678077774722, 64.66671231109889 ], [ 41.5, 61.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8f6f6085ad5846f2b210dfa07be04442": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 140.01226635514018, -14.876168224299064 ], [ 152.40576923076924, -10.565384615384616 ], [ 158.93571428571428, -16.064285714285713 ], [ 159.0021865889213, -16.77332361516035 ], [ 155.66712482070056, -28.862922524960464 ], [ 150.27985045921292, -36.780347646320905 ], [ 140.01226635514018, -14.876168224299064 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "8f927ea793e442bb9f6f8d41fc74eda9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -56, -33 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "8fc409c70b1941428f04348a884dcf99": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15, 30 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "8fc8935106204e528c0956079957d4c2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 9, -80 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9018d2357aa648268e19a1b3e36d1699": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.52215011315157, 18.173350959906372 ], [ -62.832805212340695, 18.132817575111325 ], [ -62.91871969518241, 18.02235756999168 ], [ -63.52215011315157, 18.173350959906372 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "902536d2ca40407683a1c1ffe537f2bf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -54.20284766716669, 26.442779911051 ], [ -60.41447873621172, 19.787462810021925 ], [ -62.832805212340695, 18.132817575111325 ], [ -63.52215011315157, 18.173350959906372 ], [ -63.80586497026158, 18.200377289889307 ], [ -62.38788707102656, 25.457096252702648 ], [ -54.20284766716669, 26.442779911051 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "905310dacd71418aaa07dd84e412af2e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16.75, -62.2 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "90cbb1ce16634cb788f6fa7ac7e29313": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 38.85085760731817, -17.60574507520024 ], [ 38.455000434916215, -15.042368329491323 ], [ 39.181008727923356, -13.263900703552599 ], [ 43.22977652422616, -14.533018613986123 ], [ 46.35726516274236, -16.346590974368567 ], [ 43.467793172954615, -20.55391608494097 ], [ 42.46443664721574, -20.106922813931277 ], [ 38.85085760731817, -17.60574507520024 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "90ce6a3258874629933150a1e8391b39": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 47.22222222222222, 10.722222222222221 ], [ 42.875, 6.375 ], [ 38.9375, 11.4375 ], [ 43.22222222222222, 15.722222222222221 ], [ 47.22222222222222, 10.722222222222221 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "91a3761e86474909a7f6daee520ef35a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47.166667, 9.533333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "91d4af68dfae448db5f63e9fe2f07292": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15.5, 47.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "921dadd337ca4f269aa0f5cd5208b3dc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.116667, -61.666667000000004 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "928e35f7ae6a4507a4a4871230db9f33": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 137.1265963517219, -13.05363980108751 ], [ 132.26621549659933, -15.834579305184665 ], [ 121.6864972265454, -8.699420815204025 ], [ 127.44330573591718, -0.06420730025821975 ], [ 136.03155345278148, -4.840817092820053 ], [ 137.1265963517219, -13.05363980108751 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9396597ca3da4f0d8d179e54d8191f37": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.3078069536398917, 34.61561390727978 ], [ -3.7241379310344827, 24.551724137931036 ], [ -5.782051282051282, 24.414529914529915 ], [ -5.981132075471698, 24.53066037735849 ], [ -13.059734513274336, 33.126106194690266 ], [ -12.194267517742581, 33.472292992902965 ], [ 1.3078069536398917, 34.61561390727978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "93bfc084443644aebd8f34998e509ace": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16.25, -61.583332999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "93ef10263a64438c8e1a7abe1f11d19a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -26.5, 31.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9458bffdd3444ae9805f17fbda2afa2f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.833333333333334, 19.166666666666668 ], [ 13.272727272727273, 13 ], [ 4.842391304347826, 13 ], [ 2.946989528795812, 14.676701570680628 ], [ 2.08695652173913, 17.543478260869566 ], [ 2.3489208633093526, 20.68705035971223 ], [ 9.382352941176471, 23.61764705882353 ], [ 13.833333333333334, 19.166666666666668 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "94d650175e004ebf98fffaf95d24e33a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, -85 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "95065b024f4a4abfb27fdc2d6c84c35a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -65.50324553738248, 14.682556835644633 ], [ -65.34108922815484, 14.596404947681389 ], [ -65.21347445472163, 14.459674824410085 ], [ -64.93390814958786, 14.087943803298156 ], [ -64.96977329998248, 11.254585732152242 ], [ -68.49967821943429, 9.363565239588775 ], [ -68.72890341392828, 14.521183691888274 ], [ -68.54679897096905, 15.563225984493243 ], [ -65.50324553738248, 14.682556835644633 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "95511728fafe497e890013acb6e456b2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, 38 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "955c3cee5fa247f88c1acb757d97b4b2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, 39 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9570cd0cfb4d4d3d8f9dc4fa23d4414c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.95454545454545, 36.86363636363637 ], [ 47.0735294117647, 36.13235294117647 ], [ 48.813380281690144, 35.320422535211264 ], [ 48.697072072072075, 34.273648648648646 ], [ 43.679245283018865, 28.89740566037736 ], [ 40.86363636363637, 28.545454545454547 ], [ 40.142857142857146, 31.428571428571427 ], [ 41.95454545454545, 36.86363636363637 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9586997740284ec1aa0d10176de2c4be": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 7, 81 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "95b5c05968524382acbbcf3b0131f551": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.707542, 63.849109999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "95e9b08a357c40d995cd992e7ba0b1f9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 33.833333, 35.833333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "96660a617d3c4597a96299d81a66fede": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 1, 7 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "970b498cf4f041cebc54488b98b563e5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 115.14987214049087, 32.6270867498049 ], [ 116.38953488372093, 34.43023255813954 ], [ 131.8181818181818, 26.715909090909093 ], [ 134.454128440367, 22.98165137614679 ], [ 133.6628212500836, 20.50881640651123 ], [ 133.2442960059269, 19.56766327326608 ], [ 118.82994785682668, 18.257267986984242 ], [ 115.14987214049087, 32.6270867498049 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9724ae1a9e6a4d24bd72bfb1d7844ed8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 5.462431728991378, 51.04986330791969 ], [ 1.2215782427525297, 55.502758577891434 ], [ 1.9015151515151523, 59.922348484848484 ], [ 3.963235294117647, 59 ], [ 8.451347305389222, 53.5501497005988 ], [ 8.006109329101175, 51.435269313230584 ], [ 5.462431728991378, 51.04986330791969 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "972b552d0a86473b8767c77402f43b60": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13, -85 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "973989d2a695489d9c576fbf5f1fbe70": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.746604200046136, 15.445576266651287 ], [ -64.65910396060286, 14.119575922665348 ], [ -64.93390814958786, 14.087943803298156 ], [ -65.21347445472163, 14.459674824410085 ], [ -62.258995793806164, 17.24532772507489 ], [ -61.79209951287454, 16.62279935049939 ], [ -62.746604200046136, 15.445576266651287 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "978b47956e7747a9909992d97f5b1d30": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -86.15857079468962, 23.58511154755347 ], [ -89.60917051091685, 30.304700468627566 ], [ -84.84039352023821, 35.40818866041687 ], [ -76.66605839416059, 21.103102189781023 ], [ -78.61388916259259, 20.064259113283956 ], [ -86.15857079468962, 23.58511154755347 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "978b62d58ef6449cb329a8989d76a014": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.999981, 43.499905 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "979641ea5b9c4447bf1da37dae049ff0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 131.8181818181818, 26.715909090909093 ], [ 116.38953488372093, 34.43023255813954 ], [ 116.19160583941606, 36.65693430656934 ], [ 133.03225806451613, 39.46370967741935 ], [ 131.8181818181818, 26.715909090909093 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "97bc8c2fc0a742daad8d560d959d1ff9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.75, 6.1666669999999995 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "97fe8dbda4cf4f1c8245ae17d68a195d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22, 24 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "982cf825c27c4185a7bbdd56d8ce690a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 94.53448275862068, 25.137931034482758 ], [ 92.40384615384616, 16.615384615384613 ], [ 89.49601593625498, 13.384462151394423 ], [ 85.5, 15.5 ], [ 83.76315789473684, 21.144736842105264 ], [ 87.1304347826087, 26.195652173913043 ], [ 94.53448275862068, 25.137931034482758 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "98342ef92dba4ae3bb74b2e1c1fdd981": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41, 20 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "984d941d12d142ecb954b8032874493c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15, -140 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "984fe0b12b44433c9eaee6acea8bb480": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 153.7605633802817, -2.436619718309859 ], [ 158.71578172054782, 0.23157477260266646 ], [ 166.73211465335726, -8.267885346642737 ], [ 158.93571428571428, -16.064285714285713 ], [ 152.40576923076924, -10.565384615384616 ], [ 153.7605633802817, -2.436619718309859 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "986a256955e146e59d0382b2fb44e7dd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.166666666666664, 7.277777777777779 ], [ -56.136801956994475, 9.287732681001842 ], [ -55.89891052069112, 9.303268437926665 ], [ -60.109756097560975, -3.3292682926829267 ], [ -64.80150753768844, -4.580402010050252 ], [ -65.17391304347827, 0.2608695652173916 ], [ -62.166666666666664, 7.277777777777779 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "988ed47f000a4f80a44f5ca50f43b55c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -68.75, -4.5 ], [ -65.5, -5.428571428571429 ], [ -65.5, -5.642857142857143 ], [ -74.85135135135135, -20.33783783783784 ], [ -100.48428378448884, -26.74607094612221 ], [ -103.16004951275413, -17.138177846795568 ], [ -98.8940331278323, -10.152006211468558 ], [ -68.75, -4.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "98d1a465247447f1b8b8ed07bec317d9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, -2 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "98da4721d409464aaba19a2c7bb03b7a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 109.29856561911754, 8.141832585083955 ], [ 117.14333313520004, -0.3566668647999647 ], [ 111.97829142260433, -5.521708577395669 ], [ 108.91113314687364, -3.9094844341823056 ], [ 107.5078536394889, 6.86275259963493 ], [ 109.29856561911754, 8.141832585083955 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "98dedf2dabe64e6b92dbdc385d60cb3e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -20, -175 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "992f97fac79b4583b9cd6f1215529a6b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 122.59683835313533, -80.17871349622823 ], [ 106.81273702950035, -45.22820342246508 ], [ 106.95096820648595, -44.8223708608476 ], [ 111.98520643877718, -34.63816489745933 ], [ 132.26621549659933, -15.834579305184665 ], [ 137.1265963517219, -13.05363980108751 ], [ 140.01226635514018, -14.876168224299064 ], [ 150.27985045921292, -36.780347646320905 ], [ 149.19034575842386, -45.680971495380525 ], [ 134.15286847600308, -80.17871349622823 ], [ 122.59683835313533, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9989d85ca31e4577853fb539d318c461": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 32.333333, -64.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "99c6f352fc3f4e7e9315a43656284de0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 27.223484848484848, -25.127525252525253 ], [ 44.84806791569086, -44.22082357533177 ], [ 37.950805199997426, -64.0185221111185 ], [ 33.826857172836064, -59.90835727776229 ], [ 26.223684210526315, -25.69407894736842 ], [ 27.223484848484848, -25.127525252525253 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9abb95ba879d4fc697bb6d46610db8c8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -20, 47 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9ae60c68cb124c03b39bc5ec9c4f7bea": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -10.5, 105.66666699999999 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9b20436b1879472cb3e29ffd189d6f86": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.01825943313615, 22.492226275690236 ], [ -66.22121752828403, 24.10476369758893 ], [ -65.63066875028943, 25.398491763111043 ], [ -62.38788707102656, 25.457096252702648 ], [ -63.80586497026158, 18.200377289889307 ], [ -64.1469281096143, 17.133774559261973 ], [ -64.27605747470798, 16.940080566962568 ], [ -66.01825943313615, 22.492226275690236 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9b8a3aa807f748d981ef1a4ec7d556d5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 111.1996365700621, 10.303834917572708 ], [ 114.37592643202974, 12.164233393644647 ], [ 124.2586961526276, 3.6379226497080444 ], [ 117.14333313520004, -0.3566668647999647 ], [ 109.29856561911754, 8.141832585083955 ], [ 111.1996365700621, 10.303834917572708 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9bae02e3e98d4d92a3c22981eddc8474": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 46.35726516274236, -16.346590974368567 ], [ 43.22977652422616, -14.533018613986123 ], [ 45.65451341086134, -11.199000848476553 ], [ 48.486991450447825, -15.801777397259722 ], [ 46.35726516274236, -16.346590974368567 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9c44608090044be480d5c694f63473b7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.216667, -63.05 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9c49ff59de30475aa2f384e928e59508": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, 60 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9c9d8bb3e60f480884a14f7c0289961e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 111.1996365700621, 10.303834917572708 ], [ 109.29856561911754, 8.141832585083955 ], [ 107.5078536394889, 6.86275259963493 ], [ 99.9566685702624, 7.641671425655971 ], [ 103.1, 15.5 ], [ 105.39215665397926, 15.5 ], [ 111.1996365700621, 10.303834917572708 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9cb70511699a4c7ba39103d20ede9013": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.10678997556401, -23.162729080542306 ], [ 32.425, -22.025 ], [ 31.870967741935484, -17.592741935483872 ], [ 32.74771341463415, -16.24390243902439 ], [ 38.455000434916215, -15.042368329491323 ], [ 38.85085760731817, -17.60574507520024 ], [ 35.10678997556401, -23.162729080542306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9cc7cc704a6e41d0a14c19d9fc2c53e0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 33, 44 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9cda6ecf9f1a4738b84a9560723e667b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, 8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9ce269a30a3d4472a275784e18058dcf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.375, 1.9583333333333333 ], [ 13.76923076923077, 2.6153846153846154 ], [ 16.78787878787879, 3.909090909090909 ], [ 19.783783783783782, 1.6621621621621623 ], [ 20.51054852320675, -5.60548523206751 ], [ 13.375, -7.7771739130434785 ], [ 13.375, 1.9583333333333333 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9cee985cd57044febd1d78e77b1e57b7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 14.666667000000002, -61 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9cf7f66cad2c46e4a8acea33132e8795": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -53, 73 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9d07e97b1a064cecafaa05d93a62ca44": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 17.574404945535726, 46.68253956924598 ], [ 17.500549257893905, 47.158498412335184 ], [ 22.959219852648264, 48.796099263241324 ], [ 22.428571428571427, 46.142857142857146 ], [ 19.498873693815437, 45.16629123127181 ], [ 17.574404945535726, 46.68253956924598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9d1c3b25bbdd4d789bfc7071a3e41538": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 5, 152 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9d5cfaaca9444932ba96a65ae3a42511": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 46.35726516274236, -16.346590974368567 ], [ 43.22977652422616, -14.533018613986123 ], [ 45.65451341086134, -11.199000848476553 ], [ 48.486991450447825, -15.801777397259722 ], [ 46.35726516274236, -16.346590974368567 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9d65edded4364d1b941d3994b1e77254": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -68.75, -4.5 ], [ -65.5, -5.428571428571429 ], [ -65.5, -5.642857142857143 ], [ -74.85135135135135, -20.33783783783784 ], [ -100.48428378448884, -26.74607094612221 ], [ -103.16004951275413, -17.138177846795568 ], [ -98.8940331278323, -10.152006211468558 ], [ -68.75, -4.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9d682a76e7ac4745a9a9939f3b45b10f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -121.2433711294087, -6.455291649717887 ], [ -149.8363327938139, -34.574858977971786 ], [ -151.32744754011327, -4.867256504318824 ], [ -135.92231409107774, 11.416829453819545 ], [ -121.2433711294087, -6.455291649717887 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9d71815cdee243668a0c608b56cea3d7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 88.234375, 40.546875 ], [ 90.12953367875647, 42.72279792746114 ], [ 92.96551724137932, 40.5 ], [ 98.27389705882354, 30.237132352941178 ], [ 94.53448275862068, 25.137931034482758 ], [ 87.1304347826087, 26.195652173913043 ], [ 88.234375, 40.546875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9da827b2a6394804b10ba6efb1fcb4a4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, 8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9e58eb461ce14d3bbf010a34d19939da": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 43.22977652422616, -14.533018613986123 ], [ 39.181008727923356, -13.263900703552599 ], [ 38.79846944876572, -10.32312925983543 ], [ 42.34413600320691, -5.004629715660106 ], [ 44.131721455719834, -4.156092338797324 ], [ 45.65451341086134, -11.199000848476553 ], [ 43.22977652422616, -14.533018613986123 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9e90bb28c9ff4e47ad6cd282d9ee6025": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.9, -62.833332999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9efd81893102457a9bcdae78a5ca4cec": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.288907385560957, 43.88729894491986 ], [ 5.433482724099076, 38.41189652126389 ], [ 1.8525956304858004, 35.252290262193355 ], [ 1.1159951829596684, 36.04481059748873 ], [ -2.74765924925983, 44.544850348371625 ], [ -2.237365902890134, 44.819623700412876 ], [ 4.288907385560957, 43.88729894491986 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9f4cd183d6814f1ab1652f4baf4cd4e1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 0, 25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9f4e6743aa58467fac6e76e94338023a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 44, 21 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9f62e0b83a0343b8af6e91299b47ab58": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -12.409090909090908, 11.954545454545455 ], [ -14.5, 13 ], [ -16.1875, 18.0625 ], [ -9.5, 15.833333333333334 ], [ -12.409090909090908, 11.954545454545455 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9f7d13550c8643b3b5a3d83103cad268": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, 19 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9f819955d8cf496a8aa8b6dab5e3fc71": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 76.75396825396825, 27.27777777777778 ], [ 83.76315789473684, 21.144736842105264 ], [ 85.5, 15.5 ], [ 73.77382550335571, 11.891946308724833 ], [ 66.65435294117647, 13.58705882352941 ], [ 66.99740932642487, 20.44818652849741 ], [ 76.75396825396825, 27.27777777777778 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9f8c4eaad64a4ce38a4f12e38d3c472b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15, -140 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9f96e8d64030424b99283de8a7a8f899": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -14.5, 13 ], [ -20.891304347826086, 10.869565217391305 ], [ -18.421875, 19.265625 ], [ -16.1875, 18.0625 ], [ -14.5, 13 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "9fcc714f5f6848fdabc17d321b795e4f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41, 75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "9fd683cebbed41399f99fa96ce98393e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 19, -72.416667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "9fe62ce7fbc643f89868a356cdd6e31b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -71.03829574919178, 80.17871349622823 ], [ -69.56524712185802, 73.30448656867075 ], [ -77.4924368400039, 49.42257364450274 ], [ -79.1149149258917, 47.5899553466791 ], [ -148.27975412727093, 56.43450474763602 ], [ -167.72824170203305, 80.17871349622823 ], [ -71.03829574919178, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a01c8156ab0f4fd899ae6d813b015b73": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.439308997360335, 14.170491538406978 ], [ -60.37424231068609, 13.276515031904768 ], [ -60.31626137783151, 12.116905419766404 ], [ -60.41333519149932, 12.107586332163239 ], [ -64.5610010467612, 14.109910590673937 ], [ -63.446501466725216, 14.171400060470534 ], [ -63.439308997360335, 14.170491538406978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a02c9e917d1445999d1c47720b0b183c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.60112571034901, 31.606740817732497 ], [ 22.75581395348837, 30.837209302325583 ], [ 24.192307692307693, 21.5 ], [ 23.982142857142858, 21.196428571428573 ], [ 13.833333333333334, 19.166666666666668 ], [ 9.382352941176471, 23.61764705882353 ], [ 10.088235294117647, 26.91176470588235 ], [ 13.48886245635114, 29.934544405645457 ], [ 20.60112571034901, 31.606740817732497 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a0578f2ecf544c21ad19d20c18e526e0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 50.833333, 4 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a05fe5a1633246369d6b2fcd690dcb9d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 62, -7 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a0c833c7118046bb89ec27e4a3f1582b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMapModel", "state": { "_dom_classes": [], "_east": 186.6796875, "_model_module_version": "*", "_north": 62.2679226294176, "_south": -68.65655498475735, "_view_module_version": "*", "_west": -159.9609375, "center": [ -7.710991655433217, 13.359375 ], "layers": [ "IPY_MODEL_5ec82e2ea43944eba2cd87bf763a98c7", "IPY_MODEL_fece94f046e7476092308c2526c5b5ae", "IPY_MODEL_bbab9373434140e9bbaf62da40641717", "IPY_MODEL_e2615c942c8b4331b0a29cfc7a375def", "IPY_MODEL_bd55ff109f604d66a07c747f663ea605", "IPY_MODEL_11c2e06bec704846be2877c043268f2f", "IPY_MODEL_d22cb72ffa194572a3d8255cd2050798", "IPY_MODEL_211179d5f9bc438da793867371a17dae", "IPY_MODEL_e56ef00daafd48e7b24a2bc61b24cf0a", "IPY_MODEL_df8beafd03d74768b6767d1c418802fe", "IPY_MODEL_40eac9865db64f2d86cd9206b0dc8819", "IPY_MODEL_5e7f696ede9d42acb23746eea7868b2f", "IPY_MODEL_b22b68617ad641afa97a43173097cdc3", "IPY_MODEL_853b892c285944c8993c17dd0356b6cc", "IPY_MODEL_5dd8ebbfc693454d899e4c12c364a760", "IPY_MODEL_c88c015fdb224b68a206a25c983dc39a", "IPY_MODEL_3afdb0ef456d44519ae6ca6fef133938", "IPY_MODEL_5d271907b898446fa03b53ee42719337", "IPY_MODEL_d7d160d5e44344af9d0f33ba623aa5ae", "IPY_MODEL_7cbd3c0a2e5943d3b15fa406b403e4d1", "IPY_MODEL_5e8747c19b094c05bea1f02087a0fb6f", "IPY_MODEL_084872767b92443a853985d4cc23a730", "IPY_MODEL_df3f10a754f047929ce181f9e135f9ac", "IPY_MODEL_a0578f2ecf544c21ad19d20c18e526e0", "IPY_MODEL_d30a2809f89c41f78ae4df394f9b9326", "IPY_MODEL_3c702b93b6a74c239d912f6ca832fcf6", "IPY_MODEL_bae8f24b56bf4bc0968b5e88dead8c6a", "IPY_MODEL_edd25469be304056873a5209dd83c07b", "IPY_MODEL_f6a931d7d259427bb8189ee5eb7ddbe2", "IPY_MODEL_e67f6f0bf3b8444fab449fcc27a9ac46", "IPY_MODEL_cceab95fe62a4916823b345ee796b68b", "IPY_MODEL_97fe8dbda4cf4f1c8245ae17d68a195d", "IPY_MODEL_02f1f889d8634b6f997c90e5938bfaf8", "IPY_MODEL_2523624baf5b4be7876f9a4c9a841e65", "IPY_MODEL_7dd2d174af0e4605a687c07528edcb17", "IPY_MODEL_b7ecaefd8bc94b6dae75335887ee5e29", "IPY_MODEL_85c166948518450da5ae345b9c7b1917", "IPY_MODEL_1239a421b60845c4aacf7ea302ee506c", "IPY_MODEL_869cb5995a874d59a6484808e2f3bbc1", "IPY_MODEL_0832a336814a42de828f3f005c9f8ad7", "IPY_MODEL_6db551317e5f4685bbbf0a129d8ee744", "IPY_MODEL_8267c9f5cde94738a8a6b5f0af784dc9", "IPY_MODEL_84a7d04c544147f2aa7b3fb247bf25de", "IPY_MODEL_16a7f44cb60d4998b98fb2beaef3479b", "IPY_MODEL_a25b079784344aa680df5ccdab8d9319", "IPY_MODEL_a67532b787ca49aa9d6aef3379ddaf45", "IPY_MODEL_2e62bff43c9940aca4f805584eb44d9b", "IPY_MODEL_08884968154a4b829a19b746a3d09347", "IPY_MODEL_b29bae47f87e4995b61e8cd027367bbd", "IPY_MODEL_6ba14e7148bc449fbdda32c2f3aac38a", "IPY_MODEL_9ae60c68cb124c03b39bc5ec9c4f7bea", "IPY_MODEL_d79f97f803574dbca0394f20a726935a", "IPY_MODEL_29838381b7494a7d872a2c5376c95734", "IPY_MODEL_c7a257b60bfb4a7bb0253b713f199a6c", "IPY_MODEL_81c95ac775464a11a5c133161b92c13d", "IPY_MODEL_f7723c77e01443ab82e22defeaa5051e", "IPY_MODEL_19ac1c8e7fa048298c124f6450976365", "IPY_MODEL_011f0db5d82c4833a419d5603d6ca891", "IPY_MODEL_21457ca204384eb6a7361b5d58c8b1bc", "IPY_MODEL_d948fc53ed714decb43ebcdff9d01d5d", "IPY_MODEL_e8e0a7c191404c78b60bd52f3b9c5d44", "IPY_MODEL_8675477c254546449bb96049e48177bc", "IPY_MODEL_f75b35c867a24ebc9f9fcaaa98f2c23c", "IPY_MODEL_4df927a93e0b49e59fd31b661b055b89", "IPY_MODEL_9f4cd183d6814f1ab1652f4baf4cd4e1", "IPY_MODEL_5862b8d35dcc4bd78ffce0292b814119", "IPY_MODEL_3601fdf377bc4702a16161e0e9234515", "IPY_MODEL_2aae3894c65a49d5919c7f34dfd047ef", "IPY_MODEL_a2a425c4481e4aff98809369a9c4ee0d", "IPY_MODEL_c454bc42f0f94689af9682b87f72d409", "IPY_MODEL_614b322bafb94fb1a7506ba94dcdc971", "IPY_MODEL_06f836e29d9a4338a7dce573ba9437f3", "IPY_MODEL_75d1c130d2dc48df938b9d53ad7f9aab", "IPY_MODEL_955c3cee5fa247f88c1acb757d97b4b2", "IPY_MODEL_fe2ca7dd70aa4ed09763c403ff6e4ab9", "IPY_MODEL_95511728fafe497e890013acb6e456b2", "IPY_MODEL_d8fbae8baca64ec3b19f99826d51be40", "IPY_MODEL_079fdd77769748b0a648ad50eaa3666d", "IPY_MODEL_dc97e71cf9834967aa783236008778ff", "IPY_MODEL_a56c9d6fcbef4650a4ce5f1a2a1bac00", "IPY_MODEL_0e63d9c158a94962aeaaac4bdb9bd187", "IPY_MODEL_8cfe700ebca6437897e74e4d112cb722", "IPY_MODEL_f81146ea3d1b4441bc3664f854e85500", "IPY_MODEL_474897d27a3a45bdaba2b21965b05f85", "IPY_MODEL_984d941d12d142ecb954b8032874493c", "IPY_MODEL_62520437754340c6a36660db240f93de", "IPY_MODEL_a89decb1a3a346278d935d3fa321bbf9", "IPY_MODEL_b16e66b35c7244f4a7637ce500bc0e63", "IPY_MODEL_dcc89051b0c242ea82380f1ede557139", "IPY_MODEL_978b62d58ef6449cb329a8989d76a014", "IPY_MODEL_f5496f9793ca486aa8fb02ff3db26388", "IPY_MODEL_7b75bf5a625b4bec915302f3aed55eba", "IPY_MODEL_ea4ff4e893c8407e8c26265303744181", "IPY_MODEL_45680a2cd7054808898156e4d5b0a509", "IPY_MODEL_c41ee7a07be74b3ca9afa0800b6b234a", "IPY_MODEL_de2c2614ff55430f9b92ca3078e32b4a", "IPY_MODEL_df347f9a36bc4a41b4643bc56392e2b0", "IPY_MODEL_93bfc084443644aebd8f34998e509ace", "IPY_MODEL_b196c14708a54a8993ed1fab6066a7ba", "IPY_MODEL_73e579406bc34823b67cc2c555dc5c84", "IPY_MODEL_f7ee4d2824614367a26626d212bcf020", "IPY_MODEL_b5dfc3af36824b86895982ce2f2f1a13", "IPY_MODEL_af08002a2b0b482baf8ab59857f31c34", "IPY_MODEL_431ff9326a834c7980095dfcd3568db2", "IPY_MODEL_5e3c9a55fe024003827094b3ea5a71a4", "IPY_MODEL_9cf7f66cad2c46e4a8acea33132e8795", "IPY_MODEL_28c0acb693c342359df7c75ffc445c68", "IPY_MODEL_e89ccda9b5fe4ff49fed020897f24e33", "IPY_MODEL_f51393fb57be42e489184eea20a695eb", "IPY_MODEL_def4bd48a3a24399b8ad856d3c968d9f", "IPY_MODEL_33e1306a09ce4f33b46937c207cf2d20", "IPY_MODEL_276ec83c9185490cb5c509eeceef9481", "IPY_MODEL_5feee658ed2145f1ba54270e9243ec04", "IPY_MODEL_9cc7cc704a6e41d0a14c19d9fc2c53e0", "IPY_MODEL_f633c9aacdfb4ce9b52653bfa025069f", "IPY_MODEL_b95fb697a5a24100805b592dc74e7cc7", "IPY_MODEL_648af86c822947538d4a6039643d52b6", "IPY_MODEL_b56353b77bcf4e638afab99f186efe35", "IPY_MODEL_2992499f9a8b4267bf89a181a9714c82", "IPY_MODEL_d7b535564ad546f788801dc27e3f7f7b", "IPY_MODEL_e23aee2eae5e4a6ea717e6cf82a55239", "IPY_MODEL_ed10ece3d5074c2aa97373eba2dcbc05", "IPY_MODEL_ed5a4ccb55dc4cdcac2b6e16ce623bd7", "IPY_MODEL_3cd31aba839b4528b3d0a8d218f32f94", "IPY_MODEL_c07269beb87145bbadde70c849d76d54", "IPY_MODEL_ac505722f51e486cbe697b358bd97738", "IPY_MODEL_da6cd8d021af480aaeb54a6c7fdf6958", "IPY_MODEL_453c208986e04831a0f3b7e66db73cd8", "IPY_MODEL_9fcc714f5f6848fdabc17d321b795e4f", "IPY_MODEL_57cf37cbb78845498f60f8a2a2c13663", "IPY_MODEL_e78d363251f941ba99ba46c8175ae1b6", "IPY_MODEL_95e9b08a357c40d995cd992e7ba0b1f9", "IPY_MODEL_c5562be6cedd43e582f1d00e5f6dce0d", "IPY_MODEL_c67051f221754733bf3627fb4478fef3", "IPY_MODEL_393e21d2185e4d0cbe808ab4099e4e2c", "IPY_MODEL_47c367113c9745b4b94a02a4188a4c7d", "IPY_MODEL_5acf714a1e56485ca3eb263768160d57", "IPY_MODEL_e691d496ecbf4712b75184becb69eaad", "IPY_MODEL_37fe5e982cb14403836735c56a1928b6", "IPY_MODEL_8d2d6d3455444008a836934a2c62e3f6", "IPY_MODEL_9abb95ba879d4fc697bb6d46610db8c8", "IPY_MODEL_07ffb63e43ef4ceba518d5ac413fc663", "IPY_MODEL_b34648210bb54904a85479be6bd327e6", "IPY_MODEL_e91413ef6f454bf9aeadd363112189b6", "IPY_MODEL_ff3a8790edb04c40b000455cc5a9ea7a", "IPY_MODEL_855335fed24b4cb7b804982ee0be7289", "IPY_MODEL_800c81d19432470a8d3950242e763c57", "IPY_MODEL_364e8f473c90475f923394bab41a089c", "IPY_MODEL_878c393a8f9046518e20c7641d6383c5", "IPY_MODEL_8b0f1461cee74515b5d8e66380fcf1ca", "IPY_MODEL_74826283bc45426a90a6e45eb196e508", "IPY_MODEL_819f262d1d334663a15b6fa0cf39a3cf", "IPY_MODEL_fb90fdefc9614c5f8dcaccee4fe68edd", "IPY_MODEL_74b5ca39098a459d83a207521cc4686b", "IPY_MODEL_1c8e0cb6d7d2478b9e1e2c2c0a95af18", "IPY_MODEL_18cdc813bd1240a49ee2719dea194aa2", "IPY_MODEL_c2fde06cf83341dc91f4990ea3498aeb", "IPY_MODEL_aace7b9f6ec94ae8a5c3ae6907be5490", "IPY_MODEL_f44652b20b9748cd9a9462ffe5401229", "IPY_MODEL_72370bc5647f46beb7504b524700d291", "IPY_MODEL_6a5e43db977d4ddcaab562be9992dde0", "IPY_MODEL_2ffe5413eccc4f158d3c942a914b5a70", "IPY_MODEL_7ccf59f4214f42e98e7635e7f832cf0e", "IPY_MODEL_844d5073309049bbbd57cc6febd810b8", "IPY_MODEL_18c96da3c2a64a52b75bc0354099de08", "IPY_MODEL_94d650175e004ebf98fffaf95d24e33a", "IPY_MODEL_9cda6ecf9f1a4738b84a9560723e667b", "IPY_MODEL_cc8a364be6f64f48893004209189e3dd", "IPY_MODEL_dc43fb809e80419d851a0f06fef2fa9b", "IPY_MODEL_b368054f4b044d739dd4f903084fc6f7", "IPY_MODEL_8cfb69b428a74d7cb73c342158943bc1", "IPY_MODEL_fce8afca8cb54ac78fd41e79074a7cec", "IPY_MODEL_f0fde568ddb94e6987fa20210aca5038", "IPY_MODEL_ab393d3f453b4781a0509a7d8d146f8c", "IPY_MODEL_58403bddf18546998bf0775dc2527d24", "IPY_MODEL_f3f3dfdbcce243c381839d111c6e9806", "IPY_MODEL_8fc8935106204e528c0956079957d4c2", "IPY_MODEL_0c21d37bc6bd4d8f9ffa02b1b85cca8f", "IPY_MODEL_60cc3e0cdb48463bb24feb0a17b2c495", "IPY_MODEL_3c385ea564844bbbb285a6480f393ce4", "IPY_MODEL_1f71ec13035a45a19db0491fb545e75d", "IPY_MODEL_54680a851472438bb0df239f56c097ff", "IPY_MODEL_ee5af3b620334c3b903afbde98243eae", "IPY_MODEL_a16bd04b4379461a971f66a946e5469b", "IPY_MODEL_84423d84ab5a461d9db82d4df7fdca25", "IPY_MODEL_7a658445786d4c49b4b7eb9153281086", "IPY_MODEL_8b5013e96ef34d95b33065f5b8bd9547", "IPY_MODEL_bd28063429554878b806650e0f999367", "IPY_MODEL_ef361939f3d34ac584d4f69c60383bd2", "IPY_MODEL_8c409cacc0d84ed5a22ddf6f3e13183f", "IPY_MODEL_6d750a9bdbba46dc81ce181776e69fed", "IPY_MODEL_2b467ed81e6f40eeb63cc5118d1a5f15", "IPY_MODEL_5e2f5477c1ed4d33b461098085ee3f62", "IPY_MODEL_1a4dc0c5a93f45189ed2a63b3a71a329", "IPY_MODEL_2dd0b1d1d211488f8f4b3bf927bc2fb5", "IPY_MODEL_2c730aff7b0b4e0db367aa30f73c1182", "IPY_MODEL_7bbbc85fbeb3483f90641ebc12c7697e", "IPY_MODEL_b4856ab168724889bdecb6b345a47850", "IPY_MODEL_8369021f5f554aaeac5ab5169dc175cb", "IPY_MODEL_08a4747819944f77bf1e52bb969a9acf", "IPY_MODEL_5dfe8307dd5f4e4d8d6b2dc92718a9c9", "IPY_MODEL_c89aaeb563174a70b14984771bd13820", "IPY_MODEL_ca3f0968780b4b8c8843f6dfae4a0a8b", "IPY_MODEL_7e3e69f1d4b347c9a3c3cebf7b1530cc", "IPY_MODEL_3335eaf1f4474e34b1b339f5b8683d60", "IPY_MODEL_d449548f0e904476a999a290fd41f77b", "IPY_MODEL_72bd911449b04471a90398da6973f7b9", "IPY_MODEL_1e4e6305a2ad41a187e85fd7c6579e47", "IPY_MODEL_436e0965e499434596c5ce56268db374", "IPY_MODEL_c1c12c64367b4805a3c73139df6086a9", "IPY_MODEL_4d02e48ad9494fb0a862ca406edd2fad", "IPY_MODEL_623256d198f74bb4ad3876e47172e4d8", "IPY_MODEL_8f927ea793e442bb9f6f8d41fc74eda9", "IPY_MODEL_46f0318dc62b4ac4abd6a21ed33fe748", "IPY_MODEL_0a62a9dad99747159191fb7912d52df4", "IPY_MODEL_28acf190ef674be28cd6e68fb3dc2e9d", "IPY_MODEL_9586997740284ec1aa0d10176de2c4be", "IPY_MODEL_1b927aa5b0bb46ce9aaf0ece7163c946", "IPY_MODEL_748cde76a5d1466e9fdbfecb3301e87a", "IPY_MODEL_af9ab801731348ab951385f5d277a8bd", "IPY_MODEL_4278aa40682241eeb155fdcb39969863", "IPY_MODEL_ab5274486a4d4791afa810b987fb50ed", "IPY_MODEL_87c4489306124f5a9bf4af4c94995f24", "IPY_MODEL_e991b3b87a3f4adcaa412827f4e78429", "IPY_MODEL_51da194d75ae4b979aa283841022caee", "IPY_MODEL_d5530dc77e064c01814b9a5102b5bfef", "IPY_MODEL_7ef56f748c654f90abed0c052ef1adab", "IPY_MODEL_547810bbeb1b4642a57812e36a835973", "IPY_MODEL_dae9bfc0c2934429b425f5caed532f30", "IPY_MODEL_541886fb08bf4eadbd99f333ac52d44c", "IPY_MODEL_a27d267644ce4f3897eb90491b40e5cf", "IPY_MODEL_98dedf2dabe64e6b92dbdc385d60cb3e", "IPY_MODEL_e841b7a4c9c348a3bd030987e57e9803", "IPY_MODEL_a1b5f58e843b481a9fd284555428c8d3", "IPY_MODEL_15dbf7e77c1542e7924e4b7d1d2642ff", "IPY_MODEL_c908b10cc2384fada8ac096ca1b13df4", "IPY_MODEL_631553bdbec540aeb3820314297f104d", "IPY_MODEL_4fb57356b07c478ca231114c17e160d1", "IPY_MODEL_f27c82a7fbb2450fbc48fa8a8966fd6d", "IPY_MODEL_3b73994d3f57459e8023eeb778092c6b", "IPY_MODEL_28bb1b58217446ae871e1d8c1a602677", "IPY_MODEL_d81e94c1d2c44592924209687413ba86", "IPY_MODEL_dac38a647e654ddc875c3778bbe097f5", "IPY_MODEL_f726a38143564492ba4a923f0e67f05e", "IPY_MODEL_78f6b303a33f49a3adf059a5576c3f59", "IPY_MODEL_bde47891d1414f7e93a99e131d72a482", "IPY_MODEL_8715939911b74c659aa06e73a1c0df4e", "IPY_MODEL_95b5c05968524382acbbcf3b0131f551", "IPY_MODEL_f1540b58617749388433621fefd3c900", "IPY_MODEL_8d2a471339424d90a6fa560d38fe60cf", "IPY_MODEL_3d860799c1684a649fec270fbba4e984", "IPY_MODEL_0d709cdb473f4dc2a6ce7112ea308100", "IPY_MODEL_74642a90481f4bc8b42f636a72bc5222", "IPY_MODEL_bdff6d6300a6478eb54f36943ef819bb", "IPY_MODEL_b5d61f8ffa364f358231dc0fe872bc45", "IPY_MODEL_1172fbd1ff504c3eb3c0b758dad9007e", "IPY_MODEL_5b1d1d3e217d4da8a7874e6ad0588225", "IPY_MODEL_0b9cd9aa50d14203bcabee559bd43a9b", "IPY_MODEL_fe8d9ceb407646c0b7d46a8a60e4234e", "IPY_MODEL_1210e5d0ca0f4ea6880608c9455089d2", "IPY_MODEL_ba08017d94d14595aabb53acef81124e", "IPY_MODEL_a28851c33ec94edd9d30064f8f146332", "IPY_MODEL_9efd81893102457a9bcdae78a5ca4cec", "IPY_MODEL_3427ba5b5642490a9e4946d0c60379c2", "IPY_MODEL_902536d2ca40407683a1c1ffe537f2bf", "IPY_MODEL_44fec06a0b824cffb9c8aa1ac101e732", "IPY_MODEL_621fa86d7e40436b8c8cfebbff292837", "IPY_MODEL_d439f601357546b88e34bafe1e81b4bc", "IPY_MODEL_7526b1cb542b413f876e38af888e9d38", "IPY_MODEL_d49ea5be25d54e02aa8fdea5f2b2daba", "IPY_MODEL_34ca612fe7c541fda817188835710ff3", "IPY_MODEL_992f97fac79b4583b9cd6f1215529a6b", "IPY_MODEL_67d72542118c4e068b0098a113619416", "IPY_MODEL_3cd7f240917a4828abffab3c303d32d1", "IPY_MODEL_0e2987497bb64dc39c9d526d1743cb31", "IPY_MODEL_6f9f976e310a47d5a779a71ff4f06a16", "IPY_MODEL_52cbe7749dd349f79cf2d68f621b8b3c", "IPY_MODEL_1ac896e4373941cbbb23bf06cdf9f7c0", "IPY_MODEL_4f92e13ece2e417fb1996c2fb0477ca1", "IPY_MODEL_5f2ed0a71ca3496ea3a3b6c34f1bf00c", "IPY_MODEL_bb8255d1e90344b1b26705c787f7ac5a", "IPY_MODEL_dc7e023a69c24a01a072efb640880cef", "IPY_MODEL_ac6a145180254735b891c63d081a7096", "IPY_MODEL_40cd206dad284e66bb5e57badc5d8685", "IPY_MODEL_9d71815cdee243668a0c608b56cea3d7", "IPY_MODEL_a744aede6b444528a466befdd3fd364f", "IPY_MODEL_95065b024f4a4abfb27fdc2d6c84c35a", "IPY_MODEL_518b64978ef24fceb44ad65337556c0c", "IPY_MODEL_57b786d2d9b84a25948a905df4ae8e13", "IPY_MODEL_d8ca6301388440e99d4ee3f03185465a", "IPY_MODEL_dc13d5b1f12147b2b0429bd60640613b", "IPY_MODEL_cb5470e38282443fa09fa8b2e2815fc6", "IPY_MODEL_9b20436b1879472cb3e29ffd189d6f86", "IPY_MODEL_9b8a3aa807f748d981ef1a4ec7d556d5", "IPY_MODEL_1264f54b44a84fdab6e4d9d40eae05c2", "IPY_MODEL_869ec9eca701414187cb9f0397d3e66b", "IPY_MODEL_c5e69cccef6e4766922532e0d5c73b5d", "IPY_MODEL_4c33a0fb56c34702aff07edb69f5d4d6", "IPY_MODEL_852b1dbc2b3346778527438d24ed18c3", "IPY_MODEL_67de321d01664557a6c0b1389d13f6e5", "IPY_MODEL_9fe62ce7fbc643f89868a356cdd6e31b", "IPY_MODEL_b76c8ddbe6f24aecbd70529a33f555b3", "IPY_MODEL_7b8dc2f34e92402da421af3749a905ad", "IPY_MODEL_a3fba854875b42eea37118eb636bc74f", "IPY_MODEL_39c9b3145d6b4216805a33073934ebba", "IPY_MODEL_d4d05a598a654f7ba22b381184ae1596", "IPY_MODEL_e7e29f7d17f04a74a8a5487198655bc8", "IPY_MODEL_d7df8a75f17f4c38ba277c8665cdd394", "IPY_MODEL_ff947245b4c540219ee9b476423cc742", "IPY_MODEL_30605473ef264ad288fee052f6d42a0f", "IPY_MODEL_72be1e3b257b4b1a9750ace553ed9c2c", "IPY_MODEL_9e58eb461ce14d3bbf010a34d19939da", "IPY_MODEL_4e5208e087254981a4b0076e5e527830", "IPY_MODEL_8f6f6085ad5846f2b210dfa07be04442", "IPY_MODEL_cbb6562cd4914b6f91911407ebafc500", "IPY_MODEL_b5c7242bc4874966a0303754e494cb33", "IPY_MODEL_210ba1229012473ba8a8612b72c0b0b7", "IPY_MODEL_978b47956e7747a9909992d97f5b1d30", "IPY_MODEL_87eecc2605d444f684bff95cd131f494", "IPY_MODEL_bc22afbee9df4b2983b1d2262f79228d", "IPY_MODEL_0e9748fc9b1e44d8b2f2d99668e2beef", "IPY_MODEL_da786a8385434e65b2af3287d7368a3b", "IPY_MODEL_5bd1b1f84a5544f09aa6091160aa02b2", "IPY_MODEL_90ce6a3258874629933150a1e8391b39", "IPY_MODEL_6f9d6e4a83f3418a943af4a65c9809cf", "IPY_MODEL_7a7f909264fc41c8b27a9b07fb842826", "IPY_MODEL_a2a25d73e1a14bd48f9ff6126c579781", "IPY_MODEL_86983a9af52c4e1386f5fea89716609b", "IPY_MODEL_e3b8ae2a4f7043d484ca0fcf1b127feb", "IPY_MODEL_03fb6e0078a040499efa8a44d8887731", "IPY_MODEL_26bd6c1371654f8bb8a136c67f41b2e2", "IPY_MODEL_e4d99c59ac5a42c285c9c0d96164473e", "IPY_MODEL_8ba3c79a1d1449c290c9339235c8ff08", "IPY_MODEL_dcef1909bd554bc5858b471869e152ec", "IPY_MODEL_3cc48d9df0be427cb53db6e9de33cf52", "IPY_MODEL_ff55f257fc4941988fef96093271b1c9", "IPY_MODEL_08e66192f248405c965d5e53f0e92e9b", "IPY_MODEL_cf00122e7b224827a80d733c0e1145bb", "IPY_MODEL_8f6f4e5050d54a00a34527d5a8e1a158", "IPY_MODEL_5f4c6bc41fb64be5be548b323ccc2025", "IPY_MODEL_8c35648a3ab346d587abcc0bad5a8d0f", "IPY_MODEL_9d682a76e7ac4745a9a9939f3b45b10f", "IPY_MODEL_787ef327959649f8bc2d624b3f90fb14", "IPY_MODEL_e46d7e951381483186f12bf4201a8e61", "IPY_MODEL_445eced5e0724a65b9e2ebafc42f85ac", "IPY_MODEL_df926f2f80b2403f90152be8bcdf6967", "IPY_MODEL_df2312fe719a4290bbbd50a05efb8a90", "IPY_MODEL_2cb90ff8ecf64c5abc21d3274cfcf2db", "IPY_MODEL_d214c887dc434b9099d192f438d71d0b", "IPY_MODEL_05ecad48cc544806ab09989c5a91eb8e", "IPY_MODEL_48ea681dffcf49c7a2ffe57390f3e69f", "IPY_MODEL_418c20101e034b8ea37bed23e15076d0", "IPY_MODEL_57f75ab74d1f4c05b6e09afe8262e451", "IPY_MODEL_283f9ce483a64266a37ee18e59e155cb", "IPY_MODEL_14878839f8884c7ba2c2c134ff6bf301", "IPY_MODEL_85488d12339544dca5577bf59ec00626", "IPY_MODEL_5062e95e5e114e70800eeafc532c1c97", "IPY_MODEL_87429baa504346b48914af2726648a4d", "IPY_MODEL_b1dfc8662579476980dd61c59157a75d", "IPY_MODEL_ddfaa610c79d4e0980816fd4326def2e", "IPY_MODEL_752698013b40437790f5e7ce21bf68f5", "IPY_MODEL_4d2205f5a2844d18872096177ed8ff44", "IPY_MODEL_5f3f91f2fc2f4c929c638e6934ba94a6", "IPY_MODEL_c1acb210ccd2476d88a088667185e24f", "IPY_MODEL_ddabbd5f505544649bb176c7c6882cd3", "IPY_MODEL_4502a88df0ca4601b95cf875b17a7e76", "IPY_MODEL_1a3789cb6e6945da959fb0019e5ac26f", "IPY_MODEL_cca42d84eec5485f88fac571e22c51f6", "IPY_MODEL_1d811b824f334b30856992a7e048928e", "IPY_MODEL_0504355190144dd5827e72cb9958cde2", "IPY_MODEL_8de8a46a79ad41f095ad6322ab579ce8", "IPY_MODEL_dd03d89e4e2f4651b0c24e9b41b09b62", "IPY_MODEL_d1901a6e0a434641ab92d59ba99ec9f1", "IPY_MODEL_a3199d14a8164e9dbb6b9078f16df1a2", "IPY_MODEL_393ed1cef272424a886ff9f2a6dd9361", "IPY_MODEL_341cc1841d9e4319b503a4ce9c3677db", "IPY_MODEL_49f0436b254a4cce99a3ad3f798796da", "IPY_MODEL_b4766bcd7a0c4f459185f516cb8b06f1", "IPY_MODEL_8c63477ba0a344a1af13fff97f45a2e2", "IPY_MODEL_ae3b5900b07f47eb8e05d87fc3c7939e", "IPY_MODEL_79b3097ebc254310afe7f00564853949", "IPY_MODEL_d83b2c47382e4b8c933dbb25f0249b1f", "IPY_MODEL_70eee36fdc594f859f3558cf1e6d9bf8", "IPY_MODEL_cca3b6d042274e0cad5426d3c7e8c913", "IPY_MODEL_e533cf1a33e84d6c85ec97768c2f97c5", "IPY_MODEL_a54374e62f1840f8ba96438a6853cb8d", "IPY_MODEL_eaf4de41a5b74643b8a10531d2623ef1", "IPY_MODEL_f12ef438944044a4b05a999dfbf0d6a6", "IPY_MODEL_d1d658abb3c34992b07b70fbcf8c59d7", "IPY_MODEL_44b9bf39eca5453eb075e0dd4fd5c7d7", "IPY_MODEL_604d0222ee1449a4b0368f97795b57de", "IPY_MODEL_c8f7dd8747d146e6af124ba4f9a5344f", "IPY_MODEL_50b271cee9c549e9a23a044f64d3a88d", "IPY_MODEL_8db31942f3494e689a1e28477d163dee", "IPY_MODEL_b18f73e101fd4311b20c2e341d43a053", "IPY_MODEL_8f4471df80b94b0a95da0a2954cdd1bf", "IPY_MODEL_ba16920a1bec4d4fb7522ef27be208c9", "IPY_MODEL_24c73a1010d9424782be7c0415729746", "IPY_MODEL_3665c8f0263c4fce901c7d53692da738", "IPY_MODEL_98da4721d409464aaba19a2c7bb03b7a", "IPY_MODEL_bc0fd0f2d27242579e4df8ad4b32b017", "IPY_MODEL_3722236fe9634f9e824c7fe7be93902b", "IPY_MODEL_659bd2bc34874e78a6fd56a55726317c", "IPY_MODEL_6e5b626e0a254c6ba8e92eb99c871c05", "IPY_MODEL_a351065c32a34f20aaf0fbff604f79f6", "IPY_MODEL_fce5c7c2c7de413ebedbae3ce0c2e968", "IPY_MODEL_60a0100945e64f80910204295f65e12d", "IPY_MODEL_9d5cfaaca9444932ba96a65ae3a42511", "IPY_MODEL_2a9d176fcd414a56bb5f174b66e12889", "IPY_MODEL_7fb1957a2fa449abbdfa878ccd2264ab", "IPY_MODEL_391ab1cfe94c4bfeb64057e26679eac8", "IPY_MODEL_6a641c833d7045f4a612448e1779a25c", "IPY_MODEL_8b3f57023f7049ab859f8237be0b47b9", "IPY_MODEL_6e9874216abe49f6a13e55090997cfe0", "IPY_MODEL_9396597ca3da4f0d8d179e54d8191f37", "IPY_MODEL_06fe3820d8344eeab55be0629fec3052", "IPY_MODEL_e70b8ca27e4d4aa3aae98765cccec0e7", "IPY_MODEL_4f49f44bc86443c5b05e7caa8faf9886", "IPY_MODEL_b9a13ffb34e84d0d8b41ff9c7e2d9bb2", "IPY_MODEL_9724ae1a9e6a4d24bd72bfb1d7844ed8", "IPY_MODEL_2e226be12a634b358db8d15f0e58480a", "IPY_MODEL_51f46e47c553429b8b57783d776a2299", "IPY_MODEL_cbcda24025d34404a0052a07bf9aea8a", "IPY_MODEL_9458bffdd3444ae9805f17fbda2afa2f", "IPY_MODEL_458831147bb241f1ad479dbc7e252c97", "IPY_MODEL_ff815478edfc406ba52df8dfa88d0e84", "IPY_MODEL_d945cdc4e83c43a38645410378b816f8", "IPY_MODEL_2f8a72500f5e402fbb83bd94ea3237e5", "IPY_MODEL_e285b46bef5b4650a232446955aaf2dd", "IPY_MODEL_51e534ba565b488ab46b96555a2b5a1b", "IPY_MODEL_3351961a6e8845f4b1e7646cb5c3032e", "IPY_MODEL_e825d41836fa493ab0c1830f1d099284", "IPY_MODEL_482c67f9f3fb412489078ff2af40a29b", "IPY_MODEL_47f0b6e210da4d8d99e5b1d6b3640e1b", "IPY_MODEL_d8e29520c88d4091b0707eb7e60bd669", "IPY_MODEL_bc9eae4c44ed46a19080d36ef3d4f2fc", "IPY_MODEL_988ed47f000a4f80a44f5ca50f43b55c", "IPY_MODEL_6436e10f2faf49cb8eb676a27036cba3", "IPY_MODEL_3ec87e830b8d43cdb11b2893c1d6f6a9", "IPY_MODEL_df1e76acd6454570b98f432f907a448f", "IPY_MODEL_fe397e9cac0b4aff8c19536db7ecf499", "IPY_MODEL_17c7dfd4146447aaa27f371c039743f1", "IPY_MODEL_78be81f811c542f4a31c5b17724d051c", "IPY_MODEL_9ce269a30a3d4472a275784e18058dcf", "IPY_MODEL_5bc4448d1b4b42419ed3451dedaa863a", "IPY_MODEL_41ff01773f5047b7ad19dab8d080d1b7", "IPY_MODEL_d5cb6eef124a4c19803b8c4a7c2d3755", "IPY_MODEL_5bcd2dc0268d46d288c206011d9e11de", "IPY_MODEL_0f8cf3ac98ee49f9aa4b77535383fa6b", "IPY_MODEL_36e134de9d854c169caa4ab245a236b0", "IPY_MODEL_06fad2e03b8b41ba994dbd52ab974665", "IPY_MODEL_e688e4dc32a344e29d50f643e4bb58da", "IPY_MODEL_1457544e093b410eb41c1126246a325d", "IPY_MODEL_a01c8156ab0f4fd899ae6d813b015b73", "IPY_MODEL_89370b9e7a084a2380a6b8686dc6042b", "IPY_MODEL_e92bea5148cb4046ad31081b288b99f5", "IPY_MODEL_d98d2ed90b5f4874b61324f10018f6ad", "IPY_MODEL_bd01c14cba1b4020b09f6f046f755431", "IPY_MODEL_9f62e0b83a0343b8af6e91299b47ab58", "IPY_MODEL_50faf151b49e42e2a118c41fa8eb73cb", "IPY_MODEL_b56ee40eeefc431381c12187bc44d9ab", "IPY_MODEL_b96a3de8c7a14544a2e6ffd261812ea4", "IPY_MODEL_3f63d7e0b83f47e29445c4f3aa6fd34a", "IPY_MODEL_7ee68fbc4fc849da9f8046494b073699", "IPY_MODEL_b0252a5e05134841b1e89d483e8e6b62", "IPY_MODEL_b573c316b8de497cabd1307be0df43cf", "IPY_MODEL_984fe0b12b44433c9eaee6acea8bb480", "IPY_MODEL_3c82ef251e23474997212ebb6a8f5dcd", "IPY_MODEL_0dfd40c7c92e42deabc7f8420179f5d5", "IPY_MODEL_7b3820bca34e4953b7c7514dc1bdaceb", "IPY_MODEL_979641ea5b9c4447bf1da37dae049ff0", "IPY_MODEL_f5e7fb4b58f443fbbd9b8b23c78c4a6f", "IPY_MODEL_0758a7021b82499195c1c92fddc65b80", "IPY_MODEL_e2d9ac3b8e1e402f88bf0008b14614bc", "IPY_MODEL_e84d1516bbd34a409068cfa743984c7b", "IPY_MODEL_1863375e678c4d3ba6275fca2cb69bfa", "IPY_MODEL_1f14c5c89e044732bc1f6167ffb4b981", "IPY_MODEL_42557d1db942410282046b38a5e71c9b", "IPY_MODEL_4f63a3d525ef44f8947f89a008dddc4b", "IPY_MODEL_6051b776b8444e96ae17dac688faf5c5", "IPY_MODEL_cb10da005d83403b812202fdab8318c8", "IPY_MODEL_970b498cf4f041cebc54488b98b563e5", "IPY_MODEL_e0b71a33ccfc4a2c9c6c4ab11bab8b61", "IPY_MODEL_a8a78a28b172498980ea3662192b0771", "IPY_MODEL_b4cef139507d4ac1af9a11f4fbc9a291", "IPY_MODEL_22a9572c2bb245b7a9cf63a9d92cc890", "IPY_MODEL_b7a65e81736e442cb3308a1cfaa23968", "IPY_MODEL_351921f75b7942ef89e1afbffecd855f", "IPY_MODEL_8da93ae58b2641aba269d89cc83bbe78", "IPY_MODEL_3beb18a1e1064f27b59ce86bd799f610", "IPY_MODEL_a735e6863be243ea8178b5a24ad2b0ac", "IPY_MODEL_aa2cdadc9cfd4a489c322de55917119e", "IPY_MODEL_fccf974d0f4b4a2295679b9c675e3295", "IPY_MODEL_cc17149b350f4b7da689cf233f952d80", "IPY_MODEL_d1675691530948f68fb8f8c00cd31197", "IPY_MODEL_1c2bb45031d14fe5ab0f072fddcde716", "IPY_MODEL_121f72e905514a04aee061051523aa5e", "IPY_MODEL_8e629fc13e374e129d4cec8b326ba889", "IPY_MODEL_d8d17a0ddd9a4bfdb2ca76b65cb1e751", "IPY_MODEL_a627cae7472841109a463e7aaff37994", "IPY_MODEL_a95e611789d3477d8bfba9331891bed3", "IPY_MODEL_69df3b1c12cf4ce4b2fbcd5d539593d5", "IPY_MODEL_5f4f331739b0442aaf7d515eac3ab51a", "IPY_MODEL_74b13535a94f4375ab7b5da2d0e45d0e", "IPY_MODEL_600f6c0a9e864874806232525d141d4c", "IPY_MODEL_25185557e36943b9b3b87515d8dc14b0", "IPY_MODEL_3688fbceff534db381f187e4d715eb62", "IPY_MODEL_e99053802fe340b7afe9e3483797084e", "IPY_MODEL_461256b249ff4b769377ada41b485a27", "IPY_MODEL_6a3c68c3cab44a0da19a69dc34cf3915", "IPY_MODEL_7bbed355bf4c4c08b060d79ba0c3ca4e", "IPY_MODEL_61d87946a2b3473baa15ed4cf8dde59d", "IPY_MODEL_53f86da89d9742b1bb743396ca1cab74", "IPY_MODEL_aaffae5dd95f4696905fcf6ab8e17e48", "IPY_MODEL_8db7e30ed4de4a06bd6c70949ece53ff" ], "layout": "IPY_MODEL_727f35f2c5884870a5e4193799eee297", "msg_throttle": 1, "options": [ "double_click_zoom", "keyboard", "box_zoom", "inertia", "min_zoom", "world_copy_jump", "inertia_max_speed", "keyboard_pan_offset", "zoom", "inertia_deceleration", "zoom_control", "max_zoom", "touch_zoom", "bounce_at_zoom_limits", "zoom_start", "tap", "close_popup_on_click", "attribution_control", "dragging", "keyboard_zoom_offset", "zoom_animation_threshold", "tap_tolerance", "scroll_wheel_zoom", "center" ], "scroll_wheel_zoom": true, "zoom": 2 } }, "a0d919ef77394328acd54850ad82e2be": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.258995793806164, 17.24532772507489 ], [ -65.21347445472163, 14.459674824410085 ], [ -65.34108922815484, 14.596404947681389 ], [ -64.27605747470798, 16.940080566962568 ], [ -64.1469281096143, 17.133774559261973 ], [ -63.201638847461005, 17.556376725527574 ], [ -62.11873122840681, 17.71562711529553 ], [ -62.258995793806164, 17.24532772507489 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a0e75b902b404d928a1941d151bf33cb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.375, 1.9583333333333333 ], [ 13.76923076923077, 2.6153846153846154 ], [ 16.78787878787879, 3.909090909090909 ], [ 19.783783783783782, 1.6621621621621623 ], [ 20.51054852320675, -5.60548523206751 ], [ 13.375, -7.7771739130434785 ], [ 13.375, 1.9583333333333333 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a14bbc377e6045a6b97be0b8b97935ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 16.024059880778594, 39.76433566653155 ], [ 18.286632681794458, 37.28663268179446 ], [ 20.60112571034901, 31.606740817732497 ], [ 13.48886245635114, 29.934544405645457 ], [ 10.649727809605306, 37.98287203251414 ], [ 16.024059880778594, 39.76433566653155 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a1527b71365946aa8a37b367b7365985": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.5, 61.5 ], [ 39, 60 ], [ 28.5, 56.5 ], [ 20.5, 60.5 ], [ 20.772727272727273, 61.5 ], [ 41.5, 61.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a16bd04b4379461a971f66a946e5469b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39.5, -8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a1b5f58e843b481a9fd284555428c8d3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15.866667000000001, 54.416667000000004 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a1c6d4c9a75640538a5acfd4fd1536f0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 60, 100 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a1db1f35fc624020a6e345527b9aaba3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 5.8811111, -162.0725 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a25b079784344aa680df5ccdab8d9319": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, -24 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a27d267644ce4f3897eb90491b40e5cf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -9, -171.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a28851c33ec94edd9d30064f8f146332": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.77976194285714, -9.66666665 ], [ -164.6394390550387, -9.66666665 ], [ -166.0755949388039, -16.573894024806027 ], [ -171.73818188040755, -16.734534397758562 ], [ -170.4724227238813, -11.534570980447954 ], [ -164.77976194285714, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a2a25d73e1a14bd48f9ff6126c579781": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -77.73013245033113, 3.7317880794701983 ], [ -68.75, -4.5 ], [ -98.8940331278323, -10.152006211468558 ], [ -96.77487043278369, -4.680138151091159 ], [ -83.78614457831326, 2.355421686746988 ], [ -77.73013245033113, 3.7317880794701983 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a2a425c4481e4aff98809369a9c4ee0d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 19, -70.666667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a2ae598f07974e5caa6137601d02ad53": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "a2ed256784364190a56990462fa9ffe1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35, 33 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a3199d14a8164e9dbb6b9078f16df1a2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34.519365245189505, 33.02523488062875 ], [ 35.23106088842955, 30.890152221073883 ], [ 34.86009047264048, 29.962726181601205 ], [ 34.223463239385296, 33.16261793210657 ], [ 34.519365245189505, 33.02523488062875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a32547e6fe3c43a4a834ba216e13d535": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 45.166667, 15.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a351065c32a34f20aaf0fbff604f79f6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.439308997360335, 14.170491538406978 ], [ -63.446501466725216, 14.171400060470534 ], [ -57.624361583844546, 16.50025461630865 ], [ -59.85090662959023, 14.323187854569529 ], [ -63.439308997360335, 14.170491538406978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a3519ff5de8f4ae6a86c3b195732db22": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.833333, 12.833333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a380bae7de1e4bd2958e05673b07baab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.833333, 22 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a3fba854875b42eea37118eb636bc74f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 25, 12 ], [ 25.76865671641791, 5.082089552238806 ], [ 19.783783783783782, 1.6621621621621623 ], [ 16.78787878787879, 3.909090909090909 ], [ 16.10810810810811, 10.027027027027026 ], [ 24.8, 12.2 ], [ 25, 12 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a404913451a8449696599c778826e21e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, -5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a44066adceab4fbe8c89d8d13a1518bb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.5, 60.5 ], [ 28.5, 56.5 ], [ 26.214285714285715, 54.785714285714285 ], [ 20.5, 60.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a54374e62f1840f8ba96438a6853cb8d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 88.234375, 40.546875 ], [ 77.59756097560975, 33.1829268292683 ], [ 76.05882352941177, 33.88235294117647 ], [ 71, 44 ], [ 83.18181818181819, 56.18181818181818 ], [ 89.20786516853933, 48.252808988764045 ], [ 90.12953367875647, 42.72279792746114 ], [ 88.234375, 40.546875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a56c9d6fcbef4650a4ce5f1a2a1bac00": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 5, 152 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a627cae7472841109a463e7aaff37994": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 0.265230362026724, 53.08672208090377 ], [ -5.365481245791843, 50.961924983167364 ], [ -5.520833333333333, 51.583333333333336 ], [ -1.5769230769230766, 59.47115384615385 ], [ 1.5, 60.625 ], [ 1.9015151515151523, 59.922348484848484 ], [ 1.2215782427525297, 55.502758577891434 ], [ 0.265230362026724, 53.08672208090377 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a6542a1b704f421494a046378fbbc9ef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 140.01226635514018, -14.876168224299064 ], [ 152.40576923076924, -10.565384615384616 ], [ 158.93571428571428, -16.064285714285713 ], [ 159.0021865889213, -16.77332361516035 ], [ 155.66712482070056, -28.862922524960464 ], [ 150.27985045921292, -36.780347646320905 ], [ 140.01226635514018, -14.876168224299064 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a65770eef3fe4466b777be488ceb570f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -5, 120 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a65bc496e7644b6a9d2700b74ad8732f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 88.234375, 40.546875 ], [ 90.12953367875647, 42.72279792746114 ], [ 92.96551724137932, 40.5 ], [ 98.27389705882354, 30.237132352941178 ], [ 94.53448275862068, 25.137931034482758 ], [ 87.1304347826087, 26.195652173913043 ], [ 88.234375, 40.546875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a67532b787ca49aa9d6aef3379ddaf45": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 19.5, -80.666667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a735e6863be243ea8178b5a24ad2b0ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 51.461768608905146, -19.285263603105218 ], [ 49.543500258193944, -15.843209073778832 ], [ 53.137036401771624, -10.013999576917119 ], [ 63.32584190405518, -11.142744580641589 ], [ 64.00997065428118, -12.361926664125068 ], [ 55.63994231646179, -18.34051752486328 ], [ 51.461768608905146, -19.285263603105218 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a744aede6b444528a466befdd3fd364f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -65.48822279584417, -24.659281786533462 ], [ -74.85135135135135, -20.33783783783784 ], [ -65.5, -5.642857142857143 ], [ -58.17263266123864, -16.110524769659087 ], [ -65.48822279584417, -24.659281786533462 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a7817088554642a3bd9312e3cef5e102": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 114.94192105365104, 15.104415033855883 ], [ 112.56213379527715, 30.766621205200572 ], [ 115.14987214049087, 32.6270867498049 ], [ 118.82994785682668, 18.257267986984242 ], [ 115.01592231071581, 15.027372616909282 ], [ 114.94192105365104, 15.104415033855883 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a7b259a757824b4da61e87d9a4cfb25d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.439308997360335, 14.170491538406978 ], [ -60.37424231068609, 13.276515031904768 ], [ -60.31626137783151, 12.116905419766404 ], [ -60.41333519149932, 12.107586332163239 ], [ -64.5610010467612, 14.109910590673937 ], [ -63.446501466725216, 14.171400060470534 ], [ -63.439308997360335, 14.170491538406978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a7ed8e7acbd34a338f8b93526e097648": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.999981, 43.499905 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a89decb1a3a346278d935d3fa321bbf9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -1, 11.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "a8a1a5d5516e467cb8e78ccbfe81c491": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 34, 9 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a8a78a28b172498980ea3662192b0771": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34.125, -1.96875 ], [ 34.8421052631579, -1.7894736842105265 ], [ 42.34413600320691, -5.004629715660106 ], [ 38.79846944876572, -10.32312925983543 ], [ 30.28125, -9.1875 ], [ 33.5, -2.75 ], [ 34.125, -1.96875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a8b3902decd74a3e966880a15d482bf0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 23.982142857142858, 21.196428571428573 ], [ 24.8, 12.2 ], [ 16.10810810810811, 10.027027027027026 ], [ 13.8125, 11.8125 ], [ 13.272727272727273, 13 ], [ 13.833333333333334, 19.166666666666668 ], [ 23.982142857142858, 21.196428571428573 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a9149c0ab8834b3fa8fed7160751a18e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46, 25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a95e611789d3477d8bfba9331891bed3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -84.84039352023821, 35.40818866041687 ], [ -89.60917051091685, 30.304700468627566 ], [ -91.2714425982777, 29.581023577881815 ], [ -139.12252343571157, 39.30724891155245 ], [ -148.27975412727093, 56.43450474763602 ], [ -79.1149149258917, 47.5899553466791 ], [ -80.41518568686232, 41.72091771943416 ], [ -84.84039352023821, 35.40818866041687 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "a9e94cdc72244b038de897782665ae89": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -13.5, 34 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "a9f52ef73a68451799b82e49b6306e0a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, 30 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "aa2cdadc9cfd4a489c322de55917119e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.8525956304858004, 35.252290262193355 ], [ 5.433482724099076, 38.41189652126389 ], [ 8.509475489529102, 38.91753918495248 ], [ 10.649727809605306, 37.98287203251414 ], [ 13.48886245635114, 29.934544405645457 ], [ 10.088235294117647, 26.91176470588235 ], [ 1.839020916191858, 35.160979083808144 ], [ 1.8525956304858004, 35.252290262193355 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "aa5468d2396d4f4ea8e76e6e4531c3c5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, 100 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "aa71842779fd4c739c9af1d3d11e7466": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39.5, -8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "aab9519768b941178b415950610eb16b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, 90 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "aace7b9f6ec94ae8a5c3ae6907be5490": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 32, -5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "aaffae5dd95f4696905fcf6ab8e17e48": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 31.870967741935484, -17.592741935483872 ], [ 23.850515463917525, -15.587628865979381 ], [ 25.22826086956522, -9.25 ], [ 30.125, -9.25 ], [ 32.74771341463415, -16.24390243902439 ], [ 31.870967741935484, -17.592741935483872 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ab393d3f453b4781a0509a7d8d146f8c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 21, 57 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ab5274486a4d4791afa810b987fb50ed": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 62, 15 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ab7d4e6081a24821bb9b206939f739a0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22.333333, 40.366667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "aba5896fb08d456ea3c661d40adda32d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -1, 11.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "abd377095c4d45a3bdaf39c5c13a812a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 0.265230362026724, 53.08672208090377 ], [ -5.365481245791843, 50.961924983167364 ], [ -5.520833333333333, 51.583333333333336 ], [ -1.5769230769230766, 59.47115384615385 ], [ 1.5, 60.625 ], [ 1.9015151515151523, 59.922348484848484 ], [ 1.2215782427525297, 55.502758577891434 ], [ 0.265230362026724, 53.08672208090377 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "abe3e42c8d574d7cbba3f043493640ab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34.519365245189505, 33.02523488062875 ], [ 35.23106088842955, 30.890152221073883 ], [ 34.86009047264048, 29.962726181601205 ], [ 34.223463239385296, 33.16261793210657 ], [ 34.519365245189505, 33.02523488062875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "abee857683b3476b8bb4ba20fe8d974f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.5, -64.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "ac505722f51e486cbe697b358bd97738": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -5, -170 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ac6a145180254735b891c63d081a7096": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 2.946989528795812, 14.676701570680628 ], [ 4.842391304347826, 13 ], [ 5.446735306940168, 6.050043970188057 ], [ -0.41666649999999983, 10.28472175 ], [ -0.49264705882352944, 10.5 ], [ 2.946989528795812, 14.676701570680628 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ad7441970672427e990b1352885da729": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41, 75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "adf21b88e70c43ac871f6917477b5b54": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.707542, 63.849109999999996 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "ae3b5900b07f47eb8e05d87fc3c7939e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 38.85085760731817, -17.60574507520024 ], [ 38.455000434916215, -15.042368329491323 ], [ 39.181008727923356, -13.263900703552599 ], [ 43.22977652422616, -14.533018613986123 ], [ 46.35726516274236, -16.346590974368567 ], [ 43.467793172954615, -20.55391608494097 ], [ 42.46443664721574, -20.106922813931277 ], [ 38.85085760731817, -17.60574507520024 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ae8fdf6372454405a8b40c0cb4cf086e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 158.93571428571428, -16.064285714285713 ], [ 166.73211465335726, -8.267885346642737 ], [ 169.77381595324982, -8.251496935718524 ], [ 173.22727272727272, -13 ], [ 171.9015748031496, -20.291338582677167 ], [ 159.0021865889213, -16.77332361516035 ], [ 158.93571428571428, -16.064285714285713 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "aefff9ab309f458bbdce5be3aebaab7c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 21, 57 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "af08002a2b0b482baf8ab59857f31c34": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12, -15 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "af7c143dbd07462db7a3f8c45a40ac38": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "af96d84d69524e248c61aebca1a64312": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 60, -96 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "af9ab801731348ab951385f5d277a8bd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 78, 20 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "afc1629f15284fdb8a9208907c45c1b4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.991948760672756, 41.21714083280807 ], [ 15.699970183868817, 42.247653214348475 ], [ 17.296874963671776, 46.312499685937375 ], [ 17.574404945535726, 46.68253956924598 ], [ 19.498873693815437, 45.16629123127181 ], [ 19.41348615972757, 44.08471568564209 ], [ 15.991948760672756, 41.21714083280807 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "aff54be28bab42079667f4ab456f7040": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -29.5, 28.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b0252a5e05134841b1e89d483e8e6b62": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 16.980857950263637, 48.090358487872024 ], [ 17.598525373166268, 50.65605472629718 ], [ 23.436440791223777, 49.780367326019814 ], [ 22.959219852648264, 48.796099263241324 ], [ 17.500549257893905, 47.158498412335184 ], [ 16.980857950263637, 48.090358487872024 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b04560662bf44690a0ef4726a9c34b1d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 48, 68 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b0cc07e6fc8340e4a00c2a5c66790d89": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.10678997556401, -23.162729080542306 ], [ 36.08748872777859, -24.744708810801882 ], [ 45.04285705214008, -43.801731796910744 ], [ 44.84806791569086, -44.22082357533177 ], [ 27.223484848484848, -25.127525252525253 ], [ 28.25, -23.416666666666668 ], [ 32.425, -22.025 ], [ 35.10678997556401, -23.162729080542306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b16c302f0fcf4265b1fa923457ced1fa": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 36.133333, -5.35 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b16e66b35c7244f4a7637ce500bc0e63": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.5, -15.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b18f73e101fd4311b20c2e341d43a053": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.927083310795451, 46.937500135227296 ], [ 3.9494053224097057, 48.02380909811617 ], [ 5.462431728991378, 51.04986330791969 ], [ 8.006109329101175, 51.435269313230584 ], [ 8.739950250369214, 49.618139552727044 ], [ 8.522015150355557, 49.33412092585139 ], [ 4.927083310795451, 46.937500135227296 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b196c14708a54a8993ed1fab6066a7ba": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.444444400000002, 144.7366667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b1dfc8662579476980dd61c59157a75d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -6.333333333333333, 13.333333333333334 ], [ -6, 12 ], [ -7.821428571428571, 8.964285714285715 ], [ -9.1875, 8.8125 ], [ -12.625, 10.875 ], [ -12.409090909090908, 11.954545454545455 ], [ -9.5, 15.833333333333334 ], [ -8.954545454545455, 15.954545454545455 ], [ -6.333333333333333, 13.333333333333334 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b22b68617ad641afa97a43173097cdc3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15.95, -5.7 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b22c02427899433a9ed185f6f9a3544c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 9.5, 2.25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b29bae47f87e4995b61e8cd027367bbd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -30, -71 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b2a04339e78b47658d59b4bf0092f536": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22, -79.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b33c3331db62490caf6ff799a90c7fd7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 20, -12 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b34648210bb54904a85479be6bd327e6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 2.5, 112.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b368054f4b044d739dd4f903084fc6f7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -29.033333000000002, 167.95 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b3812b57102c4142b763963efaa13e88": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 151.33401642660658, 11.773099869058134 ], [ 142.94776792786263, 4.55982270152751 ], [ 133.2646743878651, 18.52515609348306 ], [ 133.2442960059269, 19.56766327326608 ], [ 133.6628212500836, 20.50881640651123 ], [ 151.33401642660658, 11.773099869058134 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b387673c3d044a53a616ffc6f423e40d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39, 71 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b39a7896c9ad439093ef531945665536": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 36.1, 4.5 ], [ 42.5, 4.5 ], [ 46.09506471289707, -2.690129425794141 ], [ 44.131721455719834, -4.156092338797324 ], [ 42.34413600320691, -5.004629715660106 ], [ 34.8421052631579, -1.7894736842105265 ], [ 36.1, 4.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b39ad2e4be3f4595b07ee74ac100cccb": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "b3a3963b568b42e088b67a501aa76023": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "b3ab76b11ee046e6a538863b246264b1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.22121752828403, 24.10476369758893 ], [ -68.08499191735669, 21.386180788630142 ], [ -71.541667, 20.226930700438803 ], [ -74.65869104893386, 21.177243786621233 ], [ -70.78653937242228, 28.7222446749932 ], [ -65.63066875028943, 25.398491763111043 ], [ -66.22121752828403, 24.10476369758893 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b4766bcd7a0c4f459185f516cb8b06f1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -2.237365902890134, 44.819623700412876 ], [ -2.74765924925983, 44.544850348371625 ], [ -6.7003170151417955, 45.35253612113436 ], [ -7.872972522649686, 46.0625658921405 ], [ 0.656780500166442, 51.10286815207589 ], [ 1.166198695233587, 49.17548088533882 ], [ -2.237365902890134, 44.819623700412876 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b4856ab168724889bdecb6b345a47850": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -13.803096, -172.178309 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b4cef139507d4ac1af9a11f4fbc9a291": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 103.1, 15.5 ], [ 99.9566685702624, 7.641671425655971 ], [ 92.75877380995436, 5.635412201358397 ], [ 89.49601593625498, 13.384462151394423 ], [ 92.40384615384616, 16.615384615384613 ], [ 100.96341463414635, 19.0609756097561 ], [ 103.1, 15.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b5252ab1cd5b480db570700f15481ac9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.23106088842955, 30.890152221073883 ], [ 36.62500030689651, 32.45833328275869 ], [ 37.92982439335175, 32.535087803324124 ], [ 40.142857142857146, 31.428571428571427 ], [ 40.86363636363637, 28.545454545454547 ], [ 37.11904761904762, 22.92857142857143 ], [ 37.05555555555556, 22.916666666666668 ], [ 34.15554367635024, 27.26668448547464 ], [ 34.86009047264048, 29.962726181601205 ], [ 35.23106088842955, 30.890152221073883 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b52cc04b71a04f77acf02f0a0a6536fd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15.866667000000001, 54.416667000000004 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b56353b77bcf4e638afab99f186efe35": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.833333, 12.833333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b56ee40eeefc431381c12187bc44d9ab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 63.32584190405518, -11.142744580641589 ], [ 53.137036401771624, -10.013999576917119 ], [ 47.089672949612705, -2.728019282328227 ], [ 60.79089492561899, 7.197276121598136 ], [ 64.24866706916984, -0.5031159857793304 ], [ 63.32584190405518, -11.142744580641589 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b573c316b8de497cabd1307be0df43cf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 17.296874963671776, 46.312499685937375 ], [ 13.696461019084081, 45.20468077763196 ], [ 13.470637558310848, 45.47274455940396 ], [ 14.960560103396157, 47.994153636088065 ], [ 16.980857950263637, 48.090358487872024 ], [ 17.500549257893905, 47.158498412335184 ], [ 17.574404945535726, 46.68253956924598 ], [ 17.296874963671776, 46.312499685937375 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b5c7242bc4874966a0303754e494cb33": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -3.5, 10.5 ], [ -3.5, -3.2142857142857135 ], [ -3.6666666666666665, -3.5000000000000018 ], [ -7.821428571428571, 8.964285714285715 ], [ -6, 12 ], [ -3.5, 10.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b5d61f8ffa364f358231dc0fe872bc45": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25, -13.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b5dfc3af36824b86895982ce2f2f1a13": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 11, -10 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b66c0e7b66884ff0a97f28ce66c82dde": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22, 24 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b7212c11d29c451e8d0b2127712e8a8b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 7, 81 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b740095300294595aff9012a2edcd8a2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.785714285714285, 28.785714285714285 ], [ 60.64285714285714, 27.642857142857142 ], [ 51.88333333333333, 18.883333333333333 ], [ 50.14858490566038, 20.20990566037736 ], [ 54.46341463414634, 28.120426829268293 ], [ 59.785714285714285, 28.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b76c8ddbe6f24aecbd70529a33f555b3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -20.891304347826086, 10.869565217391305 ], [ -27.5, -4 ], [ -30.056053811659194, -8.260089686098656 ], [ -31.80890052356021, -6.170157068062828 ], [ -42.09370555292632, 18.684788419571937 ], [ -42.647190508937754, 25.626141678240977 ], [ -42.56209202800486, 28.689686991825027 ], [ -42.41341796816169, 29.060613607881244 ], [ -33.815676951894105, 38.076623110543125 ], [ -18.886363636363637, 20.65909090909091 ], [ -18.421875, 19.265625 ], [ -20.891304347826086, 10.869565217391305 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b7a65e81736e442cb3308a1cfaa23968": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 5.446735306940168, 6.050043970188057 ], [ 5.544117867770639, 5.717320236914374 ], [ -0.41666649999999983, 0.7500002142857154 ], [ -0.41666649999999983, 10.28472175 ], [ 5.446735306940168, 6.050043970188057 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b7ecaefd8bc94b6dae75335887ee5e29": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.5, -64.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b82099391c684d75b77c49ae7601216a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25, -13.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b84c55dad47f4ced9858162004265dca": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -15.95, -5.7 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "b8d37af73ae24bd5be2efa6a99cfa0c8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 47.22222222222222, 10.722222222222221 ], [ 42.875, 6.375 ], [ 38.9375, 11.4375 ], [ 43.22222222222222, 15.722222222222221 ], [ 47.22222222222222, 10.722222222222221 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b92f89abd7ee4809853fa5592d49915b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.60112571034901, 31.606740817732497 ], [ 18.286632681794458, 37.28663268179446 ], [ 21.4166665, 40.416666500000005 ], [ 24.277777999999998, 40.416666500000005 ], [ 27.785714285714285, 37.785714285714285 ], [ 26.06, 33.04 ], [ 22.75581395348837, 30.837209302325583 ], [ 20.60112571034901, 31.606740817732497 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b95fb697a5a24100805b592dc74e7cc7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 54.25, -4.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "b96a3de8c7a14544a2e6ffd261812ea4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -27.5, -4 ], [ -12.625, 10.875 ], [ -9.1875, 8.8125 ], [ -25.80676943699732, -7.8067694369973175 ], [ -29.84176950998185, -8.76394736842105 ], [ -30.056053811659194, -8.260089686098656 ], [ -27.5, -4 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b9a13ffb34e84d0d8b41ff9c7e2d9bb2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 88.234375, 40.546875 ], [ 87.1304347826087, 26.195652173913043 ], [ 83.76315789473684, 21.144736842105264 ], [ 76.75396825396825, 27.27777777777778 ], [ 77.59756097560975, 33.1829268292683 ], [ 88.234375, 40.546875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "b9f57682afc340bc8029676e21b8cf9c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 26, 50.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "ba08017d94d14595aabb53acef81124e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.839020916191858, 35.160979083808144 ], [ 10.088235294117647, 26.91176470588235 ], [ 9.382352941176471, 23.61764705882353 ], [ 2.3489208633093526, 20.68705035971223 ], [ -3.7241379310344827, 24.551724137931036 ], [ 1.3078069536398917, 34.61561390727978 ], [ 1.839020916191858, 35.160979083808144 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ba16920a1bec4d4fb7522ef27be208c9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.966517910395396, 41.49702354719387 ], [ 22.312500125, 43.291666500000005 ], [ 23.030797023629496, 43.623188094517985 ], [ 24.277777999999998, 40.416666500000005 ], [ 21.4166665, 40.416666500000005 ], [ 20.966517910395396, 41.49702354719387 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ba2c5f06c44e42349ad619981101991f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 122.59683835313533, -80.17871349622823 ], [ 106.81273702950035, -45.22820342246508 ], [ 106.95096820648595, -44.8223708608476 ], [ 111.98520643877718, -34.63816489745933 ], [ 132.26621549659933, -15.834579305184665 ], [ 137.1265963517219, -13.05363980108751 ], [ 140.01226635514018, -14.876168224299064 ], [ 150.27985045921292, -36.780347646320905 ], [ 149.19034575842386, -45.680971495380525 ], [ 134.15286847600308, -80.17871349622823 ], [ 122.59683835313533, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "baaafce7817347629d335f6635fdc256": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -17.5, 151 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "bae8f24b56bf4bc0968b5e88dead8c6a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 32.333333, -64.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "bb035c3487364f0fa3cfc69236083e3e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -29.84176950998185, -8.76394736842105 ], [ -25.80676943699732, -7.8067694369973175 ], [ -3.8642210857592456, -4.092663257277733 ], [ 4.89000059010976, -10.651873598489319 ], [ 6.09034795042898, -12.052947942139513 ], [ 6.579811436199801, -15.486286016242074 ], [ 1.4946076894635336, -34.56630668581452 ], [ -15.515674418943778, -38.5886601339035 ], [ -29.236135857461026, -29.236135857461026 ], [ -31.388171208220108, -22.887316025016354 ], [ -31.471574816464322, -22.26804847927582 ], [ -29.84176950998185, -8.76394736842105 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bb8255d1e90344b1b26705c787f7ac5a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 3.9494053224097057, 48.02380909811617 ], [ 1.166198695233587, 49.17548088533882 ], [ 0.656780500166442, 51.10286815207589 ], [ 0.265230362026724, 53.08672208090377 ], [ 1.2215782427525297, 55.502758577891434 ], [ 5.462431728991378, 51.04986330791969 ], [ 3.9494053224097057, 48.02380909811617 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bbab9373434140e9bbaf62da40641717": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41, 20 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "bbccf8b01c854e4793345a0f972cd65a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -32.567386056786326, 40.52556022843619 ], [ -13.059734513274336, 33.126106194690266 ], [ -5.981132075471698, 24.53066037735849 ], [ -18.886363636363637, 20.65909090909091 ], [ -33.815676951894105, 38.076623110543125 ], [ -32.567386056786326, 40.52556022843619 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bbe83353d18f4f168d9f86baa32afc11": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 115.14987214049087, 32.6270867498049 ], [ 116.38953488372093, 34.43023255813954 ], [ 131.8181818181818, 26.715909090909093 ], [ 134.454128440367, 22.98165137614679 ], [ 133.6628212500836, 20.50881640651123 ], [ 133.2442960059269, 19.56766327326608 ], [ 118.82994785682668, 18.257267986984242 ], [ 115.14987214049087, 32.6270867498049 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bbf9073a60c74f038abc813f8b343b44": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.288907385560957, 43.88729894491986 ], [ 5.433482724099076, 38.41189652126389 ], [ 1.8525956304858004, 35.252290262193355 ], [ 1.1159951829596684, 36.04481059748873 ], [ -2.74765924925983, 44.544850348371625 ], [ -2.237365902890134, 44.819623700412876 ], [ 4.288907385560957, 43.88729894491986 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bc0fd0f2d27242579e4df8ad4b32b017": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 80.50057306590259, -2.269627507163321 ], [ 64.24866706916984, -0.5031159857793304 ], [ 60.79089492561899, 7.197276121598136 ], [ 60.930284857571216, 8.441829085457272 ], [ 66.65435294117647, 13.58705882352941 ], [ 73.77382550335571, 11.891946308724833 ], [ 80.50057306590259, -2.269627507163321 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bc22afbee9df4b2983b1d2262f79228d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.242939754786114, 36.42332930935598 ], [ 33.964848739597294, 33.31939523876171 ], [ 29.69216779614482, 31.677937076445694 ], [ 26.06, 33.04 ], [ 27.785714285714285, 37.785714285714285 ], [ 29.247033738409375, 39.24703373840938 ], [ 35.242939754786114, 36.42332930935598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bc687fbf7c244a448528c4ebcf92b7d8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -19.033333, -169.866667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "bc6b022d383846338ff06140509d45b2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -10, -76 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "bc9eae4c44ed46a19080d36ef3d4f2fc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -31.471574816464322, -22.26804847927582 ], [ -31.388171208220108, -22.887316025016354 ], [ -60.59814038674846, -28.7148769060123 ], [ -64.42881529044293, -26.625426758275115 ], [ -65.48822279584417, -24.659281786533462 ], [ -58.17263266123864, -16.110524769659087 ], [ -31.471574816464322, -22.26804847927582 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bd01c14cba1b4020b09f6f046f755431": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.478092783505154, 20.836340206185568 ], [ 43.00609756097561, 19.396341463414636 ], [ 37.11904761904762, 22.92857142857143 ], [ 40.86363636363637, 28.545454545454547 ], [ 43.679245283018865, 28.89740566037736 ], [ 47.56392045454545, 26.5234375 ], [ 48.38392857142857, 22.013392857142858 ], [ 48.478092783505154, 20.836340206185568 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bd28063429554878b806650e0f999367": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -21.1, 55.6 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "bd55ff109f604d66a07c747f663ea605": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -14.333333300000001, -170 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "bd59a3892d4842c3ab8172f203237b6a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 46.35726516274236, -16.346590974368567 ], [ 48.486991450447825, -15.801777397259722 ], [ 49.543500258193944, -15.843209073778832 ], [ 51.461768608905146, -19.285263603105218 ], [ 49.211107650863816, -36.88134018415563 ], [ 43.467793172954615, -20.55391608494097 ], [ 46.35726516274236, -16.346590974368567 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bde47891d1414f7e93a99e131d72a482": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 5.8811111, -162.0725 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "bdff6d6300a6478eb54f36943ef819bb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31.666666999999997, 35.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "be14bdecbc334184ac2e7dfe591cb1b1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.083333, -61.2 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "be2451b100284855945106134ab400dc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 52.5, 5.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "bf04e8fa5f224c21ae02e48c07269578": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22.993333, -57.996389 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "bf29e669ace1498f9efe663224b2fdec": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 136.03155345278148, -4.840817092820053 ], [ 127.44330573591718, -0.06420730025821975 ], [ 124.56086956521739, 3.604347826086956 ], [ 133.2646743878651, 18.52515609348306 ], [ 142.94776792786263, 4.55982270152751 ], [ 142.83497536945814, 2.529556650246306 ], [ 136.03155345278148, -4.840817092820053 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bf4cfccc3c4c4d9b8edabe2d460475b5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 0.265230362026724, 53.08672208090377 ], [ 0.656780500166442, 51.10286815207589 ], [ -7.872972522649686, 46.0625658921405 ], [ -8.20649494863753, 46.25 ], [ -5.365481245791843, 50.961924983167364 ], [ 0.265230362026724, 53.08672208090377 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "bf5f5c6392dd43c497f64c691ee482f0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -5, -170 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c07269beb87145bbadde70c849d76d54": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 1, 38 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c094321949e548649431456038b6a49e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 142.83497536945814, 2.529556650246306 ], [ 142.94776792786263, 4.55982270152751 ], [ 151.33401642660658, 11.773099869058134 ], [ 157.03846153846155, 14.884615384615385 ], [ 160.40494007960388, 4.785179761188357 ], [ 158.71578172054782, 0.23157477260266646 ], [ 153.7605633802817, -2.436619718309859 ], [ 142.83497536945814, 2.529556650246306 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c1697352485d41d9a68d7edc51d8cbb1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 50.833333, 4 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c1acb210ccd2476d88a088667185e24f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -87.04008449711586, 13.032436627163102 ], [ -88.23740332017306, 15.512596679826942 ], [ -84.85349475871489, 18.89650524128512 ], [ -82.78921576310886, 16.220588177668354 ], [ -87.04008449711586, 13.032436627163102 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c1c12c64367b4805a3c73139df6086a9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -8, 159 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c1fb21b167ef4412a6d6b9a90d948dc0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22, 17 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c2e79f2967314e84b4e1d619dca59c34": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 9, -80 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c2fde06cf83341dc91f4990ea3498aeb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16.75, -62.2 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c3999d9df463470688fa10dfce04c5c0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, 39 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c41ee7a07be74b3ca9afa0800b6b234a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39, 22 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c44374aff8574ac191254da041d9f387": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 3.2, 73 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c454bc42f0f94689af9682b87f72d409": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -2, -77.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c48b5fdfa86745558c5420b6736c5043": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -1, 15 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c540aa6ea340406c8690499f75e96049": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 276.328125, -13 ], [ 173.22727272727272, -13 ], [ 169.77381595324982, -8.251496935718524 ], [ 178.46018972151518, 4.642338163148159 ], [ 276.328125, 64.45052083333333 ], [ 276.328125, -13 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c5562be6cedd43e582f1d00e5f6dce0d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -29.5, 28.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c562aeeb3a4148b39e17db1e9b40f711": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 7.153846153846153, 5.538461538461538 ], [ 7.666666666666667, 5.666666666666667 ], [ 13.76923076923077, 2.6153846153846154 ], [ 13.375, 1.9583333333333333 ], [ 9.165697674418604, -0.4970930232558137 ], [ 7.153846153846153, 5.538461538461538 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c5b4c64c71874daea6c40251ff808739": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -88.23740332017306, 15.512596679826942 ], [ -88.50933882702878, 15.525861851738961 ], [ -94.96832023575638, 21.06213163064833 ], [ -91.2714425982777, 29.581023577881815 ], [ -89.60917051091685, 30.304700468627566 ], [ -86.15857079468962, 23.58511154755347 ], [ -84.85349475871489, 18.89650524128512 ], [ -88.23740332017306, 15.512596679826942 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c5b7cc009b1647e5a107981ac79fc7ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -77.73013245033113, 3.7317880794701983 ], [ -68.75, -4.5 ], [ -98.8940331278323, -10.152006211468558 ], [ -96.77487043278369, -4.680138151091159 ], [ -83.78614457831326, 2.355421686746988 ], [ -77.73013245033113, 3.7317880794701983 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c5e69cccef6e4766922532e0d5c73b5d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 105.21428571428571, 26.5 ], [ 100.96341463414635, 19.0609756097561 ], [ 92.40384615384616, 16.615384615384613 ], [ 94.53448275862068, 25.137931034482758 ], [ 98.27389705882354, 30.237132352941178 ], [ 105.21428571428571, 26.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c640fb7049f84f0b87eff459a4912203": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.01825943313615, 22.492226275690236 ], [ -65.50324553738248, 14.682556835644633 ], [ -68.54679897096905, 15.563225984493243 ], [ -69.07772341198282, 15.88342469409416 ], [ -68.08499191735669, 21.386180788630142 ], [ -66.22121752828403, 24.10476369758893 ], [ -66.01825943313615, 22.492226275690236 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c67051f221754733bf3627fb4478fef3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6.5, -9.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c692b8e16d1c4eef8ad46febc33317f6": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "width": "100%" } }, "c6ac6d598bff4c91b6732cbb0dc54278": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.785714285714285, 28.785714285714285 ], [ 59.427835051546396, 33.43814432989691 ], [ 63.620161109870644, 37.031566665603414 ], [ 66.42940954782578, 37.72549204347852 ], [ 70.26923076923077, 34.52564102564102 ], [ 63.5, 25.5 ], [ 60.64285714285714, 27.642857142857142 ], [ 59.785714285714285, 28.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c752a8e3c2da4470a0753f7155248024": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.375, -7.7771739130434785 ], [ 20.51054852320675, -5.60548523206751 ], [ 23.65615835777126, -7.241202346041056 ], [ 25.22826086956522, -9.25 ], [ 23.850515463917525, -15.587628865979381 ], [ 23.69921875, -15.83203125 ], [ 20.5, -17.684210526315788 ], [ 6.579811436199801, -15.486286016242074 ], [ 6.09034795042898, -12.052947942139513 ], [ 13.375, -7.7771739130434785 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c7a257b60bfb4a7bb0253b713f199a6c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 4, -72 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c88c015fdb224b68a206a25c983dc39a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47.333333, 13.333332999999998 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c89aaeb563174a70b14984771bd13820": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 14, -14 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c8e82357bff9404d96b01bf23e0138ab": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31, 36 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c8f7dd8747d146e6af124ba4f9a5344f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.60112571034901, 31.606740817732497 ], [ 22.75581395348837, 30.837209302325583 ], [ 24.192307692307693, 21.5 ], [ 23.982142857142858, 21.196428571428573 ], [ 13.833333333333334, 19.166666666666668 ], [ 9.382352941176471, 23.61764705882353 ], [ 10.088235294117647, 26.91176470588235 ], [ 13.48886245635114, 29.934544405645457 ], [ 20.60112571034901, 31.606740817732497 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c908b10cc2384fada8ac096ca1b13df4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39.059012, 34.911546 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "c9a34737da974ff796231f981295d979": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.333333, -62.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "c9bf851a801a4577a7170b11580713cc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -161.00995633282557, -80.17871349622823 ], [ -172.8635758637368, -17.231932125320665 ], [ -171.73818188040755, -16.734534397758562 ], [ -166.0755949388039, -16.573894024806027 ], [ -154.2081680570249, -49.89655862899381 ], [ -158.8025273115672, -80.17871349622823 ], [ -161.00995633282557, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c9e3949025604fa4bb99efbe6c5e7a5a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -6.333333333333333, 13.333333333333334 ], [ -6, 12 ], [ -7.821428571428571, 8.964285714285715 ], [ -9.1875, 8.8125 ], [ -12.625, 10.875 ], [ -12.409090909090908, 11.954545454545455 ], [ -9.5, 15.833333333333334 ], [ -8.954545454545455, 15.954545454545455 ], [ -6.333333333333333, 13.333333333333334 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "c9fad6aa8d174255a79c0fd61f129f7f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -71.03829574919178, 80.17871349622823 ], [ -69.56524712185802, 73.30448656867075 ], [ -77.4924368400039, 49.42257364450274 ], [ -79.1149149258917, 47.5899553466791 ], [ -148.27975412727093, 56.43450474763602 ], [ -167.72824170203305, 80.17871349622823 ], [ -71.03829574919178, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ca3f0968780b4b8c8843f6dfae4a0a8b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 44, 21 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ca6ff035071c4139b452bc03d32f126d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 25, 45 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cb10da005d83403b812202fdab8318c8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.784698164470235, 36.51889313162434 ], [ 39.58810318261007, 39.41285881635107 ], [ 40.8314700518036, 38.435941927474964 ], [ 41.95454545454545, 36.86363636363637 ], [ 40.142857142857146, 31.428571428571427 ], [ 37.92982439335175, 32.535087803324124 ], [ 35.784698164470235, 36.51889313162434 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cb40dbde73604b3d9ce9c56c87a12725": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -11.5, 47.333333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cb5470e38282443fa09fa8b2e2815fc6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 85.24859930655916, -5.556722596848646 ], [ 80.31847569141645, -25.961956174515734 ], [ 77.06366145593447, -25.522116412964117 ], [ 64.00997065428118, -12.361926664125068 ], [ 63.32584190405518, -11.142744580641589 ], [ 64.24866706916984, -0.5031159857793304 ], [ 80.50057306590259, -2.269627507163321 ], [ 85.24859930655916, -5.556722596848646 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cb7488b2f4ea4c7e9d9a69dc4a1e6200": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10.283333, -109.21666699999999 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cbb6562cd4914b6f91911407ebafc500": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -81.22727272727273, 12.59090909090909 ], [ -83.78614457831326, 2.355421686746988 ], [ -96.77487043278369, -4.680138151091159 ], [ -96.73651180719696, -1.2662164123666528 ], [ -87.58492347817732, 10.471692173940895 ], [ -81.22727272727273, 12.59090909090909 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cbcda24025d34404a0052a07bf9aea8a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -87.04008449711586, 13.032436627163102 ], [ -82.78921576310886, 16.220588177668354 ], [ -80.68489583210638, 14.817708331580544 ], [ -80.10666666666667, 13.991666666666667 ], [ -81.22727272727273, 12.59090909090909 ], [ -87.58492347817732, 10.471692173940895 ], [ -87.04008449711586, 13.032436627163102 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cc17149b350f4b7da689cf233f952d80": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.427835051546396, 33.43814432989691 ], [ 53.67874396135266, 38.468599033816425 ], [ 54.28846153846154, 53.71153846153846 ], [ 57.76114404816097, 50.23885595183903 ], [ 63.620161109870644, 37.031566665603414 ], [ 59.427835051546396, 33.43814432989691 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cc8a364be6f64f48893004209189e3dd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10, 8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "cca3b6d042274e0cad5426d3c7e8c913": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.966517910395396, 41.49702354719387 ], [ 20.176757075876065, 41.99581996874216 ], [ 20.11323544117647, 43.2916665 ], [ 22.312500125, 43.291666500000005 ], [ 20.966517910395396, 41.49702354719387 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cca42d84eec5485f88fac571e22c51f6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 76.75396825396825, 27.27777777777778 ], [ 83.76315789473684, 21.144736842105264 ], [ 85.5, 15.5 ], [ 73.77382550335571, 11.891946308724833 ], [ 66.65435294117647, 13.58705882352941 ], [ 66.99740932642487, 20.44818652849741 ], [ 76.75396825396825, 27.27777777777778 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ccce02b8899e4e1e84cb43efd0b411f3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 112.56213379527715, 30.766621205200572 ], [ 106.16088656936334, 26.5 ], [ 105.21428571428571, 26.5 ], [ 98.27389705882354, 30.237132352941178 ], [ 92.96551724137932, 40.5 ], [ 115.31818181818181, 40.5 ], [ 116.19160583941606, 36.65693430656934 ], [ 116.38953488372093, 34.43023255813954 ], [ 115.14987214049087, 32.6270867498049 ], [ 112.56213379527715, 30.766621205200572 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cceab95fe62a4916823b345ee796b68b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 44.25, 17.833333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "cd2d507d43cb4f3dbfd603622687ccf4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 19.41348615972757, 44.08471568564209 ], [ 19.498873693815437, 45.16629123127181 ], [ 22.428571428571427, 46.142857142857146 ], [ 23.25, 44.5 ], [ 23.030797023629496, 43.623188094517985 ], [ 22.312500125, 43.291666500000005 ], [ 20.11323544117647, 43.2916665 ], [ 19.41348615972757, 44.08471568564209 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cd3134237faf46b1815d4435af3ee1a7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 15, -86.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cdfffa46cf0c42fc9faa7fbd3e82e12c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -87.04008449711586, 13.032436627163102 ], [ -88.23740332017306, 15.512596679826942 ], [ -84.85349475871489, 18.89650524128512 ], [ -82.78921576310886, 16.220588177668354 ], [ -87.04008449711586, 13.032436627163102 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ce6c805b50164d3f833c32a46d2f98ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 131.8181818181818, 26.715909090909093 ], [ 116.38953488372093, 34.43023255813954 ], [ 116.19160583941606, 36.65693430656934 ], [ 133.03225806451613, 39.46370967741935 ], [ 131.8181818181818, 26.715909090909093 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cf00122e7b224827a80d733c0e1145bb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 276.328125, -46.72135416666667 ], [ 181.0092522949306, -30.834875382488434 ], [ 172.7463506798477, -23.30839528517029 ], [ 171.9015748031496, -20.291338582677167 ], [ 173.22727272727272, -13 ], [ 276.328125, -13 ], [ 276.328125, -46.72135416666667 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cf012dffa10a42aa99521107cd2d6100": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 64, 26 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cf3db045a0294899a71e228623a8f865": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34.125, -1.96875 ], [ 34.8421052631579, -1.7894736842105265 ], [ 42.34413600320691, -5.004629715660106 ], [ 38.79846944876572, -10.32312925983543 ], [ 30.28125, -9.1875 ], [ 33.5, -2.75 ], [ 34.125, -1.96875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "cf52e8a491494564af4b0c5d7424441b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -33, -56 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cfe487fbdef842f297d2cc7fdba924b2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 48.666667, 19.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "cff99a5e1d0e48f0a53747dc17c92601": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 7, 21 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d0485d74b8f546bf9368bc030f5f7092": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 62, 10 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d05efa76baf34573aa9382b00e53fdc4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.927083310795451, 46.937500135227296 ], [ 8.522015150355557, 49.33412092585139 ], [ 8.978791652479575, 45.13178642453233 ], [ 5.109590680277008, 45.842455918337954 ], [ 4.927083310795451, 46.937500135227296 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d0c190f30e4d478586438ec5dc03d7d7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.04167, -63.066669999999995 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d11e854ccf7e4b29a5dd206453b95c45": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "HBoxModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "children": [ "IPY_MODEL_147e0d4a8dfb4d42a3ae7675ee35af08", "IPY_MODEL_fc99a97f83d44c5ca68d5a235fa9fe7f" ], "layout": "IPY_MODEL_d69eb2e999784b5c95555b5bae6c9687" } }, "d1675691530948f68fb8f8c00cd31197": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.22121752828403, 24.10476369758893 ], [ -68.08499191735669, 21.386180788630142 ], [ -71.541667, 20.226930700438803 ], [ -74.65869104893386, 21.177243786621233 ], [ -70.78653937242228, 28.7222446749932 ], [ -65.63066875028943, 25.398491763111043 ], [ -66.22121752828403, 24.10476369758893 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d1901a6e0a434641ab92d59ba99ec9f1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -1.5769230769230766, 59.47115384615385 ], [ -5.520833333333333, 51.583333333333336 ], [ -7.639462809917355, 57.51549586776859 ], [ -1.5769230769230766, 59.47115384615385 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d1b15609eec447b99e764bcf2aa92a22": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 34, 12 ], [ 34.125, 12.125 ], [ 38.9375, 11.4375 ], [ 42.875, 6.375 ], [ 42.5, 4.5 ], [ 36.1, 4.5 ], [ 34, 6.25 ], [ 34, 12 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d1d658abb3c34992b07b70fbcf8c59d7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.242939754786114, 36.42332930935598 ], [ 35.784698164470235, 36.51889313162434 ], [ 37.92982439335175, 32.535087803324124 ], [ 36.62500030689651, 32.45833328275869 ], [ 34.519365245189505, 33.02523488062875 ], [ 34.223463239385296, 33.16261793210657 ], [ 33.964848739597294, 33.31939523876171 ], [ 35.242939754786114, 36.42332930935598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d214c887dc434b9099d192f438d71d0b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -0.49264705882352944, 10.5 ], [ -0.41666649999999983, 10.28472175 ], [ -0.41666649999999983, 0.7500002142857154 ], [ -3.5, -3.2142857142857135 ], [ -3.5, 10.5 ], [ -0.49264705882352944, 10.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d22cb72ffa194572a3d8255cd2050798": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12.5, 18.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d25ffc9f11af408aa1dd93d62fc4265c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -276.328125, -34.69085820895506 ], [ -174.55330595078996, -16.462532409096713 ], [ -172.8635758637368, -17.231932125320665 ], [ -161.00995633282557, -80.17871349622823 ], [ -276.328125, -80.17871349622823 ], [ -276.328125, -34.69085820895506 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d2befa43b81c4e0d9ea746d9158444b3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 28.38888888888889, 3.4444444444444446 ], [ 28.73076923076923, 2.0769230769230775 ], [ 26.8, -2.75 ], [ 23.65615835777126, -7.241202346041056 ], [ 20.51054852320675, -5.60548523206751 ], [ 19.783783783783782, 1.6621621621621623 ], [ 25.76865671641791, 5.082089552238806 ], [ 28.38888888888889, 3.4444444444444446 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d2ffed5f6823467eb8bc3ce33f23728c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 41.9, 12.45 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d30a2809f89c41f78ae4df394f9b9326": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.25, -88.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d33f790851034a66a299f508104fe0a1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -5.84044598302083, 38.47356786416664 ], [ -12.194267517742581, 33.472292992902965 ], [ -13.059734513274336, 33.126106194690266 ], [ -32.567386056786326, 40.52556022843619 ], [ -31.913874716402603, 44.83279422886172 ], [ -28.3, 46.25 ], [ -8.20649494863753, 46.25 ], [ -7.872972522649686, 46.0625658921405 ], [ -6.7003170151417955, 45.35253612113436 ], [ -5.84044598302083, 38.47356786416664 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d36b36813dd04809b898682223a52fa5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -31.471574816464322, -22.26804847927582 ], [ -31.388171208220108, -22.887316025016354 ], [ -60.59814038674846, -28.7148769060123 ], [ -64.42881529044293, -26.625426758275115 ], [ -65.48822279584417, -24.659281786533462 ], [ -58.17263266123864, -16.110524769659087 ], [ -31.471574816464322, -22.26804847927582 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d36c9bda58f44a1f94a29126f441c02c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -6, 147 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d3fed2db68ef4ff6a3dd02fca320e5b7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.5, 19.3 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d439f601357546b88e34bafe1e81b4bc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.95454545454545, 36.86363636363637 ], [ 40.8314700518036, 38.435941927474964 ], [ 45.85867582567887, 42.20662087160565 ], [ 47.0735294117647, 36.13235294117647 ], [ 41.95454545454545, 36.86363636363637 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d449548f0e904476a999a290fd41f77b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 1.366667, 103.8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d49ea5be25d54e02aa8fdea5f2b2daba": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -29.84176950998185, -8.76394736842105 ], [ -25.80676943699732, -7.8067694369973175 ], [ -3.8642210857592456, -4.092663257277733 ], [ 4.89000059010976, -10.651873598489319 ], [ 6.09034795042898, -12.052947942139513 ], [ 6.579811436199801, -15.486286016242074 ], [ 1.4946076894635336, -34.56630668581452 ], [ -15.515674418943778, -38.5886601339035 ], [ -29.236135857461026, -29.236135857461026 ], [ -31.388171208220108, -22.887316025016354 ], [ -31.471574816464322, -22.26804847927582 ], [ -29.84176950998185, -8.76394736842105 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d4d05a598a654f7ba22b381184ae1596": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.42881529044293, -26.625426758275115 ], [ -75.94969531226228, -46.786966796458984 ], [ -103.40402681867948, -61.72380573934753 ], [ -100.48428378448884, -26.74607094612221 ], [ -74.85135135135135, -20.33783783783784 ], [ -65.48822279584417, -24.659281786533462 ], [ -64.42881529044293, -26.625426758275115 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d5292cd2284d466c9661ecf4ac7f52df": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 4.927083310795451, 46.937500135227296 ], [ 3.9494053224097057, 48.02380909811617 ], [ 5.462431728991378, 51.04986330791969 ], [ 8.006109329101175, 51.435269313230584 ], [ 8.739950250369214, 49.618139552727044 ], [ 8.522015150355557, 49.33412092585139 ], [ 4.927083310795451, 46.937500135227296 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d5530dc77e064c01814b9a5102b5bfef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39, 71 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d5a8886e6192437b94c5d67afba44eee": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -42.56209202800486, 28.689686991825027 ], [ -54.20284766716669, 26.442779911051 ], [ -62.38788707102656, 25.457096252702648 ], [ -65.63066875028943, 25.398491763111043 ], [ -70.78653937242228, 28.7222446749932 ], [ -80.41518568686232, 41.72091771943416 ], [ -79.1149149258917, 47.5899553466791 ], [ -77.4924368400039, 49.42257364450274 ], [ -42.41341796816169, 29.060613607881244 ], [ -42.56209202800486, 28.689686991825027 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d5cb6eef124a4c19803b8c4a7c2d3755": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 135.85460258979867, 80.17871349622823 ], [ 120.47841726618705, 59.42086330935252 ], [ 89.20786516853933, 48.252808988764045 ], [ 83.18181818181819, 56.18181818181818 ], [ 74.18298243891442, 80.17871349622823 ], [ 135.85460258979867, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d65efd60aa2748b39d79c35fb9b376b3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -3.5, 10.5 ], [ -3.5, -3.2142857142857135 ], [ -3.6666666666666665, -3.5000000000000018 ], [ -7.821428571428571, 8.964285714285715 ], [ -6, 12 ], [ -3.5, 10.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d687e04a5ab4498bb0c54e4d9e510195": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.883332999999999, -60.966667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d69eb2e999784b5c95555b5bae6c9687": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "d7573b63dc7a4da78b81c3543ae29e4f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 105.21428571428571, 26.5 ], [ 100.96341463414635, 19.0609756097561 ], [ 92.40384615384616, 16.615384615384613 ], [ 94.53448275862068, 25.137931034482758 ], [ 98.27389705882354, 30.237132352941178 ], [ 105.21428571428571, 26.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d7860148a6044f99a2e69e2a9fc2f300": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 33, 44 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d79f97f803574dbca0394f20a726935a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 10.283333, -109.21666699999999 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d7b535564ad546f788801dc27e3f7f7b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 36, 138 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d7d160d5e44344af9d0f33ba623aa5ae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 26, 50.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d7d3a7b02d914390b03e7a0402e3d2b0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35, 38 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d7df8a75f17f4c38ba277c8665cdd394": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 108.91113314687364, -3.9094844341823056 ], [ 111.97829142260433, -5.521708577395669 ], [ 114.44628468733671, -11.953448451062306 ], [ 111.98520643877718, -34.63816489745933 ], [ 106.95096820648595, -44.8223708608476 ], [ 100.23524681685709, -5.2742308038236665 ], [ 108.91113314687364, -3.9094844341823056 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d815e5c8f83a4dfda0f5b49139ce42ad": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 14.18815861380963, 43.97543758816509 ], [ 13.696461019084081, 45.20468077763196 ], [ 17.296874963671776, 46.312499685937375 ], [ 15.699970183868817, 42.247653214348475 ], [ 14.18815861380963, 43.97543758816509 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d81e94c1d2c44592924209687413ba86": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, 54 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d83b2c47382e4b8c933dbb25f0249b1f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 36.1, 4.5 ], [ 42.5, 4.5 ], [ 46.09506471289707, -2.690129425794141 ], [ 44.131721455719834, -4.156092338797324 ], [ 42.34413600320691, -5.004629715660106 ], [ 34.8421052631579, -1.7894736842105265 ], [ 36.1, 4.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d8ca6301388440e99d4ee3f03185465a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.950805199997426, -64.0185221111185 ], [ 38.47184369784168, -66.91689378129499 ], [ 38.74495582194318, -80.17871349622823 ], [ -13.725625953806592, -80.17871349622823 ], [ -15.515674418943778, -38.5886601339035 ], [ 1.4946076894635336, -34.56630668581452 ], [ 10.521068792382458, -38.35129760856974 ], [ 33.826857172836064, -59.90835727776229 ], [ 37.950805199997426, -64.0185221111185 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d8d17a0ddd9a4bfdb2ca76b65cb1e751": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.785714285714285, 28.785714285714285 ], [ 60.64285714285714, 27.642857142857142 ], [ 51.88333333333333, 18.883333333333333 ], [ 50.14858490566038, 20.20990566037736 ], [ 54.46341463414634, 28.120426829268293 ], [ 59.785714285714285, 28.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d8e29520c88d4091b0707eb7e60bd669": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 137.1265963517219, -13.05363980108751 ], [ 136.03155345278148, -4.840817092820053 ], [ 142.83497536945814, 2.529556650246306 ], [ 153.7605633802817, -2.436619718309859 ], [ 152.40576923076924, -10.565384615384616 ], [ 140.01226635514018, -14.876168224299064 ], [ 137.1265963517219, -13.05363980108751 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d8f095ab439d44b6abb6bc9461be09d6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.991948760672756, 41.21714083280807 ], [ 15.980516452919288, 40.99535382917147 ], [ 11.345937796438811, 42.89884051626453 ], [ 14.18815861380963, 43.97543758816509 ], [ 15.699970183868817, 42.247653214348475 ], [ 15.991948760672756, 41.21714083280807 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d8fbae8baca64ec3b19f99826d51be40": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -22.333333, 40.366667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d945cdc4e83c43a38645410378b816f8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 172.7463506798477, -23.30839528517029 ], [ 181.0092522949306, -30.834875382488434 ], [ 149.19034575842386, -45.680971495380525 ], [ 150.27985045921292, -36.780347646320905 ], [ 155.66712482070056, -28.862922524960464 ], [ 172.7463506798477, -23.30839528517029 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "d948fc53ed714decb43ebcdff9d01d5d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 45.166667, 15.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "d952e9cf4b084523b3d4559c10921570": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18.3482891, -64.9834807 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "d98d2ed90b5f4874b61324f10018f6ad": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 5.544117867770639, 5.717320236914374 ], [ 7.153846153846153, 5.538461538461538 ], [ 9.165697674418604, -0.4970930232558137 ], [ 4.89000059010976, -10.651873598489319 ], [ -3.8642210857592456, -4.092663257277733 ], [ -3.6666666666666665, -3.5000000000000018 ], [ -3.5, -3.2142857142857135 ], [ -0.41666649999999983, 0.7500002142857154 ], [ 5.544117867770639, 5.717320236914374 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "da6cd8d021af480aaeb54a6c7fdf6958": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 42.583333, 21 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "da786a8385434e65b2af3287d7368a3b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 28.38888888888889, 3.4444444444444446 ], [ 28.73076923076923, 2.0769230769230775 ], [ 26.8, -2.75 ], [ 23.65615835777126, -7.241202346041056 ], [ 20.51054852320675, -5.60548523206751 ], [ 19.783783783783782, 1.6621621621621623 ], [ 25.76865671641791, 5.082089552238806 ], [ 28.38888888888889, 3.4444444444444446 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dac38a647e654ddc875c3778bbe097f5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 54, -4 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "dae5e4a2f4b148eeb4373e7daa38d48c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -12, 96.833333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "dae9bfc0c2934429b425f5caed532f30": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -8.833333, 125.75 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "db466c570f0a462aafb2fd089d11ebf3": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "description": "Clean map", "icon": "check", "layout": "IPY_MODEL_22d2e0b8c5db48e6b45b6cde351044aa", "style": "IPY_MODEL_5ace650aadc0462fbc4a9b122af4de68", "tooltip": "Remove proximity cells" } }, "dbf22241fb444980912fa1933ad6b27e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 111.1996365700621, 10.303834917572708 ], [ 114.37592643202974, 12.164233393644647 ], [ 124.2586961526276, 3.6379226497080444 ], [ 117.14333313520004, -0.3566668647999647 ], [ 109.29856561911754, 8.141832585083955 ], [ 111.1996365700621, 10.303834917572708 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dc13d5b1f12147b2b0429bd60640613b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -30.056053811659194, -8.260089686098656 ], [ -29.84176950998185, -8.76394736842105 ], [ -31.471574816464322, -22.26804847927582 ], [ -58.17263266123864, -16.110524769659087 ], [ -65.5, -5.642857142857143 ], [ -65.5, -5.428571428571429 ], [ -64.80150753768844, -4.580402010050252 ], [ -60.109756097560975, -3.3292682926829267 ], [ -54.5, -2.928571428571428 ], [ -31.80890052356021, -6.170157068062828 ], [ -30.056053811659194, -8.260089686098656 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dc35f95457134b03bf0e6dad9ee2a080": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 2.946989528795812, 14.676701570680628 ], [ 4.842391304347826, 13 ], [ 5.446735306940168, 6.050043970188057 ], [ -0.41666649999999983, 10.28472175 ], [ -0.49264705882352944, 10.5 ], [ 2.946989528795812, 14.676701570680628 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dc43fb809e80419d851a0f06fef2fa9b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -19.033333, -169.866667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "dc7e023a69c24a01a072efb640880cef": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -88.23740332017306, 15.512596679826942 ], [ -88.50933882702878, 15.525861851738961 ], [ -94.96832023575638, 21.06213163064833 ], [ -91.2714425982777, 29.581023577881815 ], [ -89.60917051091685, 30.304700468627566 ], [ -86.15857079468962, 23.58511154755347 ], [ -84.85349475871489, 18.89650524128512 ], [ -88.23740332017306, 15.512596679826942 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dc8867e4d78f45dea4faa79c438cf037": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 18.5, 57.5 ], [ 15.875, 56.1875 ], [ 12.5, 59 ], [ 12.5, 71.5625 ], [ 19.33132530120482, 69.42771084337349 ], [ 20.772727272727273, 61.5 ], [ 20.5, 60.5 ], [ 18.5, 57.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dc97e71cf9834967aa783236008778ff": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 62, -7 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "dcc89051b0c242ea82380f1ede557139": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31.425074, 34.373398 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "dcef1909bd554bc5858b471869e152ec": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 36.08748872777859, -24.744708810801882 ], [ 42.46443664721574, -20.106922813931277 ], [ 43.467793172954615, -20.55391608494097 ], [ 49.211107650863816, -36.88134018415563 ], [ 49.32465014416529, -38.2837437605715 ], [ 45.04285705214008, -43.801731796910744 ], [ 36.08748872777859, -24.744708810801882 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "dd03d89e4e2f4651b0c24e9b41b09b62": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -5.365481245791843, 50.961924983167364 ], [ -8.20649494863753, 46.25 ], [ -28.3, 46.25 ], [ -13.941176470588236, 58.21568627450981 ], [ -7.639462809917355, 57.51549586776859 ], [ -5.520833333333333, 51.583333333333336 ], [ -5.365481245791843, 50.961924983167364 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ddabbd5f505544649bb176c7c6882cd3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 114.94192105365104, 15.104415033855883 ], [ 112.56213379527715, 30.766621205200572 ], [ 115.14987214049087, 32.6270867498049 ], [ 118.82994785682668, 18.257267986984242 ], [ 115.01592231071581, 15.027372616909282 ], [ 114.94192105365104, 15.104415033855883 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ddd253a785ac43788a27b3b7e3f0fd86": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -6, 72 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "dddb6ffc22a34e7b8039ecdbd67316e6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 24, -76 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "ddfaa610c79d4e0980816fd4326def2e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -12.409090909090908, 11.954545454545455 ], [ -12.625, 10.875 ], [ -27.5, -4 ], [ -20.891304347826086, 10.869565217391305 ], [ -14.5, 13 ], [ -12.409090909090908, 11.954545454545455 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ddfc7c0f6c6a4fb196451e9f05611ed3": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 14, -14 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "de2767f2092e48cab814941ccb157e86": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "LayoutModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "height": "500px", "width": "100%" } }, "de2c2614ff55430f9b92ca3078e32b4a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 72, -40 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "dec9fc57020549cb99266de89c49e534": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 28, 84 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "dedb45f794554a17b3ebb1fd692a139a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 114.37592643202974, 12.164233393644647 ], [ 115.01592231071581, 15.027372616909282 ], [ 118.82994785682668, 18.257267986984242 ], [ 133.2442960059269, 19.56766327326608 ], [ 133.2646743878651, 18.52515609348306 ], [ 124.56086956521739, 3.604347826086956 ], [ 124.2586961526276, 3.6379226497080444 ], [ 114.37592643202974, 12.164233393644647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "def4bd48a3a24399b8ad856d3c968d9f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 65, -18 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "df1e76acd6454570b98f432f907a448f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 17.598525373166268, 50.65605472629718 ], [ 15.514705882352942, 55.286764705882355 ], [ 15.875, 56.1875 ], [ 18.5, 57.5 ], [ 24.07142857142857, 51.92857142857143 ], [ 24.254716981132077, 50.4622641509434 ], [ 23.436440791223777, 49.780367326019814 ], [ 17.598525373166268, 50.65605472629718 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "df2312fe719a4290bbbd50a05efb8a90": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 37.59232331103404, 45.24103110312757 ], [ 49.41678077774722, 64.66671231109889 ], [ 50.68630726562837, 65.67655657227448 ], [ 52.256029642258895, 59.26685231115903 ], [ 45.85867582567887, 42.20662087160565 ], [ 40.8314700518036, 38.435941927474964 ], [ 39.58810318261007, 39.41285881635107 ], [ 37.59232331103404, 45.24103110312757 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "df347f9a36bc4a41b4643bc56392e2b0": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.116667, -61.666667000000004 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "df3f10a754f047929ce181f9e135f9ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 53, 28 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "df8beafd03d74768b6767d1c418802fe": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -34, -64 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "df926f2f80b2403f90152be8bcdf6967": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 29.69216779614482, 31.677937076445694 ], [ 33.964848739597294, 33.31939523876171 ], [ 34.223463239385296, 33.16261793210657 ], [ 34.86009047264048, 29.962726181601205 ], [ 34.15554367635024, 27.26668448547464 ], [ 29.69216779614482, 31.677937076445694 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "df94a0126b384682826ee2451601d30c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47, 20 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e0b71a33ccfc4a2c9c6c4ab11bab8b61": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 76.05882352941177, 33.88235294117647 ], [ 70.26923076923077, 34.52564102564102 ], [ 66.42940954782578, 37.72549204347852 ], [ 68.48809998999228, 43.162699996664095 ], [ 71, 44 ], [ 76.05882352941177, 33.88235294117647 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e11a90470b984368b83eaa1a0e0b924f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 11.487836160102283, 46.007322978959905 ], [ 11.35505392604767, 49.03477002519314 ], [ 12.410750188456655, 49.75264334174569 ], [ 14.960560103396157, 47.994153636088065 ], [ 13.470637558310848, 45.47274455940396 ], [ 11.487836160102283, 46.007322978959905 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e1918dd72bc64d9688e0a0907b57d93d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -8, 159 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e1c7f3a0df804ef0a768ff8853512f4e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.439308997360335, 14.170491538406978 ], [ -59.85090662959023, 14.323187854569529 ], [ -60.37424231068609, 13.276515031904768 ], [ -63.439308997360335, 14.170491538406978 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e23aee2eae5e4a6ea717e6cf82a55239": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.216667, -2.1166669999999996 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e2484a6a803a4afda5b9e5564503e149": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39.059012, 34.911546 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e2615c942c8b4331b0a29cfc7a375def": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 28, 3 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e277bcb8dafa43efbcf168935fc0486d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -99.8688999707149, 13.38455671254664 ], [ -137.88294597575836, 34.957403696829424 ], [ -139.12252343571157, 39.30724891155245 ], [ -91.2714425982777, 29.581023577881815 ], [ -94.96832023575638, 21.06213163064833 ], [ -99.8688999707149, 13.38455671254664 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e285b46bef5b4650a232446955aaf2dd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 151.33401642660658, 11.773099869058134 ], [ 133.6628212500836, 20.50881640651123 ], [ 134.454128440367, 22.98165137614679 ], [ 162.56451612903226, 34.225806451612904 ], [ 157.03846153846155, 14.884615384615385 ], [ 151.33401642660658, 11.773099869058134 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e2a8e55ba34b4539a00561b21dc182f2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -12.409090909090908, 11.954545454545455 ], [ -12.625, 10.875 ], [ -27.5, -4 ], [ -20.891304347826086, 10.869565217391305 ], [ -14.5, 13 ], [ -12.409090909090908, 11.954545454545455 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e2d9ac3b8e1e402f88bf0008b14614bc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 92.75877380995436, 5.635412201358397 ], [ 91.2237241126437, -0.5774520299382842 ], [ 85.24859930655916, -5.556722596848646 ], [ 80.50057306590259, -2.269627507163321 ], [ 73.77382550335571, 11.891946308724833 ], [ 85.5, 15.5 ], [ 89.49601593625498, 13.384462151394423 ], [ 92.75877380995436, 5.635412201358397 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e3b28981f37546218313234a54e809ac": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -4.5833330000000005, 55.666667000000004 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e3b8ae2a4f7043d484ca0fcf1b127feb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -87.04008449711586, 13.032436627163102 ], [ -87.58492347817732, 10.471692173940895 ], [ -96.73651180719696, -1.2662164123666528 ], [ -98.3029214480826, 7.690999280584988 ], [ -88.50933882702878, 15.525861851738961 ], [ -88.23740332017306, 15.512596679826942 ], [ -87.04008449711586, 13.032436627163102 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e46d7e951381483186f12bf4201a8e61": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.375, 1.9583333333333333 ], [ 13.375, -7.7771739130434785 ], [ 6.09034795042898, -12.052947942139513 ], [ 4.89000059010976, -10.651873598489319 ], [ 9.165697674418604, -0.4970930232558137 ], [ 13.375, 1.9583333333333333 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e4d99c59ac5a42c285c9c0d96164473e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 41.5, 61.5 ], [ 39, 60 ], [ 28.5, 56.5 ], [ 20.5, 60.5 ], [ 20.772727272727273, 61.5 ], [ 41.5, 61.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e533cf1a33e84d6c85ec97768c2f97c5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 48.697072072072075, 34.273648648648646 ], [ 51.07425742574257, 29.281559405940595 ], [ 47.56392045454545, 26.5234375 ], [ 43.679245283018865, 28.89740566037736 ], [ 48.697072072072075, 34.273648648648646 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e5491c8414ac42c0b481ad6750d51940": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -164.77976194285714, -9.66666665 ], [ -170.4724227238813, -11.534570980447954 ], [ -173.89861949850788, -11.229044937590686 ], [ -183.1922749391728, -1.611192214111906 ], [ -164.77976194285714, -9.66666665 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e56ef00daafd48e7b24a2bc61b24cf0a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.05, -61.8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e63a7956be264274935ee87c073e75cc": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -13.803096, -172.178309 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e67f6f0bf3b8444fab449fcc27a9ac46": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 12.2, -68.25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e688e4dc32a344e29d50f643e4bb58da": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.52215011315157, 18.173350959906372 ], [ -62.832805212340695, 18.132817575111325 ], [ -62.91871969518241, 18.02235756999168 ], [ -63.52215011315157, 18.173350959906372 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e691d496ecbf4712b75184becb69eaad": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.75, 6.1666669999999995 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e6bb2ee44e774d8db264b312a9d4c776": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 13.833333333333334, 19.166666666666668 ], [ 13.272727272727273, 13 ], [ 4.842391304347826, 13 ], [ 2.946989528795812, 14.676701570680628 ], [ 2.08695652173913, 17.543478260869566 ], [ 2.3489208633093526, 20.68705035971223 ], [ 9.382352941176471, 23.61764705882353 ], [ 13.833333333333334, 19.166666666666668 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e70b8ca27e4d4aa3aae98765cccec0e7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.5, -27.125 ], [ 10.521068792382458, -38.35129760856974 ], [ 1.4946076894635336, -34.56630668581452 ], [ 6.579811436199801, -15.486286016242074 ], [ 20.5, -17.684210526315788 ], [ 20.5, -27.125 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e74b8e991de943b080363964b6b27677": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6.5, -9.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e78d363251f941ba99ba46c8175ae1b6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 57, 25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e7e29f7d17f04a74a8a5487198655bc8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 112.56213379527715, 30.766621205200572 ], [ 106.16088656936334, 26.5 ], [ 105.21428571428571, 26.5 ], [ 98.27389705882354, 30.237132352941178 ], [ 92.96551724137932, 40.5 ], [ 115.31818181818181, 40.5 ], [ 116.19160583941606, 36.65693430656934 ], [ 116.38953488372093, 34.43023255813954 ], [ 115.14987214049087, 32.6270867498049 ], [ 112.56213379527715, 30.766621205200572 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e7ef526309bf474c88151ba5cb3bdcce": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -87.04008449711586, 13.032436627163102 ], [ -87.58492347817732, 10.471692173940895 ], [ -96.73651180719696, -1.2662164123666528 ], [ -98.3029214480826, 7.690999280584988 ], [ -88.50933882702878, 15.525861851738961 ], [ -88.23740332017306, 15.512596679826942 ], [ -87.04008449711586, 13.032436627163102 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e80cb88271e04a8cb0b470f8d740b737": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.966517910395396, 41.49702354719387 ], [ 20.176757075876065, 41.99581996874216 ], [ 20.11323544117647, 43.2916665 ], [ 22.312500125, 43.291666500000005 ], [ 20.966517910395396, 41.49702354719387 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e825d41836fa493ab0c1830f1d099284": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 77.59756097560975, 33.1829268292683 ], [ 76.75396825396825, 27.27777777777778 ], [ 66.99740932642487, 20.44818652849741 ], [ 63.5, 25.5 ], [ 70.26923076923077, 34.52564102564102 ], [ 76.05882352941177, 33.88235294117647 ], [ 77.59756097560975, 33.1829268292683 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e841b7a4c9c348a3bd030987e57e9803": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 11, -61 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e84d1516bbd34a409068cfa743984c7b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 24.192307692307693, 21.5 ], [ 35.166666666666664, 21.5 ], [ 34.125, 12.125 ], [ 34, 12 ], [ 25, 12 ], [ 24.8, 12.2 ], [ 23.982142857142858, 21.196428571428573 ], [ 24.192307692307693, 21.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e89ccda9b5fe4ff49fed020897f24e33": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22.25, 114.16666699999999 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e8c5f928e76d49e8aa6986df0781bbcf": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22, 98 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "e8cbeebf217f40d9b5816f1dc0f96bd6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -66.01825943313615, 22.492226275690236 ], [ -64.27605747470798, 16.940080566962568 ], [ -65.34108922815484, 14.596404947681389 ], [ -65.50324553738248, 14.682556835644633 ], [ -66.01825943313615, 22.492226275690236 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e8e0a7c191404c78b60bd52f3b9c5d44": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 22, -79.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e91413ef6f454bf9aeadd363112189b6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 3.2, 73 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e9166ee519f943a8819f9d62f3d090a1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 44.41699815786587, 80.17871349622823 ], [ 19.33132530120482, 69.42771084337349 ], [ 12.5, 71.5625 ], [ 1.5, 78.4375 ], [ 0.46816978001290277, 80.17871349622823 ], [ 44.41699815786587, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e92bea5148cb4046ad31081b288b99f5": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 9.878864326017766, 44.57251816316969 ], [ 11.487836160102283, 46.007322978959905 ], [ 13.470637558310848, 45.47274455940396 ], [ 13.696461019084081, 45.20468077763196 ], [ 14.18815861380963, 43.97543758816509 ], [ 11.345937796438811, 42.89884051626453 ], [ 9.946503615816958, 42.875899197974476 ], [ 9.878864326017766, 44.57251816316969 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e93dc771a78242abb685fabd7bd13882": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 88.234375, 40.546875 ], [ 77.59756097560975, 33.1829268292683 ], [ 76.05882352941177, 33.88235294117647 ], [ 71, 44 ], [ 83.18181818181819, 56.18181818181818 ], [ 89.20786516853933, 48.252808988764045 ], [ 90.12953367875647, 42.72279792746114 ], [ 88.234375, 40.546875 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e99053802fe340b7afe9e3483797084e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -63.837857127346986, 10.063095212244974 ], [ -62.166666666666664, 7.277777777777779 ], [ -65.17391304347827, 0.2608695652173916 ], [ -70.35285300194789, 8.029279502921838 ], [ -68.49967821943429, 9.363565239588775 ], [ -64.96977329998248, 11.254585732152242 ], [ -63.837857127346986, 10.063095212244974 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "e991b3b87a3f4adcaa412827f4e78429": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35, 38 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "e9d733121e404de18d4ad906fef4803e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 16.980857950263637, 48.090358487872024 ], [ 17.598525373166268, 50.65605472629718 ], [ 23.436440791223777, 49.780367326019814 ], [ 22.959219852648264, 48.796099263241324 ], [ 17.500549257893905, 47.158498412335184 ], [ 16.980857950263637, 48.090358487872024 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ea180974824f408c8c893dfb5893ba95": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 33.19743739745738, 43.95384390381393 ], [ 30.24445688154456, 41.75554311845544 ], [ 27.5, 44.5 ], [ 26.22, 49.62 ], [ 29.1, 50.1 ], [ 33.19743739745738, 43.95384390381393 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ea221beb49f1424099e2618ae1128512": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -62.746604200046136, 15.445576266651287 ], [ -56.1344214183599, 17.649637193880032 ], [ -57.624361583844546, 16.50025461630865 ], [ -63.446501466725216, 14.171400060470534 ], [ -64.5610010467612, 14.109910590673937 ], [ -64.65910396060286, 14.119575922665348 ], [ -62.746604200046136, 15.445576266651287 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ea4ff4e893c8407e8c26265303744181": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 36.133333, -5.35 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ea77f2be6d6744c588ffd8cb4086c66b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 54.25, -4.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "eaf4de41a5b74643b8a10531d2623ef1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 105.39215665397926, 15.5 ], [ 103.1, 15.5 ], [ 100.96341463414635, 19.0609756097561 ], [ 105.21428571428571, 26.5 ], [ 106.16088656936334, 26.5 ], [ 108.88327097592021, 20.89535884377141 ], [ 105.39215665397926, 15.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "eb073679140246569db0a7b2c8688fd7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -98.3029214480826, 7.690999280584988 ], [ -99.8688999707149, 13.38455671254664 ], [ -94.96832023575638, 21.06213163064833 ], [ -88.50933882702878, 15.525861851738961 ], [ -98.3029214480826, 7.690999280584988 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ed10ece3d5074c2aa97373eba2dcbc05": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 31, 36 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ed5a4ccb55dc4cdcac2b6e16ce623bd7": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -17.058329999999998, 42.71667 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "edd25469be304056873a5209dd83c07b": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 27.5, 90.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ee5af3b620334c3b903afbde98243eae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 52, 20 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ee89fe48c8634f0bab83c435e169ca0a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 25, 12 ], [ 25.76865671641791, 5.082089552238806 ], [ 19.783783783783782, 1.6621621621621623 ], [ 16.78787878787879, 3.909090909090909 ], [ 16.10810810810811, 10.027027027027026 ], [ 24.8, 12.2 ], [ 25, 12 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ef361939f3d34ac584d4f69c60383bd2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46, 25 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ef406464e59a4854bb21584ce2985cf8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 9.878864326017766, 44.57251816316969 ], [ 11.487836160102283, 46.007322978959905 ], [ 13.470637558310848, 45.47274455940396 ], [ 13.696461019084081, 45.20468077763196 ], [ 14.18815861380963, 43.97543758816509 ], [ 11.345937796438811, 42.89884051626453 ], [ 9.946503615816958, 42.875899197974476 ], [ 9.878864326017766, 44.57251816316969 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f0224d5c8f1f4dcda9dec542d82aaf1e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17.05, -61.8 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f039f9ea6c8e43719dfc24de8727a93f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 80.50057306590259, -2.269627507163321 ], [ 64.24866706916984, -0.5031159857793304 ], [ 60.79089492561899, 7.197276121598136 ], [ 60.930284857571216, 8.441829085457272 ], [ 66.65435294117647, 13.58705882352941 ], [ 73.77382550335571, 11.891946308724833 ], [ 80.50057306590259, -2.269627507163321 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f0fde568ddb94e6987fa20210aca5038": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 62, 10 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f12ef438944044a4b05a999dfbf0d6a6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 20.5, 60.5 ], [ 28.5, 56.5 ], [ 26.214285714285715, 54.785714285714285 ], [ 20.5, 60.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f1540b58617749388433621fefd3c900": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -16, 167 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f2775c9553434823a3572659966527d2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 15.980516452919288, 40.99535382917147 ], [ 16.061115007012624, 40.07518700327256 ], [ 16.024059880778594, 39.76433566653155 ], [ 10.649727809605306, 37.98287203251414 ], [ 8.509475489529102, 38.91753918495248 ], [ 9.946503615816958, 42.875899197974476 ], [ 11.345937796438811, 42.89884051626453 ], [ 15.980516452919288, 40.99535382917147 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f27c82a7fbb2450fbc48fa8a8966fd6d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -8, 178 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f2a84b8286e94f10876f824cc88c9fb4": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -0.533333, 166.916667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f39dec944e104062b7c5d36ddcbfd526": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 0, 25 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f3f3dfdbcce243c381839d111c6e9806": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 6, 134 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f414172d2c694ea8a9a5aed75b12f500": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -9, -171.75 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f44652b20b9748cd9a9462ffe5401229": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -18.25, 35 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f467e0e0c088411b99b4759c1f5f93f1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 13.5, -15.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f51393fb57be42e489184eea20a695eb": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47, 20 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f5496f9793ca486aa8fb02ff3db26388": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 51.5, 10.5 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f5e7fb4b58f443fbbd9b8b23c78c4a6f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 25, 12 ], [ 34, 12 ], [ 34, 6.25 ], [ 28.38888888888889, 3.4444444444444446 ], [ 25.76865671641791, 5.082089552238806 ], [ 25, 12 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f5f217e26e2d48f7a27f3c99ad6d56b1": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 51.5, 10.5 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f633c9aacdfb4ce9b52653bfa025069f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 53, -8 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f67d9218026049a1a2776753b5211807": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49, 32 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f6a931d7d259427bb8189ee5eb7ddbe2": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -17, -65 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f6bc75cbd03d40df919e45e9fb83eddd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 51.461768608905146, -19.285263603105218 ], [ 55.63994231646179, -18.34051752486328 ], [ 61.19240924770094, -32.10600614503239 ], [ 49.32465014416529, -38.2837437605715 ], [ 49.211107650863816, -36.88134018415563 ], [ 51.461768608905146, -19.285263603105218 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f6c775b8c90b4d2ca8d868a7a6fd3c7e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 36.08748872777859, -24.744708810801882 ], [ 42.46443664721574, -20.106922813931277 ], [ 43.467793172954615, -20.55391608494097 ], [ 49.211107650863816, -36.88134018415563 ], [ 49.32465014416529, -38.2837437605715 ], [ 45.04285705214008, -43.801731796910744 ], [ 36.08748872777859, -24.744708810801882 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f72651790e7d4fcf96b414c90effe6db": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonStyleModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4" } }, "f726a38143564492ba4a923f0e67f05e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 39.828175, -98.5795 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f743b8c8ecfa45879f6076112cf7237d": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 8, 1.166667 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f75b35c867a24ebc9f9fcaaa98f2c23c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 35, 33 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f7723c77e01443ab82e22defeaa5051e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -16.083333, -161.583333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f7cd177d10224928aebe79b65d73e385": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 56, 24 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f7ee4d2824614367a26626d212bcf020": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 49.583333, -2.333333 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f81146ea3d1b4441bc3664f854e85500": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 46, 2 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "f88c5838ecce4bc6807a027bda982702": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 20, 77 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f8a6410e430347799cdc5438fc99da22": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 18, 105 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "f9327f2bae154c05abee08e8eb43ae0e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 1.1159951829596684, 36.04481059748873 ], [ 1.8525956304858004, 35.252290262193355 ], [ 1.839020916191858, 35.160979083808144 ], [ 1.3078069536398917, 34.61561390727978 ], [ -12.194267517742581, 33.472292992902965 ], [ -5.84044598302083, 38.47356786416664 ], [ 1.1159951829596684, 36.04481059748873 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "f934d10a1f8240089eecb38ab5f9e40f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ -16.083333, -161.583333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "fb90fdefc9614c5f8dcaccee4fe68edd": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 47, 29 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "fb9d6ae59cb54011acee1fcd35ffcf1f": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 28.38888888888889, 3.4444444444444446 ], [ 34, 6.25 ], [ 36.1, 4.5 ], [ 34.8421052631579, -1.7894736842105265 ], [ 34.125, -1.96875 ], [ 28.73076923076923, 2.0769230769230775 ], [ 28.38888888888889, 3.4444444444444446 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fbef19ea9c754b268a2067352512a76c": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 40, 127 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "fc0182a32dfb4b928f3c5ccd1ab03996": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 33, 66 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "fc3987432dfc4e488b8e6053302a1a20": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -121.2433711294087, -6.455291649717887 ], [ -103.16004951275413, -17.138177846795568 ], [ -100.48428378448884, -26.74607094612221 ], [ -103.40402681867948, -61.72380573934753 ], [ -110.34629822105572, -80.17871349622823 ], [ -158.8025273115672, -80.17871349622823 ], [ -154.2081680570249, -49.89655862899381 ], [ -149.8363327938139, -34.574858977971786 ], [ -121.2433711294087, -6.455291649717887 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fc99a97f83d44c5ca68d5a235fa9fe7f": { "model_module": "jupyter-js-widgets", "model_module_version": "~2.1.4", "model_name": "ButtonModel", "state": { "_model_module_version": "~2.1.4", "_view_module_version": "~2.1.4", "description": "Clean map", "icon": "check", "layout": "IPY_MODEL_155fe4f6db10469b8efed408bcfc27f5", "style": "IPY_MODEL_f72651790e7d4fcf96b414c90effe6db", "tooltip": "Remove proximity cells" } }, "fccf974d0f4b4a2295679b9c675e3295": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 35.242939754786114, 36.42332930935598 ], [ 29.247033738409375, 39.24703373840938 ], [ 30.24445688154456, 41.75554311845544 ], [ 33.19743739745738, 43.95384390381393 ], [ 37.59232331103404, 45.24103110312757 ], [ 39.58810318261007, 39.41285881635107 ], [ 35.784698164470235, 36.51889313162434 ], [ 35.242939754786114, 36.42332930935598 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fce5c7c2c7de413ebedbae3ce0c2e968": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -5.782051282051282, 24.414529914529915 ], [ -8.954545454545455, 15.954545454545455 ], [ -9.5, 15.833333333333334 ], [ -16.1875, 18.0625 ], [ -18.421875, 19.265625 ], [ -18.886363636363637, 20.65909090909091 ], [ -5.981132075471698, 24.53066037735849 ], [ -5.782051282051282, 24.414529914529915 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fce8afca8cb54ac78fd41e79074a7cec": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 16, 146 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "fd9fad71e912484bbbaaee469b9dace6": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -70.35285300194789, 8.029279502921838 ], [ -65.17391304347827, 0.2608695652173916 ], [ -64.80150753768844, -4.580402010050252 ], [ -65.5, -5.428571428571429 ], [ -68.75, -4.5 ], [ -77.73013245033113, 3.7317880794701983 ], [ -74.39601999494, 9.066368008095981 ], [ -70.89838488585947, 8.229678962301621 ], [ -70.35285300194789, 8.029279502921838 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fe2ca7dd70aa4ed09763c403ff6e4ab9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 59, 26 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "fe397e9cac0b4aff8c19536db7ecf499": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -5.84044598302083, 38.47356786416664 ], [ -12.194267517742581, 33.472292992902965 ], [ -13.059734513274336, 33.126106194690266 ], [ -32.567386056786326, 40.52556022843619 ], [ -31.913874716402603, 44.83279422886172 ], [ -28.3, 46.25 ], [ -8.20649494863753, 46.25 ], [ -7.872972522649686, 46.0625658921405 ], [ -6.7003170151417955, 45.35253612113436 ], [ -5.84044598302083, 38.47356786416664 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fe475ee50ed4484c93703b1e77cb3087": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 105.39215665397926, 15.5 ], [ 103.1, 15.5 ], [ 100.96341463414635, 19.0609756097561 ], [ 105.21428571428571, 26.5 ], [ 106.16088656936334, 26.5 ], [ 108.88327097592021, 20.89535884377141 ], [ 105.39215665397926, 15.5 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "fe8d9ceb407646c0b7d46a8a60e4234e": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 59.785714285714285, 28.785714285714285 ], [ 59.427835051546396, 33.43814432989691 ], [ 63.620161109870644, 37.031566665603414 ], [ 66.42940954782578, 37.72549204347852 ], [ 70.26923076923077, 34.52564102564102 ], [ 63.5, 25.5 ], [ 60.64285714285714, 27.642857142857142 ], [ 59.785714285714285, 28.785714285714285 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "febe5928c1d44670a0f2133e9434a320": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 78, 20 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "fece94f046e7476092308c2526c5b5ae": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 33, 66 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "fedc5d0ce33a475b99fc11121bbfe3be": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 44.25, 17.833333 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "ff1ebf04dd39459db63096f4887522e8": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 2, 33 ], "msg_throttle": 1, "options": [ "opacity", "keyboard", "title", "clickable", "rise_offset", "draggable", "alt", "rise_on_hover", "z_index_offset" ] } }, "ff3a8790edb04c40b000455cc5a9ea7a": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletMarkerModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "location": [ 17, -4 ], "msg_throttle": 1, "options": [ "rise_offset", "keyboard", "alt", "draggable", "clickable", "rise_on_hover", "opacity", "title", "z_index_offset" ] } }, "ff55f257fc4941988fef96093271b1c9": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 0.46816978001290277, 80.17871349622823 ], [ 1.5, 78.4375 ], [ 1.5, 60.625 ], [ -1.5769230769230766, 59.47115384615385 ], [ -7.639462809917355, 57.51549586776859 ], [ -13.941176470588236, 58.21568627450981 ], [ -7.9512599555741215, 80.17871349622823 ], [ 0.46816978001290277, 80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ff5dcc7e3c214443b389d398c588fd50": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ 8.739950250369214, 49.618139552727044 ], [ 8.006109329101175, 51.435269313230584 ], [ 8.451347305389222, 53.5501497005988 ], [ 14.133064516129032, 54.181451612903224 ], [ 12.410750188456655, 49.75264334174569 ], [ 11.35505392604767, 49.03477002519314 ], [ 8.739950250369214, 49.618139552727044 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ff815478edfc406ba52df8dfa88d0e84": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -161.00995633282557, -80.17871349622823 ], [ -172.8635758637368, -17.231932125320665 ], [ -171.73818188040755, -16.734534397758562 ], [ -166.0755949388039, -16.573894024806027 ], [ -154.2081680570249, -49.89655862899381 ], [ -158.8025273115672, -80.17871349622823 ], [ -161.00995633282557, -80.17871349622823 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ff947245b4c540219ee9b476423cc742": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -98.3029214480826, 7.690999280584988 ], [ -96.73651180719696, -1.2662164123666528 ], [ -96.77487043278369, -4.680138151091159 ], [ -98.8940331278323, -10.152006211468558 ], [ -103.16004951275413, -17.138177846795568 ], [ -121.2433711294087, -6.455291649717887 ], [ -135.92231409107774, 11.416829453819545 ], [ -137.88294597575836, 34.957403696829424 ], [ -99.8688999707149, 13.38455671254664 ], [ -98.3029214480826, 7.690999280584988 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } }, "ffc1a7933d904d7f8b805ec161e7ae31": { "model_module": "jupyter-leaflet", "model_module_version": "*", "model_name": "LeafletGeoJSONModel", "state": { "_model_module_version": "*", "_view_module_version": "*", "data": { "geometry": { "coordinates": [ [ [ -64.1469281096143, 17.133774559261973 ], [ -63.80586497026158, 18.200377289889307 ], [ -63.52215011315157, 18.173350959906372 ], [ -62.91871969518241, 18.02235756999168 ], [ -63.201638847461005, 17.556376725527574 ], [ -64.1469281096143, 17.133774559261973 ] ] ], "type": "Polygon" }, "properties": { "style": { "clickable": true, "color": "#f06eaa", "dashArray": null, "fill": true, "fillColor": null, "fillOpacity": 0.2, "lineCap": null, "lineJoin": null, "noClip": true, "opacity": 0.5, "smoothFactor": 1, "stroke": true, "weight": 2 } }, "type": "Feature" }, "hover_style": { "fillColor": "black", "fillOpacity": 0.5 }, "msg_throttle": 1 } } }, "version_major": 1, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 1 }