umap-project 3.3.6__py3-none-any.whl → 3.4.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +34 -28
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +43 -33
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +122 -32
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +35 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +148 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/urls.py +1 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/RECORD +214 -211
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
2
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
3
|
|
|
4
|
-
<svg width="216" height="192" id="svg2" version="1.1" inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)" sodipodi:docname="16.svg" inkscape:export-filename="/home/ybon/Code/js/Leaflet.Storage/src/img/16.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" xml:space="preserve" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><defs id="defs4"><marker style="overflow:visible" id="Arrow1" refX="0" refY="0" orient="auto-start-reverse" inkscape:stockid="Arrow1" markerWidth="4.0606604" markerHeight="6.7071066" viewBox="0 0 4.0606602 6.7071068" inkscape:isstock="true" inkscape:collect="always" preserveAspectRatio="xMidYMid"><path style="fill:none;stroke:context-stroke;stroke-width:1;stroke-linecap:butt" d="m 3,-3 -3,3 3,3" id="path5057" transform="rotate(180,0.125,0)" sodipodi:nodetypes="ccc" /></marker><mask id="mask0_181_11898" maskUnits="userSpaceOnUse" x="2" y="2" width="15" height="15"><path d="m 16.0401,2.3158 h -14.0351 v 14.0351 h 14.0351 z" fill="#ffffff" id="path2351" /></mask><clipPath id="clip0_3071_825"><rect width="18" height="20" fill="#ffffff" id="rect3" x="0" y="0" /></clipPath><clipPath id="clip0_241_10857"><rect width="18.049999" height="19.01" fill="#ffffff" id="rect586" x="0" y="0" /></clipPath><clipPath id="clip0_241_10857-3"><rect width="18.049999" height="19.01" fill="#ffffff" id="rect586-6" x="0" y="0" /></clipPath></defs><sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="2.040916" inkscape:cx="219.99926" inkscape:cy="109.26467" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:window-width="1920" inkscape:window-height="1011" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" showguides="true" inkscape:guide-bbox="true" inkscape:snap-grids="true" inkscape:snap-to-guides="true" inkscape:showpageshadow="2" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1"><inkscape:grid type="xygrid" id="grid3004" empspacing="4" visible="true" enabled="true" snapvisiblegridlinesonly="true" originx="0" originy="0" spacingy="1" spacingx="1" units="px" /><inkscape:grid id="grid1" units="px" originx="0" originy="0" spacingx="24" spacingy="24" empcolor="#303ff3" empopacity="1" color="#3f3fff" opacity="0.1254902" empspacing="1" enabled="true" visible="true" /></sodipodi:namedview><metadata id="metadata7"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-812.36218)"><g id="help" transform="translate(-23.255701,-119.38651)"><circle transform="matrix(1.0714286,0,0,1.0714286,26.684272,934.10579)" id="path3014" style="fill:none;stroke:#4d4d4d;stroke-width:0.933333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" cx="8" cy="9" r="7" /><g id="text3784" style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none" transform="translate(27.255701,-100.61365)"><path inkscape:connector-curvature="0" id="path3789" style="font-weight:bold;font-size:12px;-inkscape-font-specification:'Sans Bold';fill:#4d4d4d" d="m 9,1046.0464 h -2.3698034 v -0.3223 c 0,-0.3596 0.072207,-0.6775 0.2166302,-0.9539 0.1444174,-0.2807 0.4485749,-0.636 0.9124728,-1.0658 l 0.4201314,-0.3816 c 0.249449,-0.228 0.4310681,-0.4429 0.5448577,-0.6446 0.1181576,-0.2019 0.1772384,-0.4036 0.177243,-0.6053 -4.6e-6,-0.3071 -0.1050376,-0.5462 -0.3150985,-0.7171 -0.2100697,-0.1756 -0.5032861,-0.2632 -0.87965,-0.2632 -0.3544889,0 -0.7374207,0.075 -1.1487968,0.2237 -0.4113804,0.1446 -0.840264,0.3618 -1.2866522,0.6513 v -2.0659 c 0.5295391,-0.184 1.0131273,-0.32 1.4507661,-0.4077 0.437634,-0.088 0.8599531,-0.1317 1.2669587,-0.1317 1.0678292,0 1.8818328,0.2194 2.442012,0.6579 0.560169,0.4341 0.840256,1.0702 0.840263,1.9078 -7e-6,0.4298 -0.08535,0.8159 -0.256017,1.158 -0.170685,0.3377 -0.461713,0.7017 -0.873085,1.092 l -0.4201313,0.375 c -0.297598,0.272 -0.4923463,0.4913 -0.5842451,0.658 -0.091909,0.1622 -0.1378603,0.342 -0.1378556,0.5394 v 0.296 m -2.3698034,0.9739 h 2.3698034 v 2.342 h -2.3698034 v -2.342" sodipodi:nodetypes="ccsccccccsccccsccccccccccccc" /></g></g><path inkscape:connector-curvature="0" style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 59.999998,843.86218 c -3,0 -5,1.5 -8,4.5 3,3 5,4.5 8,4.5 3.000003,0 5.000003,-1.5 8.000003,-4.5 -3,-3 -5,-4.5 -8.000003,-4.5 z m 0,2.5 c 1.104563,0 1.999993,0.8954 1.999993,2 0,1.1046 -0.89543,2 -1.999993,2 -1.104569,0 -2,-0.8954 -2,-2 0,-1.1046 0.895431,-2 2,-2 z" id="show" inkscape:label="eye-on" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/eye-on.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><g id="hide" style="fill:#b3b3b3" inkscape:label="" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/eye-off.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" transform="translate(75,-195.00002)"><path id="path2990" transform="translate(0,1034.3622)" d="m 9,4.5 c -2.9999998,-3.36e-5 -4.9999999,1.5 -8,4.5 3.0000001,2.999999 5.0000002,4.500033 8,4.5 3,-3.3e-5 5,-1.500001 8,-4.5 -3,-3 -5,-4.4999664 -8,-4.5 z m 0,2.5 c 1.104569,0 2,0.8954305 2,2 0,1.104569 -0.895431,2 -2,2 -1.1045695,0 -2,-0.895431 -2,-2 0,-1.1045695 0.8954305,-2 2,-2 z" style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" inkscape:connector-curvature="0" /><path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect3787" d="m 2,1047.8622 13,-10 1,1 -13,10 z" style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><path style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 78,819.36214 v 2 h 12 v -2 z m 0,3 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z" id="table-disabled" inkscape:connector-curvature="0" inkscape:label="" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/browse-data.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" d="m 13.51751,866.36211 c -2.466762,0 -4.48249,2.0158 -4.48249,4.4826 0,0.8297 0.233748,1.5964 0.63035,2.26462 l -3.66537,3.66532 1.587549,1.5876 3.66537,-3.66542 c 0.668139,0.3966 1.434831,0.6303 2.264591,0.6303 2.466762,0 4.48249,-2.0157 4.48249,-4.48242 0,-2.4668 -2.015728,-4.4826 -4.48249,-4.4826 z m 0,1.4943 c 1.659256,0 2.988326,1.329 2.988326,2.9883 0,1.6592 -1.32907,2.98832 -2.988326,2.98832 -1.659256,0 -2.988326,-1.32912 -2.988326,-2.98832 0,-1.6593 1.32907,-2.9883 2.988326,-2.9883 z m 0,1.4941 c -0.816354,0 -1.494163,0.6779 -1.494163,1.4942 0,0.8163 0.677809,1.4942 1.494163,1.4942 0.816354,0 1.494163,-0.6779 1.494163,-1.4942 0,-0.8163 -0.677809,-1.4942 -1.494163,-1.4942 z" id="zoom" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom_to.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" inkscape:connector-curvature="0" /><path id="zoom-disabled" d="m 37.51751,866.36216 c -2.466762,0 -4.482491,2.0157 -4.482491,4.4825 0,0.8298 0.233749,1.5964 0.630351,2.2645 l -3.66537,3.66554 1.587549,1.5875 3.665369,-3.66544 c 0.668139,0.39662 1.434831,0.63042 2.264592,0.63042 2.466762,0 4.48249,-2.01572 4.48249,-4.48252 0,-2.4668 -2.015728,-4.4825 -4.48249,-4.4825 z m 0,1.4942 c 1.659256,0 2.988327,1.329 2.988327,2.9883 0,1.6593 -1.329071,2.9883 -2.988327,2.9883 -1.659256,0 -2.988327,-1.329 -2.988327,-2.9883 0,-1.6593 1.329071,-2.9883 2.988327,-2.9883 z m 0,1.4941 c -0.816355,0 -1.494164,0.6779 -1.494164,1.4942 0,0.8163 0.677809,1.4942 1.494164,1.4942 0.816355,0 1.494163,-0.6779 1.494163,-1.4942 0,-0.8163 -0.677808,-1.4942 -1.494163,-1.4942 z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom_to-off.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><path style="fill:#464646;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 54,819.36218 v 2 h 12 v -2 z m 0,3 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z" id="table" inkscape:connector-curvature="0" inkscape:label="" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/browse-data.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><g transform="translate(32,-54.000118)" style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none" id="text3784-6" /><path id="close-9" style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.188976;stroke-dasharray:none;stroke-opacity:1" d="m 32.353032,820.00818 -0.707032,0.70704 3.646485,3.64648 -3.646485,3.64648 0.707032,0.70704 3.646484,-3.64649 3.646484,3.64649 0.707032,-0.70704 -3.646485,-3.64648 3.646485,-3.64648 -0.707032,-0.70704 -3.646484,3.64649 z" /><path inkscape:connector-curvature="0" d="m 35.192241,853.36196 2e-6,-4.19993 -4.192255,1e-5 -3e-6,-1.62667 h 4.192263 v -4.17331 l 1.608812,0.007 0.0067,4.16664 h 4.192255 l -3.9e-5,1.62662 -4.19222,4e-5 -1.5e-5,4.19994 h -1.615475" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none" id="add" /><path d="m 16.556757,844.0811 c 0.129729,-0.17297 0.259459,-0.38919 0.302702,-0.64865 h 2.681081 c 0.25946,0 0.432433,-0.17297 0.432433,-0.43243 0,-0.25946 -0.172973,-0.43243 -0.432433,-0.43243 h -2.681081 c -0.08649,-0.38919 -0.345946,-0.77838 -0.691891,-1.03784 -0.821622,-0.60541 -1.945946,-0.38919 -2.508109,0.38919 -0.129729,0.17297 -0.216216,0.38919 -0.302702,0.64865 h -8.9513515 c -0.2594595,0 -0.4324325,0.17297 -0.4324325,0.43243 0,0.25946 0.172973,0.43243 0.4324325,0.43243 h 8.9513515 c 0.08649,0.38919 0.345946,0.77838 0.691892,1.03784 0.778378,0.6054 1.945946,0.43243 2.508108,-0.38919 z m -1.989189,-0.3027 c -0.216217,-0.12973 -0.345946,-0.34595 -0.38919,-0.60541 -0.04324,-0.25946 0,-0.47567 0.172973,-0.69189 0.302703,-0.43243 0.908109,-0.51892 1.297298,-0.21622 0.216216,0.12973 0.345946,0.34595 0.389189,0.60541 0,0.0432 0,0.0865 0,0.12973 0,0.21621 -0.04324,0.38919 -0.172973,0.56216 -0.302703,0.43243 -0.908108,0.51892 -1.297297,0.21622 z m -4.410811,5.23243 c 0.129729,-0.17297 0.259459,-0.38919 0.302702,-0.64865 h 9.081081 c 0.25946,0 0.432433,-0.17297 0.432433,-0.43243 0,-0.25946 -0.172973,-0.43243 -0.432433,-0.43243 h -9.081081 c -0.08649,-0.38919 -0.345945,-0.77838 -0.6918914,-1.03784 -0.8216216,-0.60541 -1.9459459,-0.38919 -2.5081081,0.38919 -0.1297297,0.17297 -0.2162162,0.38919 -0.3027027,0.64865 h -2.5513513 c -0.2594595,0 -0.4324325,0.17297 -0.4324325,0.43243 0,0.25946 0.172973,0.43243 0.4324325,0.43243 h 2.5513513 c 0.086486,0.38919 0.3459459,0.77838 0.6918919,1.03784 0.7783784,0.56216 1.9027027,0.38919 2.5081083,-0.38919 z m -1.9891894,-0.34595 c -0.2162162,-0.12973 -0.3459459,-0.34594 -0.3891892,-0.6054 -0.043243,-0.25946 0,-0.47568 0.172973,-0.69189 0.3027027,-0.43244 0.9081081,-0.51892 1.2972973,-0.21622 0.2162162,0.12973 0.3459459,0.34595 0.3891892,0.60541 0,0.0432 0,0.0865 0,0.12973 0,0 0,0 0,0 0,0 0,0 0,0 0,0.21621 -0.043243,0.38918 -0.172973,0.56216 -0.3027027,0.43243 -0.9081081,0.51892 -1.2972973,0.21621 z m 6.7027024,5.23244 c 0.12973,-0.17298 0.25946,-0.38919 0.302703,-0.64865 h 4.367567 c 0.25946,0 0.432433,-0.17298 0.432433,-0.43244 0,-0.25945 -0.172973,-0.43243 -0.432433,-0.43243 h -4.367567 c -0.08649,-0.38919 -0.345946,-0.77838 -0.691892,-1.03784 -0.389189,-0.3027 -0.864865,-0.38918 -1.34054,-0.34594 -0.475676,0.0865 -0.908109,0.34594 -1.167568,0.73513 -0.12973,0.21622 -0.216216,0.38919 -0.302703,0.64865 h -7.2648645 c -0.2594595,0 -0.4324325,0.17298 -0.4324325,0.43243 0,0.25946 0.172973,0.43244 0.4324325,0.43244 h 7.3081085 c 0.08649,0.38919 0.345945,0.77838 0.691891,1.03784 0.778379,0.56216 1.902703,0.38918 2.464865,-0.38919 z m -1.989189,-0.30271 c -0.216216,-0.17297 -0.345946,-0.38919 -0.389189,-0.64865 0,-0.0432 0,-0.0865 0,-0.0865 0,-0.0433 0,-0.0865 0,-0.0865 0,-0.17297 0.08649,-0.3027 0.172973,-0.43243 0.12973,-0.21622 0.345946,-0.34595 0.605405,-0.38919 0.25946,-0.0432 0.475676,0.0432 0.691892,0.17297 0.216216,0.12973 0.345946,0.34595 0.389189,0.60541 0,0.0432 0,0.0865 0,0.12973 0,0 0,0 0,0 0,0 0,0 0,0 0,0.21621 -0.04324,0.38919 -0.172973,0.56216 -0.302702,0.38919 -0.864864,0.47568 -1.297297,0.17297 z" id="path1-3" style="fill:#4d4d4d;fill-opacity:1;stroke-width:1" /><path style="fill:#4d4d4d;fill-opacity:1;stroke:none" d="m 63.71429,866.36218 -1.14285,1.14286 2.28571,2.28572 1.14285,-1.14286 z m -1.71429,1.71428 -6.285714,6.28574 2.285715,2.2857 6.285719,-6.28572 z m -6.285714,6.28574 -1.714286,3.99999 4.000001,-1.71429 z" id="edit" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" /><text xml:space="preserve" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" x="39.647079" y="918.79706" id="text4457-6"><tspan y="918.79706" x="39.647079" sodipodi:role="line" id="tspan4459-6" style="font-size:30.4762px;line-height:1.25;font-family:sans-serif"> </tspan></text><path style="fill:#b3b3b3;fill-opacity:1;stroke:none" d="m 63.71429,890.36216 -1.14285,1.1428 2.28571,2.2858 1.14285,-1.1429 z m -1.71429,1.7143 -6.285714,6.28572 2.285714,2.2857 6.28572,-6.2857 z m -6.285714,6.28572 -1.714286,4 4,-1.7143 z" id="path3684-2" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" /><g id="share" class="sprite" transform="matrix(0.66666667,0,0,0.66666667,-54.666667,282.78885)"><circle id="path4309" cx="100" cy="992.35999" r="11" fill="none" stroke="#464646" stroke-width="2" /><circle id="path4819" transform="rotate(-111.82)" cx="-963.89001" cy="-276.04001" r="2.5" fill="#464646" /><circle id="path4819-2" transform="rotate(-111.82)" cx="-956.38" cy="-281.16" r="2.5" fill="#464646" /><circle id="path4819-0" transform="rotate(-111.82)" cx="-954.65997" cy="-272.06" r="2.5" fill="#464646" /><path id="path4850" d="m 102.39,987.48 -8.0191,4.9199 8.1393,5.3224" fill="none" stroke="#464646" stroke-width="2" /></g><path id="search" class="sprite" d="m 44,950.23355 -4.291316,-4.29232 c 0.577593,-0.95281 0.916066,-2.06944 0.916066,-3.26554 0,-3.48904 -2.823586,-6.31439 -6.312375,-6.3154 -3.486521,0.001 -6.312375,2.82661 -6.312375,6.31489 0,3.48602 2.82661,6.31137 6.314391,6.31137 1.196735,0 2.311555,-0.3385 3.264283,-0.91606 l 4.293583,4.29358 z m -13.591561,-7.55862 c 0.0035,-2.15737 1.748425,-3.90227 3.905296,-3.9058 2.156165,0.005 3.901517,1.74843 3.905297,3.9058 -0.0043,2.15556 -1.749031,3.90152 -3.905297,3.90454 -2.157375,0 -3.902272,-1.74903 -3.905296,-3.90454 z" fill="#4d4d4d" stroke-width="0.666664" /><g id="info" transform="translate(0,2)"><circle style="fill:#464646;fill-opacity:1;stroke:none" id="path3762" cx="108" cy="846.36218" r="8" /><circle style="fill:#ffffff;fill-opacity:1;stroke:none" id="path3764" cx="108" cy="842.36218" r="1.5" /><path style="fill:#ffffff;fill-opacity:1;stroke:none" d="m 107,845.36218 h 2 v 6 h -2 z" id="rect4274" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" /></g><g id="g4717" transform="translate(-54.789185,-113.97702)"><path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path3862" d="m 140.0582,1028.2632 4.21686,4.2783 -4.14879,7.8737 -5.87101,-3.1269 -0.95195,-6.3455 z" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path3864" d="m 135.91434,1032.4783 1.7373,3.8107 3.35847,-1.5041 0.59077,-2.4329 -2.98985,-1.6008" style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /></g><path style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 131,865.36218 v 1 c -1.42857,0 -3.28571,0.59991 -4,2 v 1 h 10 v -1 c -0.71429,-1.40009 -2.57143,-2 -4,-2 v -1 z m -4,5 2,9 h 6 l 2,-9 z" id="delete" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" inkscape:label="" /><g id="g4797" transform="translate(-70.259925,-96.674381)"><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8" d="m 180.4719,999.63731 1.46774,-13.3359" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4349-2-2-3-3" d="m 175.49003,999.69763 -2.4614,-13.1887" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g id="g4621"><g id="g4400-8-39-2-3-1" transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)" style="stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-6" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-3" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="g4400-8-39-2-3" transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)" style="stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g></g><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8-5" d="m 137.59855,902.96376 1.46774,-13.3359" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4349-2-2-3-3-3" d="m 127.486,903.09649 -2.4614,-13.1887" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g id="g4621-5" transform="rotate(-45,40.175443,1003.6226)"><g id="g4400-8-39-2-3-1-6" transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)" style="stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-6-2" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-3-9" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="g4400-8-39-2-3-12" transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)" style="stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-7" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-0" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g><g id="g4976" transform="translate(-86.464447,-110.33387)"><rect y="1028.9158" x="216.44643" height="4" width="4" id="rect4918" style="fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8-7-0-0" d="m 218.99033,1031.3352 -6.55062,-7.6872" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:1.73727;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:transform-center-x="-3.7509278" inkscape:transform-center-y="-0.64197712" /><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8-7-0" d="m 213.65253,1037.7441 5.63872,-7.9526" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:1.60523;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g style="fill:#4d4d4d;fill-opacity:1" transform="translate(40.872965,40.767561)" id="g4621-0-6"><g id="g4400-8-39-2-3-1-1-8" transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)" style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-6-5-5" d="m 176,948.36218 8,8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-3-31-4" d="m 176,956.36218 8,-8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="g4400-8-39-2-3-3-7" transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)" style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-3-9" d="m 176,948.36218 8,8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-8-7" d="m 176,956.36218 8,-8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g></g><g id="undo" transform="matrix(0.51357238,-0.54309229,0.54309229,0.51357238,-590.02132,602.22569)"><path transform="rotate(154.40296)" sodipodi:open="true" d="m 231.87666,-980.51414 a 8,8 0 0 1 -8.12623,-4.12713 8,8 0 0 1 1.012,-9.05786 8,8 0 0 1 8.83671,-2.23192 8,8 0 0 1 5.1918,7.49093" sodipodi:end="0" sodipodi:start="1.4346606" sodipodi:ry="8" sodipodi:rx="8" sodipodi:cy="-988.44012" sodipodi:cx="230.79094" sodipodi:type="arc" id="path4240" style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:arc-type="arc" /><path inkscape:connector-curvature="0" id="path4242" d="m 216,980.36218 -1.59512,4.19351 3.53553,1.89404" style="fill:none;fill-rule:evenodd;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="undo-3" transform="matrix(-0.51357238,-0.54309229,-0.54309229,0.51357238,734.02132,602.22569)"><path transform="rotate(154.40296)" sodipodi:open="true" d="m 231.87666,-980.51414 a 8,8 0 0 1 -8.12623,-4.12713 8,8 0 0 1 1.012,-9.05786 8,8 0 0 1 8.83671,-2.23192 8,8 0 0 1 5.1918,7.49093" sodipodi:end="0" sodipodi:start="1.4346606" sodipodi:ry="8" sodipodi:rx="8" sodipodi:cy="-988.44012" sodipodi:cx="230.79094" sodipodi:type="arc" id="path4240-5" style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:arc-type="arc" /><path inkscape:connector-curvature="0" id="path4242-6" d="m 216,980.36218 -1.59512,4.19351 3.53553,1.89404" style="fill:none;fill-rule:evenodd;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><path style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 131,937.36218 v 1 c -1.42857,0 -3.28571,0.5999 -4,2 v 1 h 10 v -1 c -0.71429,-1.4001 -2.57143,-2 -4,-2 v -1 z m -4,5 2,9 h 6 l 2,-9 z" id="delete-disabled" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" inkscape:label="" /><g id="tilelayers" transform="matrix(2.5259351,0,0,2.5259351,47.787514,955.60094)"><path d="m 26.772659,3.4276506 h -4.243945 c -0.07035,0 -0.137814,0.027945 -0.187558,0.077687 -0.04974,0.049744 -0.07769,0.1172104 -0.07769,0.1875578 v 4.2439431 c 0,0.070353 0.02794,0.1378215 0.07769,0.1875631 0.04974,0.049742 0.11721,0.077682 0.187558,0.077682 h 4.243945 c 0.07035,0 0.137822,-0.02794 0.187563,-0.077682 0.04974,-0.049742 0.07768,-0.1172104 0.07768,-0.1875631 v -4.2439431 c 0,-0.070347 -0.02794,-0.1378135 -0.07768,-0.1875578 -0.04974,-0.049742 -0.11721,-0.077687 -0.187563,-0.077687 z m -0.265245,4.1590648 h -3.713453 v -3.546348 h 3.713453 z" fill="#464646" id="path2349" style="stroke-width:0.264583" /><g mask="url(#mask0_181_11898)" id="g2376" transform="matrix(0.26458333,0,0,0.26458333,20.637501,1.8520833)"><path d="m 16.0401,2.3158 h -14.0351 v 14.0351 h 14.0351 z" fill="#d5ecbe" id="path2354" /><path d="m 2.37597,3.42857 c 0.26774,-0.31238 0.61516,-0.54633 1.00529,-0.67696 0.39014,-0.13063 0.80838,-0.15306 1.21025,-0.06489 0.32391,0.15649 0.58536,0.41794 0.74185,0.74185 0.37093,0.72181 0,1.26316 0,2.21554 -0.0802,1.72431 1.00251,2.08522 0.73183,3.68923 -0.0802,0.57142 -0.34085,1.44356 -0.73183,1.47366 -0.62155,0.0602 -0.94235,-2.00499 -2.21554,-2.21552 -0.39097,-0.06015 -0.47117,0.11028 -0.74185,0 -1.05263,-0.401 -1.523811,-3.65915 0,-5.16291 z" fill="#e9daab" id="path2356" /><path d="m 7.1779,16.3509 c -1.75438,-1.7243 -2.16541,-1.7544 -2.16541,-2.2156 -0.1604,-1.0025 1.74436,-1.2932 2.21554,-2.9573 0.33083,-1.173 -0.47118,-1.56396 -0.74186,-3.68927 -0.1604,-1.25313 -0.401,-3.21805 0.74186,-4.43108 1.14286,-1.21303 3.13787,-1.17293 4.43107,-0.74185 1.0647,0.38986 1.9867,1.09245 2.6451,2.01558 0.6584,0.92314 1.0223,2.02371 1.0441,3.15735 0,1.24311 -0.6817,1.65413 -0.7318,3.68927 0.0605,0.7372 0.0605,1.4782 0,2.2155 -0.1546,1.1225 -0.6763,2.1624 -1.4837,2.9574 -1.5038,1.3433 -3.90978,1.6942 -5.22307,0.7418 -0.15037,-0.1102 -0.07017,-0.0501 -0.73183,-0.7418 z" fill="#bcd8af" id="path2358" /><path d="m 14.1956,9.33332 c -0.4303,0.37544 -0.6966,0.90438 -0.7419,1.47368 0,0.1203 0,1.213 0.7419,1.4837 0.2937,0.0714 0.6033,0.036 0.8733,-0.0999 0.27,-0.1359 0.4828,-0.3635 0.6004,-0.6419 0.066,-0.2429 0.066,-0.499 0,-0.7419 -0.1604,-1.38345 0.3007,-2.00501 0,-2.21553 -0.3008,-0.21053 -1.0928,0.35087 -1.4737,0.74185 z" fill="#ebe9d6" id="path2360" /><path d="m 14.1955,15.2381 c 0.2874,0.0123 0.5733,-0.0483 0.831,-0.1763 0.2577,-0.1279 0.4788,-0.3191 0.6427,-0.5555 0.2005,-0.3308 0.4411,-1.0526 0,-1.4837 -0.2062,-0.1739 -0.4672,-0.2693 -0.7369,-0.2693 -0.2696,0 -0.5306,0.0954 -0.7368,0.2693 0,0 -1.4837,0.7418 -1.4837,1.4837 0,0.7418 1.4837,0.7318 1.4837,0.7318 z" fill="#f3ecdd" id="path2362" /><path d="m 7.90976,1.57394 c -1.89474,1.32331 -2.26566,2.29574 -2.21554,2.9574 0.0802,1.0025 1.09273,1.37343 1.48371,3.00752 0.19537,0.72559 0.19537,1.48994 0,2.21553 -0.58145,1.85461 -2.51629,1.88471 -3.69925,3.68921 -0.6679,1.11 -0.92678,2.4186 -0.73183,3.6993" stroke="#dfa170" stroke-width="0.75" stroke-miterlimit="10" id="path2364" style="fill:none" /><path d="m 5.33325,1.94485 c 1.5732,1.61744 2.60339,3.68483 2.94737,5.91479 0.13097,0.73271 0.13097,1.48283 0,2.21556 -0.33083,1.7042 -1.30326,2.3559 -2.21554,4.4311 -0.31515,0.713 -0.56025,1.455 -0.73183,2.2155" stroke="#e0859b" stroke-width="0.25" stroke-miterlimit="10" id="path2366" style="fill:none" /><path d="m 10.4963,14.5063 c -1.84462,-1.0025 -1.7143,-5.53387 0,-6.64665 0.5915,-0.38096 1.1328,-0.21053 1.4837,-0.74186 0.5213,-0.802 -0.411,-1.69423 0,-2.95739 0.2306,-0.72181 0.8922,-1.52381 1.4737,-1.47369 1.0025,0.0802 2.1253,2.5564 1.4737,4.43108 -0.5314,1.56391 -1.9148,1.51379 -2.2156,3.00751 -0.3408,1.6441 1.2732,2.6266 0.7419,3.6892 -0.3395,0.4362 -0.8182,0.7428 -1.3564,0.8687 -0.5382,0.1259 -1.1033,0.0634 -1.601,-0.1769 z" fill="#ade3ea" id="path2368" /><path d="m 7.90971,2.31578 c -0.39098,0.91228 0.21052,2.14537 0.74185,2.21554 0.53133,0.07018 0.66166,-0.65163 1.48374,-0.74185 0.401,0 0.5213,0.1203 0.7318,0 0.5013,-0.27068 0.6115,-1.62406 0,-2.21554 -0.2397,-0.1568 -0.5092,-0.26229 -0.7916,-0.30984 -0.28244,-0.04755 -0.57165,-0.03612 -0.84944,0.03356 -0.2778,0.06969 -0.53816,0.19612 -0.76471,0.37134 -0.22654,0.17522 -0.41436,0.39544 -0.55164,0.64679 z" fill="#748ec2" id="path2370" /><path d="m 10.1354,5.27317 c -0.31082,0.30075 -0.88225,0.85213 -0.7419,1.47369 0.09023,0.401 0.45113,0.78195 0.7419,0.74185 0.2907,-0.0401 0.2907,-0.57143 0.7318,-0.74185 0.4411,-0.17043 0.5113,0.11027 0.7418,0 0.5314,-0.24061 0.6116,-1.92482 0,-2.21554 -0.6115,-0.29073 -1.2431,0.4812 -1.4736,0.74185 z" fill="#f3ecdd" id="path2372" /><path d="m 3.47861,3.78948 c 0.27068,-0.1604 1.31328,0.54135 1.48371,1.48371 0.17043,0.94236 -0.82205,2.31579 -1.48371,2.21554 -0.28201,-0.11246 -0.51262,-0.32501 -0.64766,-0.59693 -0.13503,-0.27192 -0.165,-0.58411 -0.08417,-0.87676 0.27068,-0.55137 1.45364,-0.4411 1.47369,-0.73183 0.02005,-0.29072 -0.51128,-0.27067 -0.74186,-0.75188 -0.1203,-0.27067 -0.14035,-0.65162 0,-0.74185 z" fill="#cfd7c8" id="path2374" /></g><path d="m 25.146689,1.8520833 h -4.243941 c -0.07035,0 -0.137815,0.027946 -0.187558,0.077689 -0.04974,0.049744 -0.07769,0.1172099 -0.07769,0.1875586 v 4.2439405 c 0,0.070353 0.02795,0.1378215 0.07769,0.1875632 0.04974,0.049742 0.11721,0.077682 0.187558,0.077682 h 4.243941 c 0.07035,0 0.137821,-0.02794 0.187563,-0.077682 0.04974,-0.049742 0.07768,-0.1172105 0.07768,-0.1875632 v -4.2439405 c 0,-0.070349 -0.02794,-0.1378151 -0.07768,-0.1875586 -0.04974,-0.049743 -0.11721,-0.077689 -0.187563,-0.077689 z m -0.265245,4.1590648 h -3.713451 v -3.5463453 h 3.713451 z" fill="#464646" id="path2378" style="stroke-width:0.264583" /></g><path id="arrow-down" d="m 156,875.36218 6,-6 h -12 z" fill="#f2f2f2" fill-rule="evenodd" style="fill:#4d4d4d;fill-opacity:1" /><path id="arrow-right" d="m 159,896.36218 -6,-6 v 12 z" fill="#f2f2f2" fill-rule="evenodd" style="fill:#4d4d4d;fill-opacity:1" /><path d="m 14.181818,962.11797 v 2.60785 h 2.607845 z m 2.909091,4.06239 h -2.909091 c -0.803323,0 -1.454545,-0.65122 -1.454545,-1.45454 v -2.90909 h -5.8181821 v 13.0909 h 10.1818181 z m -10.1818181,-5.81818 h 7.5739741 l 4.06239,4.06239 v 10.48306 c 0,0.80333 -0.651223,1.45455 -1.454546,1.45455 h -10.1818181 c -0.8033233,0 -1.4545455,-0.65122 -1.4545455,-1.45455 v -13.0909 c 0,-0.80333 0.6512222,-1.45455 1.4545455,-1.45455 z m 4.3636361,9.88057 v -3.33512 h 1.454546 v 3.33512 l 0.940285,-0.94029 1.02852,1.02853 -2.696078,2.69607 -2.6960778,-2.69607 1.0285188,-1.02853 z" fill-rule="evenodd" id="downloadfile" style="fill:#464646;fill-opacity:1;stroke-width:0.727273" /><g id="downloadbackup"><path style="fill:#464646;fill-opacity:1;stroke-width:0.727273" d="m 42.545455,974.90763 c 0,0.80333 -0.651223,1.45455 -1.454546,1.45455 h -10.181818 c -0.803323,0 -1.454546,-0.65122 -1.454546,-1.45455 2.557093,0 9.805435,0 13.09091,0 z" id="path8303-6" /><path style="fill:none;fill-rule:evenodd;stroke:#464646;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1)" d="m 36,963.87832 v 8.3163" id="path16669" sodipodi:nodetypes="cc" /></g><path id="copy" style="fill:#4d4d4d;stroke-width:1;paint-order:fill markers stroke" d="m 106.17392,986.36218 v 3.65217 h 4.17391 v 4.17392 h 3.65217 v -7.82609 z m -4.17392,4.17391 v 7.82609 h 7.82609 v -7.82609 z" /><path style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" d="m 134,964.36218 -4,4 4.28879,3.97691" id="path1" sodipodi:nodetypes="ccc" /><path style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" d="m 154.28879,964.06929 4,4 -4.28879,3.97691" id="path1-36" sodipodi:nodetypes="ccc" /><path d="m 113.37897,943.55658 0.9072,0.5491 c 0.1786,0.10817 0.2366,0.34196 0.1294,0.52223 -0.0319,0.0535 -0.0764,0.0983 -0.1294,0.13055 l -7.00717,4.24121 -7.00708,-4.24121 c -0.17869,-0.10817 -0.23664,-0.34196 -0.12942,-0.52222 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.13056 l 0.90714,-0.5491 6.09994,3.69219 z m 0,3.57799 0.9072,0.5491 c 0.1786,0.1081 0.2366,0.3419 0.1294,0.5222 -0.0319,0.0535 -0.0764,0.0983 -0.1294,0.1306 l -6.61891,4.0061 c -0.239,0.1447 -0.53753,0.1447 -0.77652,0 l -6.61882,-4.0061 c -0.17869,-0.1082 -0.23664,-0.342 -0.12942,-0.5223 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.1305 l 0.90714,-0.5491 6.09994,3.6921 z m -5.71171,-10.57501 6.61891,4.00621 c 0.1786,0.10815 0.2366,0.34196 0.1294,0.52222 -0.0319,0.0536 -0.0764,0.0984 -0.1294,0.13056 l -7.00717,4.24119 -7.00708,-4.24119 c -0.17869,-0.10815 -0.23664,-0.34196 -0.12942,-0.52222 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.13056 l 6.61882,-4.00621 c 0.23899,-0.14465 0.53752,-0.14465 0.77652,0 z" fill="#4d4d4d" id="path437" style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.178;stroke-dasharray:none;stroke-opacity:1" /><path fill-rule="evenodd" clip-rule="evenodd" d="m 87.166638,966.62162 -3.166579,-2.99638 -3.166613,2.99638 -0.833375,-0.78858 3.4333,-3.24873 c 0.312979,-0.29613 0.82041,-0.29613 1.133389,0 l 3.43324,3.24873 z m -6.333275,3.48122 3.166626,2.99639 3.166649,-2.99639 0.833362,0.78859 -3.433322,3.24872 c -0.312968,0.29608 -0.820411,0.29608 -1.133378,0 l -3.4333,-3.24872 z" fill="#efefef" id="path1-675" style="fill:#464646;fill-opacity:1;stroke-width:0.999996" /><path style="fill:#464646;fill-opacity:1;stroke-width:0.999996" d="m 63.166637,974.36218 -3.166626,-2.99639 -3.166649,2.99639 -0.833362,-0.78859 3.433322,-3.24872 c 0.312968,-0.29608 0.820411,-0.29608 1.133378,0 l 3.4333,3.24872 z" id="path5" /><path style="fill:#464646;fill-opacity:1;stroke-width:0.999996" d="m 56.000071,963.15076 3.43324,3.24873 c 0.312979,0.29613 0.82041,0.29613 1.133389,0 l 3.4333,-3.24873 -0.833375,-0.78858 -3.166613,2.99638 -3.166579,-2.99638 z" id="path1-675-2" /><path id="linestring" style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1" d="m 175,961.05775 v 2 h 1.88282 l 6.11718,3.05859 v 0.23438 l -6.70703,6.70703 h -1.29297 v 2 h 2 v -1.29297 l 6.70703,-6.70703 h 1.29297 v -2 h -1.88281 l -6.11719,-3.05859 v -0.94141 z" /><path id="polygon" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" d="m 174,912.36218 v 2 h 0.92774 l -0.85547,12 h -1.07227 v 2 h 2 v -1.19922 l 8,-1.60156 v 0.80078 h 2 v -2 h -0.77734 l 1.55469,-7 h 1.22265 v -2 h -2 v 0.72656 l -9,-2.45312 v -1.27344 z" /><g style="fill:none" id="g1" transform="matrix(1.2199965,0,0,1.2199965,75.480004,864.64218)"><path d="m 2.5,4 c 0.82843,0 1.5,-0.67157 1.5,-1.5 0,-0.82843 -0.67157,-1.5 -1.5,-1.5 -0.82843,0 -1.5,0.67157 -1.5,1.5 0,0.82843 0.67157,1.5 1.5,1.5 z" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path1-7" /><path d="m 4,5.3501 h -3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path2" /><path d="m 11.5,4 c 0.8284,0 1.5,-0.67157 1.5,-1.5 0,-0.82843 -0.6716,-1.5 -1.5,-1.5 -0.8284,0 -1.5,0.67157 -1.5,1.5 0,0.82843 0.6716,1.5 1.5,1.5 z" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path3" /><path d="m 10,5.3501 h 3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path4" /><path d="m 7,7.75 c 0.82843,0 1.5,-0.67157 1.5,-1.5 0,-0.82843 -0.67157,-1.5 -1.5,-1.5 -0.82843,0 -1.5,0.67157 -1.5,1.5 0,0.82843 0.67157,1.5 1.5,1.5 z" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path5-6" /><path d="m 8.5,9.3501 h -3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path6" /><path d="m 5.5,9.3501 h 3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path7" /></g><path style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:6.97518;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" inkscape:transform-center-x="-0.0010932573" inkscape:transform-center-y="-0.7377641" d="m 7.6709247,999.35911 1.3886278,-5.25501 -4.0584591,-3.24679 h 5.1830926 l 1.819345,-5.49493 1.81469,5.49392 h 5.182872 l -4.06154,3.24965 1.383849,5.25641 -4.324867,-3.01227 z" id="star" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" class="sprite" /><path style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" inkscape:transform-center-x="-0.0010925804" inkscape:transform-center-y="-0.73776941" d="m 31.670925,999.3591 1.388628,-5.25504 -4.05846,-3.24679 h 5.183093 l 1.819345,-5.49493 1.814694,5.49392 h 5.182868 l -4.06154,3.24964 1.383849,5.25649 -4.324874,-3.01234 z" id="starred" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" class="sprite" /><path id="import" class="sprite" d="m 156,912.44465 c -4.37271,0 -7.91753,3.54481 -7.91753,7.91753 0,4.37272 3.54482,7.91752 7.91753,7.91752 4.37272,0 7.91752,-3.5448 7.91752,-7.91752 0,-4.37272 -3.5448,-7.91753 -7.91752,-7.91753 z m 0,3.29893 4.6186,4.6186 h -3.29893 v 3.95876 h -2.63909 v -3.95876 h -3.29893 z" fill="#f2f2f2" stroke="#999999" stroke-width="0.164949" style="fill:#4d4d4d;fill-opacity:1" /><path id="marker" d="m 180,840.36218 c -2.625,0 -5.25,1.70216 -6,5.1064 0,2.04256 1.5,6.12768 6,10.8936 4.5,-4.76592 6,-8.85104 6,-10.8936 -0.75,-3.40424 -3.375,-5.1064 -6,-5.1064 z m 0,2.38304 c 1.65686,0 3,1.21928 3,2.72336 0,1.50408 -1.34314,2.72344 -3,2.72344 -1.65684,0 -3,-1.21936 -3,-2.72344 0,-1.50408 1.34316,-2.72336 3,-2.72336 z" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0" /><path d="m 203.41818,838.96218 c -2.97727,0 -5.96591,1.94619 -6.81818,5.85003 0,2.33543 1.70455,7.01777 6.81818,12.46707 5.11362,-5.4608 6.81822,-10.13164 6.81822,-12.46707 -0.8523,-3.89239 -3.8409,-5.85003 -6.81822,-5.85003 z" fill="#ffffff" stroke="#323737" stroke-width="1.2" id="path1-2" style="stroke:#464646;stroke-opacity:1;fill:none" /><path d="m 203.41812,843.97585 v 6.04463" stroke="#323737" stroke-width="1.056" id="path2-6" style="stroke:#464646;stroke-opacity:1" /><path d="m 206.4181,846.99929 h -5.99998" stroke="#323737" stroke-width="1.056" id="path3-1" style="stroke:#464646;stroke-opacity:1" /><g clip-path="url(#clip0_3071_825)" id="g3" transform="translate(194.88955,910.26491)" style="stroke:#464646;stroke-opacity:1;fill:none"><path fill-rule="evenodd" clip-rule="evenodd" d="m 1.89466,0.697266 v 2.325584 h 1.10132 l -1.01843,13.95345 h -1.267101 v 2.3256 h 2.368421 v -1.3953 l 9.47373,-1.8605 v 0.9302 h 2.3684 v -2.3255 h -0.9237 l 1.8355,-8.13958 h 1.4448 v -2.32558 h -2.3685 v 0.84883 l -10.64602,-2.86046 v -1.476744 z" fill="#ffffff" stroke="#323737" stroke-width="1.2" id="path1-79" style="stroke:#464646;stroke-opacity:1;fill:none" /><path d="m 8.59717,6.8457 v 5.8915" stroke="#323737" stroke-width="1.01333" id="path2-2" style="stroke:#464646;stroke-opacity:1;fill:none" /><path d="m 11.5977,9.79102 h -6.00004" stroke="#323737" stroke-width="1.01333" id="path3-0" style="stroke:#464646;stroke-opacity:1;fill:none" /></g><g clip-path="url(#clip0_241_10857)" id="undo-2" transform="matrix(0.71300568,0,0,0.66260978,53.493786,938.36218)" style="fill:none;stroke:#464646;stroke-width:1.45488;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"><path d="m 1.07001,4.41003 h 9.41999 c 0.9234,-0.0066 1.8391,0.16957 2.6941,0.5184 0.8551,0.34883 1.6327,0.8634 2.288,1.51407 0.6553,0.65067 1.1754,1.42458 1.5303,2.27713 0.3549,0.85256 0.5376,1.76697 0.5376,2.69037 0.0067,0.9277 -0.1712,1.8474 -0.5231,2.7058 -0.3519,0.8583 -0.871,1.6382 -1.527,2.2941 -0.656,0.656 -1.4358,1.1751 -2.2941,1.527 -0.8584,0.352 -1.7781,0.5298 -2.7058,0.5231 h -9.41999" stroke="#f2f2f2" stroke-miterlimit="10" id="path580" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /><path d="m 4.75002,8.44998 -4.039998,-4.05 4.039998,-4.050004" stroke="#f2f2f2" stroke-miterlimit="10" id="path582" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /></g><g clip-path="url(#clip0_241_10857-3)" id="undo-5" transform="matrix(-0.71300568,0,0,0.66260978,90.50625,938.36218)" style="fill:none;stroke:#464646;stroke-width:1.45488;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"><path d="m 1.07001,4.41003 h 9.41999 c 0.9234,-0.0066 1.8391,0.16957 2.6941,0.5184 0.8551,0.34883 1.6327,0.8634 2.288,1.51407 0.6553,0.65067 1.1754,1.42458 1.5303,2.27713 0.3549,0.85256 0.5376,1.76697 0.5376,2.69037 0.0067,0.9277 -0.1712,1.8474 -0.5231,2.7058 -0.3519,0.8583 -0.871,1.6382 -1.527,2.2941 -0.656,0.656 -1.4358,1.1751 -2.2941,1.527 -0.8584,0.352 -1.7781,0.5298 -2.7058,0.5231 h -9.41999" stroke="#f2f2f2" stroke-miterlimit="10" id="path580-3" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /><path d="m 4.75002,8.44998 -4.039998,-4.05 4.039998,-4.050004" stroke="#f2f2f2" stroke-miterlimit="10" id="path582-5" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /></g><g fill="none" fill-rule="evenodd" id="g2" transform="matrix(0.55555556,0,0,0.55555556,149.33333,983.69552)" style="stroke:#4d4d4d;stroke-width:1.79999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"><path d="m 18,14 v 5 a 2,2 0 0 1 -2,2 h -11 a 2,2 0 0 1 -2,-2 v -11 c 0,-1.1 0.9,-2 2,-2 h 5 m 5,-3 h 6 v 6 m -11,5 10.2,-10.2" id="path1-5" style="stroke:#4d4d4d;stroke-width:1.79999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" /></g><path d="m 140.14439,990.80604 v 7.77856 c 0,0.42956 -0.35816,0.77777 -0.8,0.77777 h -6.39999 v -8.55633 z m -8.8,4.66666 v 3.88967 h -6.4 c -0.44182,0 -0.8,-0.34821 -0.8,-0.77777 v -3.1119 z m 0,-10.11033 v 8.55477 h -7.2 v -7.77699 c 0,-0.42956 0.35818,-0.77778 0.8,-0.77778 z m 7.99999,0 c 0.44185,0 0.80001,0.34822 0.80001,0.77778 v 3.11033 h -7.2 v -3.88811 z" fill="#f6f6f6" id="path1-6" style="fill:#4d4d4d;fill-opacity:1;stroke-width:1" /><g id="continue" inkscape:label="continue"><title id="title4">continue</title><path d="m 112,820.36218 c -2.20934,0 -4,1.79067 -4,4 0,2.20934 1.79066,4 4,4 2.20934,0 4,-1.79066 4,-4 0,-2.20933 -1.79066,-4 -4,-4 z m -0.66666,1.33334 h 1.33332 v 2 h 2 v 1.33333 h -2 v 2 h -1.33332 v -2 h -2 v -1.33333 h 2 z" fill="currentColor" id="path1-35" style="fill:#464646;fill-opacity:1;stroke-width:1" sodipodi:nodetypes="sssssccccccccccccc" /><path d="m 102,822.36218 c -1.105,0 -2,0.895 -2,2 0,1.105 0.895,2 2,2 1.105,0 2,-0.895 2,-2 0,-1.105 -0.895,-2 -2,-2 z" fill="inherit" id="path2-62" style="fill:#464646;fill-opacity:1" /><path d="m 105,823.36218 v 2 h 2 v -2 z" style="fill:#464646;fill-opacity:1" id="path1-1" /></g><path d="m 126,843.36218 c -1,0 -2,1 -2,2 v 2 h 3 l 2,1 -2,1 h -3 v 2 c 0,1 1,2 2,2 h 1 c 2,0 2.487,-0.974 3,-2 l 1,-2 9,-5 c 0,0 0,-1 -2,-1 l -7.031,3.906 -0.969,-1.906 c -0.494,-0.988 -1,-2 -3,-2 z m 0,1 h 2 l 1,2 h -4 c 0,0 0,-0.667 0,-1 0,-1.013 1,-1 1,-1 z m 8.094,4.719 -2,1 5.906,3.281 c 2,0 2,-1 2,-1 z m -9.094,1.281 h 4 l -1,2 h -2 c 0,0 -1,0 -1,-1 z" fill="inherit" id="split" style="fill:#464646;fill-opacity:1" inkscape:label="split" /><g id="extract" inkscape:label="extract"><path d="m 130.414,820.36218 v 1.414 l 1.414,1.414 -1.547,1.548 c 0.295,0.142 0.596,0.33 0.84,0.574 0.252,0.251 0.432,0.536 0.574,0.84 l 1.548,-1.547 1.414,1.414 h 1.414 v -5.657 z" fill="currentColor" id="path1-62" style="fill:#464646;fill-opacity:1" /><path d="m 129,825.42018 c -1.105,0 -2,0.896 -2,2 0,1.105 0.895,2 2,2 1.105,0 2,-0.895 2,-2 0,-1.104 -0.895,-2 -2,-2 z" fill="inherit" id="path2-61" style="fill:#464646;fill-opacity:1" /></g><path style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1;opacity:1;fill:#4d4d4d;fill-opacity:1" d="m 108,914.51367 -2.42383,2.42383 0.84766,0.84961 0.97656,-0.97656 v 3.95117 h -4 v 4.59961 h 1.19922 v -3.39844 h 3.40039 3.40039 v 3.39844 h 1.19922 v -4.59961 h -4 v -3.95117 l 0.97656,0.97656 0.84766,-0.84961 z" id="path10" /><g id="g8" transform="translate(-167.79768,-95.757327)"><rect style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.917647;paint-order:fill markers stroke" id="rect1" width="10" height="4" x="198.79768" y="985.70642" /><rect style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:fill markers stroke" id="rect2" width="14" height="6" x="196.79768" y="989.50983" /><rect style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" id="rect4" width="7.9999995" height="5" x="199.79768" y="993.53259" /></g></g></svg>
|
|
4
|
+
<svg width="216" height="216" id="svg2" version="1.1" inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)" sodipodi:docname="16.svg" inkscape:export-filename="/home/ybon/Code/js/Leaflet.Storage/src/img/16.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" xml:space="preserve" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><defs id="defs4"><marker style="overflow:visible" id="Arrow1" refX="0" refY="0" orient="auto-start-reverse" inkscape:stockid="Arrow1" markerWidth="4.0606604" markerHeight="6.7071066" viewBox="0 0 4.0606602 6.7071068" inkscape:isstock="true" inkscape:collect="always" preserveAspectRatio="xMidYMid"><path style="fill:none;stroke:context-stroke;stroke-width:1;stroke-linecap:butt" d="m 3,-3 -3,3 3,3" id="path5057" transform="rotate(180,0.125,0)" sodipodi:nodetypes="ccc" /></marker><mask id="mask0_181_11898" maskUnits="userSpaceOnUse" x="2" y="2" width="15" height="15"><path d="m 16.0401,2.3158 h -14.0351 v 14.0351 h 14.0351 z" fill="#ffffff" id="path2351" /></mask><clipPath id="clip0_3071_825"><rect width="18" height="20" fill="#ffffff" id="rect3" x="0" y="0" /></clipPath><clipPath id="clip0_241_10857"><rect width="18.049999" height="19.01" fill="#ffffff" id="rect586" x="0" y="0" /></clipPath><clipPath id="clip0_241_10857-3"><rect width="18.049999" height="19.01" fill="#ffffff" id="rect586-6" x="0" y="0" /></clipPath></defs><sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="2.3533422" inkscape:cx="68.625804" inkscape:cy="166.99654" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:window-width="1920" inkscape:window-height="1011" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" showguides="true" inkscape:guide-bbox="true" inkscape:snap-grids="true" inkscape:snap-to-guides="true" inkscape:showpageshadow="2" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1"><inkscape:grid type="xygrid" id="grid3004" empspacing="4" visible="true" enabled="true" snapvisiblegridlinesonly="true" originx="0" originy="0" spacingy="1" spacingx="1" units="px" /><inkscape:grid id="grid1" units="px" originx="0" originy="0" spacingx="24" spacingy="24" empcolor="#303ff3" empopacity="1" color="#3f3fff" opacity="0.1254902" empspacing="1" enabled="true" visible="true" /></sodipodi:namedview><metadata id="metadata7"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-812.36218)"><g id="help" transform="translate(-23.255701,-119.38651)"><circle transform="matrix(1.0714286,0,0,1.0714286,26.684272,934.10579)" id="path3014" style="fill:none;stroke:#4d4d4d;stroke-width:0.933333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" cx="8" cy="9" r="7" /><g id="text3784" style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none" transform="translate(27.255701,-100.61365)"><path inkscape:connector-curvature="0" id="path3789" style="font-weight:bold;font-size:12px;-inkscape-font-specification:'Sans Bold';fill:#4d4d4d" d="m 9,1046.0464 h -2.3698034 v -0.3223 c 0,-0.3596 0.072207,-0.6775 0.2166302,-0.9539 0.1444174,-0.2807 0.4485749,-0.636 0.9124728,-1.0658 l 0.4201314,-0.3816 c 0.249449,-0.228 0.4310681,-0.4429 0.5448577,-0.6446 0.1181576,-0.2019 0.1772384,-0.4036 0.177243,-0.6053 -4.6e-6,-0.3071 -0.1050376,-0.5462 -0.3150985,-0.7171 -0.2100697,-0.1756 -0.5032861,-0.2632 -0.87965,-0.2632 -0.3544889,0 -0.7374207,0.075 -1.1487968,0.2237 -0.4113804,0.1446 -0.840264,0.3618 -1.2866522,0.6513 v -2.0659 c 0.5295391,-0.184 1.0131273,-0.32 1.4507661,-0.4077 0.437634,-0.088 0.8599531,-0.1317 1.2669587,-0.1317 1.0678292,0 1.8818328,0.2194 2.442012,0.6579 0.560169,0.4341 0.840256,1.0702 0.840263,1.9078 -7e-6,0.4298 -0.08535,0.8159 -0.256017,1.158 -0.170685,0.3377 -0.461713,0.7017 -0.873085,1.092 l -0.4201313,0.375 c -0.297598,0.272 -0.4923463,0.4913 -0.5842451,0.658 -0.091909,0.1622 -0.1378603,0.342 -0.1378556,0.5394 v 0.296 m -2.3698034,0.9739 h 2.3698034 v 2.342 h -2.3698034 v -2.342" sodipodi:nodetypes="ccsccccccsccccsccccccccccccc" /></g></g><path inkscape:connector-curvature="0" style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 59.999998,843.86218 c -3,0 -5,1.5 -8,4.5 3,3 5,4.5 8,4.5 3.000003,0 5.000003,-1.5 8.000003,-4.5 -3,-3 -5,-4.5 -8.000003,-4.5 z m 0,2.5 c 1.104563,0 1.999993,0.8954 1.999993,2 0,1.1046 -0.89543,2 -1.999993,2 -1.104569,0 -2,-0.8954 -2,-2 0,-1.1046 0.895431,-2 2,-2 z" id="show" inkscape:label="eye-on" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/eye-on.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><g id="hide" style="fill:#b3b3b3" inkscape:label="" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/eye-off.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" transform="translate(75,-195.00002)"><path id="path2990" transform="translate(0,1034.3622)" d="m 9,4.5 c -2.9999998,-3.36e-5 -4.9999999,1.5 -8,4.5 3.0000001,2.999999 5.0000002,4.500033 8,4.5 3,-3.3e-5 5,-1.500001 8,-4.5 -3,-3 -5,-4.4999664 -8,-4.5 z m 0,2.5 c 1.104569,0 2,0.8954305 2,2 0,1.104569 -0.895431,2 -2,2 -1.1045695,0 -2,-0.895431 -2,-2 0,-1.1045695 0.8954305,-2 2,-2 z" style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" inkscape:connector-curvature="0" /><path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect3787" d="m 2,1047.8622 13,-10 1,1 -13,10 z" style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><path style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 78,819.36214 v 2 h 12 v -2 z m 0,3 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z" id="table-disabled" inkscape:connector-curvature="0" inkscape:label="" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/browse-data.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" d="m 13.51751,866.36211 c -2.466762,0 -4.48249,2.0158 -4.48249,4.4826 0,0.8297 0.233748,1.5964 0.63035,2.26462 l -3.66537,3.66532 1.587549,1.5876 3.66537,-3.66542 c 0.668139,0.3966 1.434831,0.6303 2.264591,0.6303 2.466762,0 4.48249,-2.0157 4.48249,-4.48242 0,-2.4668 -2.015728,-4.4826 -4.48249,-4.4826 z m 0,1.4943 c 1.659256,0 2.988326,1.329 2.988326,2.9883 0,1.6592 -1.32907,2.98832 -2.988326,2.98832 -1.659256,0 -2.988326,-1.32912 -2.988326,-2.98832 0,-1.6593 1.32907,-2.9883 2.988326,-2.9883 z m 0,1.4941 c -0.816354,0 -1.494163,0.6779 -1.494163,1.4942 0,0.8163 0.677809,1.4942 1.494163,1.4942 0.816354,0 1.494163,-0.6779 1.494163,-1.4942 0,-0.8163 -0.677809,-1.4942 -1.494163,-1.4942 z" id="zoom" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom_to.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" inkscape:connector-curvature="0" /><path id="zoom-disabled" d="m 37.51751,866.36216 c -2.466762,0 -4.482491,2.0157 -4.482491,4.4825 0,0.8298 0.233749,1.5964 0.630351,2.2645 l -3.66537,3.66554 1.587549,1.5875 3.665369,-3.66544 c 0.668139,0.39662 1.434831,0.63042 2.264592,0.63042 2.466762,0 4.48249,-2.01572 4.48249,-4.48252 0,-2.4668 -2.015728,-4.4825 -4.48249,-4.4825 z m 0,1.4942 c 1.659256,0 2.988327,1.329 2.988327,2.9883 0,1.6593 -1.329071,2.9883 -2.988327,2.9883 -1.659256,0 -2.988327,-1.329 -2.988327,-2.9883 0,-1.6593 1.329071,-2.9883 2.988327,-2.9883 z m 0,1.4941 c -0.816355,0 -1.494164,0.6779 -1.494164,1.4942 0,0.8163 0.677809,1.4942 1.494164,1.4942 0.816355,0 1.494163,-0.6779 1.494163,-1.4942 0,-0.8163 -0.677808,-1.4942 -1.494163,-1.4942 z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom_to-off.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><path style="fill:#464646;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 54,819.36218 v 2 h 12 v -2 z m 0,3 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z" id="table" inkscape:connector-curvature="0" inkscape:label="" inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/browse-data.png" inkscape:export-xdpi="89.996864" inkscape:export-ydpi="89.996864" /><g transform="translate(32,-54.000118)" style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none" id="text3784-6" /><path id="close-9" style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.188976;stroke-dasharray:none;stroke-opacity:1" d="m 32.353032,820.00818 -0.707032,0.70704 3.646485,3.64648 -3.646485,3.64648 0.707032,0.70704 3.646484,-3.64649 3.646484,3.64649 0.707032,-0.70704 -3.646485,-3.64648 3.646485,-3.64648 -0.707032,-0.70704 -3.646484,3.64649 z" /><path inkscape:connector-curvature="0" d="m 35.192241,853.36196 2e-6,-4.19993 -4.192255,1e-5 -3e-6,-1.62667 h 4.192263 v -4.17331 l 1.608812,0.007 0.0067,4.16664 h 4.192255 l -3.9e-5,1.62662 -4.19222,4e-5 -1.5e-5,4.19994 h -1.615475" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none" id="add" /><path style="fill:#4d4d4d;fill-opacity:1;stroke:none" d="m 63.71429,866.36218 -1.14285,1.14286 2.28571,2.28572 1.14285,-1.14286 z m -1.71429,1.71428 -6.285714,6.28574 2.285715,2.2857 6.285719,-6.28572 z m -6.285714,6.28574 -1.714286,3.99999 4.000001,-1.71429 z" id="edit" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" /><text xml:space="preserve" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" x="39.647079" y="918.79706" id="text4457-6"><tspan y="918.79706" x="39.647079" sodipodi:role="line" id="tspan4459-6" style="font-size:30.4762px;line-height:1.25;font-family:sans-serif"> </tspan></text><path style="fill:#b3b3b3;fill-opacity:1;stroke:none" d="m 63.71429,890.36216 -1.14285,1.1428 2.28571,2.2858 1.14285,-1.1429 z m -1.71429,1.7143 -6.285714,6.28572 2.285714,2.2857 6.28572,-6.2857 z m -6.285714,6.28572 -1.714286,4 4,-1.7143 z" id="path3684-2" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" /><g id="share" class="sprite" transform="matrix(0.66666667,0,0,0.66666667,-54.666667,282.78885)"><circle id="path4309" cx="100" cy="992.35999" r="11" fill="none" stroke="#464646" stroke-width="2" /><circle id="path4819" transform="rotate(-111.82)" cx="-963.89001" cy="-276.04001" r="2.5" fill="#464646" /><circle id="path4819-2" transform="rotate(-111.82)" cx="-956.38" cy="-281.16" r="2.5" fill="#464646" /><circle id="path4819-0" transform="rotate(-111.82)" cx="-954.65997" cy="-272.06" r="2.5" fill="#464646" /><path id="path4850" d="m 102.39,987.48 -8.0191,4.9199 8.1393,5.3224" fill="none" stroke="#464646" stroke-width="2" /></g><path id="search" class="sprite" d="m 44,950.23355 -4.291316,-4.29232 c 0.577593,-0.95281 0.916066,-2.06944 0.916066,-3.26554 0,-3.48904 -2.823586,-6.31439 -6.312375,-6.3154 -3.486521,0.001 -6.312375,2.82661 -6.312375,6.31489 0,3.48602 2.82661,6.31137 6.314391,6.31137 1.196735,0 2.311555,-0.3385 3.264283,-0.91606 l 4.293583,4.29358 z m -13.591561,-7.55862 c 0.0035,-2.15737 1.748425,-3.90227 3.905296,-3.9058 2.156165,0.005 3.901517,1.74843 3.905297,3.9058 -0.0043,2.15556 -1.749031,3.90152 -3.905297,3.90454 -2.157375,0 -3.902272,-1.74903 -3.905296,-3.90454 z" fill="#4d4d4d" stroke-width="0.666664" /><g id="info" transform="translate(0,2)"><circle style="fill:#464646;fill-opacity:1;stroke:none" id="path3762" cx="108" cy="846.36218" r="8" /><circle style="fill:#ffffff;fill-opacity:1;stroke:none" id="path3764" cx="108" cy="842.36218" r="1.5" /><path style="fill:#ffffff;fill-opacity:1;stroke:none" d="m 107,845.36218 h 2 v 6 h -2 z" id="rect4274" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" /></g><g id="g4717" transform="translate(-54.789185,-113.97702)"><path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path3862" d="m 140.0582,1028.2632 4.21686,4.2783 -4.14879,7.8737 -5.87101,-3.1269 -0.95195,-6.3455 z" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path3864" d="m 135.91434,1032.4783 1.7373,3.8107 3.35847,-1.5041 0.59077,-2.4329 -2.98985,-1.6008" style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /></g><path style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 131,865.36218 v 1 c -1.42857,0 -3.28571,0.59991 -4,2 v 1 h 10 v -1 c -0.71429,-1.40009 -2.57143,-2 -4,-2 v -1 z m -4,5 2,9 h 6 l 2,-9 z" id="delete" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" inkscape:label="" /><g id="g4797" transform="translate(-70.259925,-96.674381)"><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8" d="m 180.4719,999.63731 1.46774,-13.3359" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4349-2-2-3-3" d="m 175.49003,999.69763 -2.4614,-13.1887" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g id="g4621"><g id="g4400-8-39-2-3-1" transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)" style="stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-6" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-3" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="g4400-8-39-2-3" transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)" style="stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g></g><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8-5" d="m 137.59855,902.96376 1.46774,-13.3359" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4349-2-2-3-3-3" d="m 127.486,903.09649 -2.4614,-13.1887" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g id="g4621-5" transform="rotate(-45,40.175443,1003.6226)"><g id="g4400-8-39-2-3-1-6" transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)" style="stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-6-2" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-3-9" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="g4400-8-39-2-3-12" transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)" style="stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-7" d="m 176,948.36218 8,8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-0" d="m 176,956.36218 8,-8" style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g><g id="g4976" transform="translate(-86.464447,-110.33387)"><rect y="1028.9158" x="216.44643" height="4" width="4" id="rect4918" style="fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8-7-0-0" d="m 218.99033,1031.3352 -6.55062,-7.6872" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:1.73727;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:transform-center-x="-3.7509278" inkscape:transform-center-y="-0.64197712" /><path inkscape:connector-curvature="0" id="path4349-2-2-9-3-8-7-0" d="m 213.65253,1037.7441 5.63872,-7.9526" style="fill:none;fill-rule:evenodd;stroke:#808080;stroke-width:1.60523;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g style="fill:#4d4d4d;fill-opacity:1" transform="translate(40.872965,40.767561)" id="g4621-0-6"><g id="g4400-8-39-2-3-1-1-8" transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)" style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-6-5-5" d="m 176,948.36218 8,8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-3-31-4" d="m 176,956.36218 8,-8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="g4400-8-39-2-3-3-7" transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)" style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"><path inkscape:connector-curvature="0" id="path4353-1-6-1-3-3-9" d="m 176,948.36218 8,8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path inkscape:connector-curvature="0" id="path4355-9-7-1-7-8-7" d="m 176,956.36218 8,-8" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g></g><g id="undo" transform="matrix(0.51357238,-0.54309229,0.54309229,0.51357238,-590.02132,602.22569)"><path transform="rotate(154.40296)" sodipodi:open="true" d="m 231.87666,-980.51414 a 8,8 0 0 1 -8.12623,-4.12713 8,8 0 0 1 1.012,-9.05786 8,8 0 0 1 8.83671,-2.23192 8,8 0 0 1 5.1918,7.49093" sodipodi:end="0" sodipodi:start="1.4346606" sodipodi:ry="8" sodipodi:rx="8" sodipodi:cy="-988.44012" sodipodi:cx="230.79094" sodipodi:type="arc" id="path4240" style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:arc-type="arc" /><path inkscape:connector-curvature="0" id="path4242" d="m 216,980.36218 -1.59512,4.19351 3.53553,1.89404" style="fill:none;fill-rule:evenodd;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g id="undo-3" transform="matrix(-0.51357238,-0.54309229,-0.54309229,0.51357238,734.02132,602.22569)"><path transform="rotate(154.40296)" sodipodi:open="true" d="m 231.87666,-980.51414 a 8,8 0 0 1 -8.12623,-4.12713 8,8 0 0 1 1.012,-9.05786 8,8 0 0 1 8.83671,-2.23192 8,8 0 0 1 5.1918,7.49093" sodipodi:end="0" sodipodi:start="1.4346606" sodipodi:ry="8" sodipodi:rx="8" sodipodi:cy="-988.44012" sodipodi:cx="230.79094" sodipodi:type="arc" id="path4240-5" style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:arc-type="arc" /><path inkscape:connector-curvature="0" id="path4242-6" d="m 216,980.36218 -1.59512,4.19351 3.53553,1.89404" style="fill:none;fill-rule:evenodd;stroke:#464646;stroke-width:1.33785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><path style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 131,937.36218 v 1 c -1.42857,0 -3.28571,0.5999 -4,2 v 1 h 10 v -1 c -0.71429,-1.4001 -2.57143,-2 -4,-2 v -1 z m -4,5 2,9 h 6 l 2,-9 z" id="delete-disabled" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccc" inkscape:label="" /><g id="tilelayers" transform="matrix(2.5259351,0,0,2.5259351,47.787514,955.60094)"><path d="m 26.772659,3.4276506 h -4.243945 c -0.07035,0 -0.137814,0.027945 -0.187558,0.077687 -0.04974,0.049744 -0.07769,0.1172104 -0.07769,0.1875578 v 4.2439431 c 0,0.070353 0.02794,0.1378215 0.07769,0.1875631 0.04974,0.049742 0.11721,0.077682 0.187558,0.077682 h 4.243945 c 0.07035,0 0.137822,-0.02794 0.187563,-0.077682 0.04974,-0.049742 0.07768,-0.1172104 0.07768,-0.1875631 v -4.2439431 c 0,-0.070347 -0.02794,-0.1378135 -0.07768,-0.1875578 -0.04974,-0.049742 -0.11721,-0.077687 -0.187563,-0.077687 z m -0.265245,4.1590648 h -3.713453 v -3.546348 h 3.713453 z" fill="#464646" id="path2349" style="stroke-width:0.264583" /><g mask="url(#mask0_181_11898)" id="g2376" transform="matrix(0.26458333,0,0,0.26458333,20.637501,1.8520833)"><path d="m 16.0401,2.3158 h -14.0351 v 14.0351 h 14.0351 z" fill="#d5ecbe" id="path2354" /><path d="m 2.37597,3.42857 c 0.26774,-0.31238 0.61516,-0.54633 1.00529,-0.67696 0.39014,-0.13063 0.80838,-0.15306 1.21025,-0.06489 0.32391,0.15649 0.58536,0.41794 0.74185,0.74185 0.37093,0.72181 0,1.26316 0,2.21554 -0.0802,1.72431 1.00251,2.08522 0.73183,3.68923 -0.0802,0.57142 -0.34085,1.44356 -0.73183,1.47366 -0.62155,0.0602 -0.94235,-2.00499 -2.21554,-2.21552 -0.39097,-0.06015 -0.47117,0.11028 -0.74185,0 -1.05263,-0.401 -1.523811,-3.65915 0,-5.16291 z" fill="#e9daab" id="path2356" /><path d="m 7.1779,16.3509 c -1.75438,-1.7243 -2.16541,-1.7544 -2.16541,-2.2156 -0.1604,-1.0025 1.74436,-1.2932 2.21554,-2.9573 0.33083,-1.173 -0.47118,-1.56396 -0.74186,-3.68927 -0.1604,-1.25313 -0.401,-3.21805 0.74186,-4.43108 1.14286,-1.21303 3.13787,-1.17293 4.43107,-0.74185 1.0647,0.38986 1.9867,1.09245 2.6451,2.01558 0.6584,0.92314 1.0223,2.02371 1.0441,3.15735 0,1.24311 -0.6817,1.65413 -0.7318,3.68927 0.0605,0.7372 0.0605,1.4782 0,2.2155 -0.1546,1.1225 -0.6763,2.1624 -1.4837,2.9574 -1.5038,1.3433 -3.90978,1.6942 -5.22307,0.7418 -0.15037,-0.1102 -0.07017,-0.0501 -0.73183,-0.7418 z" fill="#bcd8af" id="path2358" /><path d="m 14.1956,9.33332 c -0.4303,0.37544 -0.6966,0.90438 -0.7419,1.47368 0,0.1203 0,1.213 0.7419,1.4837 0.2937,0.0714 0.6033,0.036 0.8733,-0.0999 0.27,-0.1359 0.4828,-0.3635 0.6004,-0.6419 0.066,-0.2429 0.066,-0.499 0,-0.7419 -0.1604,-1.38345 0.3007,-2.00501 0,-2.21553 -0.3008,-0.21053 -1.0928,0.35087 -1.4737,0.74185 z" fill="#ebe9d6" id="path2360" /><path d="m 14.1955,15.2381 c 0.2874,0.0123 0.5733,-0.0483 0.831,-0.1763 0.2577,-0.1279 0.4788,-0.3191 0.6427,-0.5555 0.2005,-0.3308 0.4411,-1.0526 0,-1.4837 -0.2062,-0.1739 -0.4672,-0.2693 -0.7369,-0.2693 -0.2696,0 -0.5306,0.0954 -0.7368,0.2693 0,0 -1.4837,0.7418 -1.4837,1.4837 0,0.7418 1.4837,0.7318 1.4837,0.7318 z" fill="#f3ecdd" id="path2362" /><path d="m 7.90976,1.57394 c -1.89474,1.32331 -2.26566,2.29574 -2.21554,2.9574 0.0802,1.0025 1.09273,1.37343 1.48371,3.00752 0.19537,0.72559 0.19537,1.48994 0,2.21553 -0.58145,1.85461 -2.51629,1.88471 -3.69925,3.68921 -0.6679,1.11 -0.92678,2.4186 -0.73183,3.6993" stroke="#dfa170" stroke-width="0.75" stroke-miterlimit="10" id="path2364" style="fill:none" /><path d="m 5.33325,1.94485 c 1.5732,1.61744 2.60339,3.68483 2.94737,5.91479 0.13097,0.73271 0.13097,1.48283 0,2.21556 -0.33083,1.7042 -1.30326,2.3559 -2.21554,4.4311 -0.31515,0.713 -0.56025,1.455 -0.73183,2.2155" stroke="#e0859b" stroke-width="0.25" stroke-miterlimit="10" id="path2366" style="fill:none" /><path d="m 10.4963,14.5063 c -1.84462,-1.0025 -1.7143,-5.53387 0,-6.64665 0.5915,-0.38096 1.1328,-0.21053 1.4837,-0.74186 0.5213,-0.802 -0.411,-1.69423 0,-2.95739 0.2306,-0.72181 0.8922,-1.52381 1.4737,-1.47369 1.0025,0.0802 2.1253,2.5564 1.4737,4.43108 -0.5314,1.56391 -1.9148,1.51379 -2.2156,3.00751 -0.3408,1.6441 1.2732,2.6266 0.7419,3.6892 -0.3395,0.4362 -0.8182,0.7428 -1.3564,0.8687 -0.5382,0.1259 -1.1033,0.0634 -1.601,-0.1769 z" fill="#ade3ea" id="path2368" /><path d="m 7.90971,2.31578 c -0.39098,0.91228 0.21052,2.14537 0.74185,2.21554 0.53133,0.07018 0.66166,-0.65163 1.48374,-0.74185 0.401,0 0.5213,0.1203 0.7318,0 0.5013,-0.27068 0.6115,-1.62406 0,-2.21554 -0.2397,-0.1568 -0.5092,-0.26229 -0.7916,-0.30984 -0.28244,-0.04755 -0.57165,-0.03612 -0.84944,0.03356 -0.2778,0.06969 -0.53816,0.19612 -0.76471,0.37134 -0.22654,0.17522 -0.41436,0.39544 -0.55164,0.64679 z" fill="#748ec2" id="path2370" /><path d="m 10.1354,5.27317 c -0.31082,0.30075 -0.88225,0.85213 -0.7419,1.47369 0.09023,0.401 0.45113,0.78195 0.7419,0.74185 0.2907,-0.0401 0.2907,-0.57143 0.7318,-0.74185 0.4411,-0.17043 0.5113,0.11027 0.7418,0 0.5314,-0.24061 0.6116,-1.92482 0,-2.21554 -0.6115,-0.29073 -1.2431,0.4812 -1.4736,0.74185 z" fill="#f3ecdd" id="path2372" /><path d="m 3.47861,3.78948 c 0.27068,-0.1604 1.31328,0.54135 1.48371,1.48371 0.17043,0.94236 -0.82205,2.31579 -1.48371,2.21554 -0.28201,-0.11246 -0.51262,-0.32501 -0.64766,-0.59693 -0.13503,-0.27192 -0.165,-0.58411 -0.08417,-0.87676 0.27068,-0.55137 1.45364,-0.4411 1.47369,-0.73183 0.02005,-0.29072 -0.51128,-0.27067 -0.74186,-0.75188 -0.1203,-0.27067 -0.14035,-0.65162 0,-0.74185 z" fill="#cfd7c8" id="path2374" /></g><path d="m 25.146689,1.8520833 h -4.243941 c -0.07035,0 -0.137815,0.027946 -0.187558,0.077689 -0.04974,0.049744 -0.07769,0.1172099 -0.07769,0.1875586 v 4.2439405 c 0,0.070353 0.02795,0.1378215 0.07769,0.1875632 0.04974,0.049742 0.11721,0.077682 0.187558,0.077682 h 4.243941 c 0.07035,0 0.137821,-0.02794 0.187563,-0.077682 0.04974,-0.049742 0.07768,-0.1172105 0.07768,-0.1875632 v -4.2439405 c 0,-0.070349 -0.02794,-0.1378151 -0.07768,-0.1875586 -0.04974,-0.049743 -0.11721,-0.077689 -0.187563,-0.077689 z m -0.265245,4.1590648 h -3.713451 v -3.5463453 h 3.713451 z" fill="#464646" id="path2378" style="stroke-width:0.264583" /></g><path id="arrow-down" d="m 156,875.36218 6,-6 h -12 z" fill="#f2f2f2" fill-rule="evenodd" style="fill:#4d4d4d;fill-opacity:1" /><path id="arrow-right" d="m 159,896.36218 -6,-6 v 12 z" fill="#f2f2f2" fill-rule="evenodd" style="fill:#4d4d4d;fill-opacity:1" /><path d="m 14.181818,962.11797 v 2.60785 h 2.607845 z m 2.909091,4.06239 h -2.909091 c -0.803323,0 -1.454545,-0.65122 -1.454545,-1.45454 v -2.90909 h -5.8181821 v 13.0909 h 10.1818181 z m -10.1818181,-5.81818 h 7.5739741 l 4.06239,4.06239 v 10.48306 c 0,0.80333 -0.651223,1.45455 -1.454546,1.45455 h -10.1818181 c -0.8033233,0 -1.4545455,-0.65122 -1.4545455,-1.45455 v -13.0909 c 0,-0.80333 0.6512222,-1.45455 1.4545455,-1.45455 z m 4.3636361,9.88057 v -3.33512 h 1.454546 v 3.33512 l 0.940285,-0.94029 1.02852,1.02853 -2.696078,2.69607 -2.6960778,-2.69607 1.0285188,-1.02853 z" fill-rule="evenodd" id="downloadfile" style="fill:#464646;fill-opacity:1;stroke-width:0.727273" /><g id="downloadbackup"><path style="fill:#464646;fill-opacity:1;stroke-width:0.727273" d="m 42.545455,974.90763 c 0,0.80333 -0.651223,1.45455 -1.454546,1.45455 h -10.181818 c -0.803323,0 -1.454546,-0.65122 -1.454546,-1.45455 2.557093,0 9.805435,0 13.09091,0 z" id="path8303-6" /><path style="fill:none;fill-rule:evenodd;stroke:#464646;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1)" d="m 36,963.87832 v 8.3163" id="path16669" sodipodi:nodetypes="cc" /></g><path id="copy" style="fill:#4d4d4d;stroke-width:1;paint-order:fill markers stroke" d="m 106.17392,986.36218 v 3.65217 h 4.17391 v 4.17392 h 3.65217 v -7.82609 z m -4.17392,4.17391 v 7.82609 h 7.82609 v -7.82609 z" /><path style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" d="m 134,964.36218 -4,4 4.28879,3.97691" id="path1" sodipodi:nodetypes="ccc" /><path style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" d="m 154.28879,964.06929 4,4 -4.28879,3.97691" id="path1-36" sodipodi:nodetypes="ccc" /><path d="m 113.37897,943.55658 0.9072,0.5491 c 0.1786,0.10817 0.2366,0.34196 0.1294,0.52223 -0.0319,0.0535 -0.0764,0.0983 -0.1294,0.13055 l -7.00717,4.24121 -7.00708,-4.24121 c -0.17869,-0.10817 -0.23664,-0.34196 -0.12942,-0.52222 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.13056 l 0.90714,-0.5491 6.09994,3.69219 z m 0,3.57799 0.9072,0.5491 c 0.1786,0.1081 0.2366,0.3419 0.1294,0.5222 -0.0319,0.0535 -0.0764,0.0983 -0.1294,0.1306 l -6.61891,4.0061 c -0.239,0.1447 -0.53753,0.1447 -0.77652,0 l -6.61882,-4.0061 c -0.17869,-0.1082 -0.23664,-0.342 -0.12942,-0.5223 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.1305 l 0.90714,-0.5491 6.09994,3.6921 z m -5.71171,-10.57501 6.61891,4.00621 c 0.1786,0.10815 0.2366,0.34196 0.1294,0.52222 -0.0319,0.0536 -0.0764,0.0984 -0.1294,0.13056 l -7.00717,4.24119 -7.00708,-4.24119 c -0.17869,-0.10815 -0.23664,-0.34196 -0.12942,-0.52222 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.13056 l 6.61882,-4.00621 c 0.23899,-0.14465 0.53752,-0.14465 0.77652,0 z" fill="#4d4d4d" id="path437" style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.178;stroke-dasharray:none;stroke-opacity:1" /><path fill-rule="evenodd" clip-rule="evenodd" d="m 87.166638,966.62162 -3.166579,-2.99638 -3.166613,2.99638 -0.833375,-0.78858 3.4333,-3.24873 c 0.312979,-0.29613 0.82041,-0.29613 1.133389,0 l 3.43324,3.24873 z m -6.333275,3.48122 3.166626,2.99639 3.166649,-2.99639 0.833362,0.78859 -3.433322,3.24872 c -0.312968,0.29608 -0.820411,0.29608 -1.133378,0 l -3.4333,-3.24872 z" fill="#efefef" id="path1-675" style="fill:#464646;fill-opacity:1;stroke-width:0.999996" /><path style="fill:#464646;fill-opacity:1;stroke-width:0.999996" d="m 63.166637,974.36218 -3.166626,-2.99639 -3.166649,2.99639 -0.833362,-0.78859 3.433322,-3.24872 c 0.312968,-0.29608 0.820411,-0.29608 1.133378,0 l 3.4333,3.24872 z" id="path5" /><path style="fill:#464646;fill-opacity:1;stroke-width:0.999996" d="m 56.000071,963.15076 3.43324,3.24873 c 0.312979,0.29613 0.82041,0.29613 1.133389,0 l 3.4333,-3.24873 -0.833375,-0.78858 -3.166613,2.99638 -3.166579,-2.99638 z" id="path1-675-2" /><path id="linestring" style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1" d="m 175,961.05775 v 2 h 1.88282 l 6.11718,3.05859 v 0.23438 l -6.70703,6.70703 h -1.29297 v 2 h 2 v -1.29297 l 6.70703,-6.70703 h 1.29297 v -2 h -1.88281 l -6.11719,-3.05859 v -0.94141 z" /><path id="polygon" style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" d="m 174,912.36218 v 2 h 0.92774 l -0.85547,12 h -1.07227 v 2 h 2 v -1.19922 l 8,-1.60156 v 0.80078 h 2 v -2 h -0.77734 l 1.55469,-7 h 1.22265 v -2 h -2 v 0.72656 l -9,-2.45312 v -1.27344 z" /><g style="fill:none" id="g1" transform="matrix(1.2199965,0,0,1.2199965,75.480004,864.64218)"><path d="m 2.5,4 c 0.82843,0 1.5,-0.67157 1.5,-1.5 0,-0.82843 -0.67157,-1.5 -1.5,-1.5 -0.82843,0 -1.5,0.67157 -1.5,1.5 0,0.82843 0.67157,1.5 1.5,1.5 z" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path1-7" /><path d="m 4,5.3501 h -3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path2" /><path d="m 11.5,4 c 0.8284,0 1.5,-0.67157 1.5,-1.5 0,-0.82843 -0.6716,-1.5 -1.5,-1.5 -0.8284,0 -1.5,0.67157 -1.5,1.5 0,0.82843 0.6716,1.5 1.5,1.5 z" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path3" /><path d="m 10,5.3501 h 3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path4" /><path d="m 7,7.75 c 0.82843,0 1.5,-0.67157 1.5,-1.5 0,-0.82843 -0.67157,-1.5 -1.5,-1.5 -0.82843,0 -1.5,0.67157 -1.5,1.5 0,0.82843 0.67157,1.5 1.5,1.5 z" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path5-6" /><path d="m 8.5,9.3501 h -3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path6" /><path d="m 5.5,9.3501 h 3 v 2.39" stroke="#323737" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round" id="path7" /></g><path style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:6.97518;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" inkscape:transform-center-x="-0.0010932573" inkscape:transform-center-y="-0.7377641" d="m 7.6709247,999.35911 1.3886278,-5.25501 -4.0584591,-3.24679 h 5.1830926 l 1.819345,-5.49493 1.81469,5.49392 h 5.182872 l -4.06154,3.24965 1.383849,5.25641 -4.324867,-3.01227 z" id="star" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" class="sprite" /><path style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" inkscape:transform-center-x="-0.0010925804" inkscape:transform-center-y="-0.73776941" d="m 31.670925,999.3591 1.388628,-5.25504 -4.05846,-3.24679 h 5.183093 l 1.819345,-5.49493 1.814694,5.49392 h 5.182868 l -4.06154,3.24964 1.383849,5.25649 -4.324874,-3.01234 z" id="starred" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" class="sprite" /><path id="import" class="sprite" d="m 156,912.44465 c -4.37271,0 -7.91753,3.54481 -7.91753,7.91753 0,4.37272 3.54482,7.91752 7.91753,7.91752 4.37272,0 7.91752,-3.5448 7.91752,-7.91752 0,-4.37272 -3.5448,-7.91753 -7.91752,-7.91753 z m 0,3.29893 4.6186,4.6186 h -3.29893 v 3.95876 h -2.63909 v -3.95876 h -3.29893 z" fill="#f2f2f2" stroke="#999999" stroke-width="0.164949" style="fill:#4d4d4d;fill-opacity:1" /><path id="marker" d="m 180,840.36218 c -2.625,0 -5.25,1.70216 -6,5.1064 0,2.04256 1.5,6.12768 6,10.8936 4.5,-4.76592 6,-8.85104 6,-10.8936 -0.75,-3.40424 -3.375,-5.1064 -6,-5.1064 z m 0,2.38304 c 1.65686,0 3,1.21928 3,2.72336 0,1.50408 -1.34314,2.72344 -3,2.72344 -1.65684,0 -3,-1.21936 -3,-2.72344 0,-1.50408 1.34316,-2.72336 3,-2.72336 z" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0" /><path d="m 203.41818,838.96218 c -2.97727,0 -5.96591,1.94619 -6.81818,5.85003 0,2.33543 1.70455,7.01777 6.81818,12.46707 5.11362,-5.4608 6.81822,-10.13164 6.81822,-12.46707 -0.8523,-3.89239 -3.8409,-5.85003 -6.81822,-5.85003 z" fill="#ffffff" stroke="#323737" stroke-width="1.2" id="path1-2" style="fill:none;stroke:#464646;stroke-opacity:1" /><path d="m 203.41812,843.97585 v 6.04463" stroke="#323737" stroke-width="1.056" id="path2-6" style="stroke:#464646;stroke-opacity:1" /><path d="m 206.4181,846.99929 h -5.99998" stroke="#323737" stroke-width="1.056" id="path3-1" style="stroke:#464646;stroke-opacity:1" /><g clip-path="url(#clip0_3071_825)" id="g3" transform="translate(194.88955,910.26491)" style="fill:none;stroke:#464646;stroke-opacity:1"><path fill-rule="evenodd" clip-rule="evenodd" d="m 1.89466,0.697266 v 2.325584 h 1.10132 l -1.01843,13.95345 h -1.267101 v 2.3256 h 2.368421 v -1.3953 l 9.47373,-1.8605 v 0.9302 h 2.3684 v -2.3255 h -0.9237 l 1.8355,-8.13958 h 1.4448 v -2.32558 h -2.3685 v 0.84883 l -10.64602,-2.86046 v -1.476744 z" fill="#ffffff" stroke="#323737" stroke-width="1.2" id="path1-79" style="fill:none;stroke:#464646;stroke-opacity:1" /><path d="m 8.59717,6.8457 v 5.8915" stroke="#323737" stroke-width="1.01333" id="path2-2" style="fill:none;stroke:#464646;stroke-opacity:1" /><path d="m 11.5977,9.79102 h -6.00004" stroke="#323737" stroke-width="1.01333" id="path3-0" style="fill:none;stroke:#464646;stroke-opacity:1" /></g><g clip-path="url(#clip0_241_10857)" id="undo-2" transform="matrix(0.71300568,0,0,0.66260978,53.493786,938.36218)" style="fill:none;stroke:#464646;stroke-width:1.45488;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"><path d="m 1.07001,4.41003 h 9.41999 c 0.9234,-0.0066 1.8391,0.16957 2.6941,0.5184 0.8551,0.34883 1.6327,0.8634 2.288,1.51407 0.6553,0.65067 1.1754,1.42458 1.5303,2.27713 0.3549,0.85256 0.5376,1.76697 0.5376,2.69037 0.0067,0.9277 -0.1712,1.8474 -0.5231,2.7058 -0.3519,0.8583 -0.871,1.6382 -1.527,2.2941 -0.656,0.656 -1.4358,1.1751 -2.2941,1.527 -0.8584,0.352 -1.7781,0.5298 -2.7058,0.5231 h -9.41999" stroke="#f2f2f2" stroke-miterlimit="10" id="path580" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /><path d="m 4.75002,8.44998 -4.039998,-4.05 4.039998,-4.050004" stroke="#f2f2f2" stroke-miterlimit="10" id="path582" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /></g><g clip-path="url(#clip0_241_10857-3)" id="undo-5" transform="matrix(-0.71300568,0,0,0.66260978,90.50625,938.36218)" style="fill:none;stroke:#464646;stroke-width:1.45488;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"><path d="m 1.07001,4.41003 h 9.41999 c 0.9234,-0.0066 1.8391,0.16957 2.6941,0.5184 0.8551,0.34883 1.6327,0.8634 2.288,1.51407 0.6553,0.65067 1.1754,1.42458 1.5303,2.27713 0.3549,0.85256 0.5376,1.76697 0.5376,2.69037 0.0067,0.9277 -0.1712,1.8474 -0.5231,2.7058 -0.3519,0.8583 -0.871,1.6382 -1.527,2.2941 -0.656,0.656 -1.4358,1.1751 -2.2941,1.527 -0.8584,0.352 -1.7781,0.5298 -2.7058,0.5231 h -9.41999" stroke="#f2f2f2" stroke-miterlimit="10" id="path580-3" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /><path d="m 4.75002,8.44998 -4.039998,-4.05 4.039998,-4.050004" stroke="#f2f2f2" stroke-miterlimit="10" id="path582-5" style="fill:none;stroke:#464646;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" /></g><g fill="none" fill-rule="evenodd" id="g2" transform="matrix(0.55555556,0,0,0.55555556,149.33333,983.69552)" style="stroke:#4d4d4d;stroke-width:1.79999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"><path d="m 18,14 v 5 a 2,2 0 0 1 -2,2 h -11 a 2,2 0 0 1 -2,-2 v -11 c 0,-1.1 0.9,-2 2,-2 h 5 m 5,-3 h 6 v 6 m -11,5 10.2,-10.2" id="path1-5" style="stroke:#4d4d4d;stroke-width:1.79999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" /></g><path d="m 140.14439,990.80604 v 7.77856 c 0,0.42956 -0.35816,0.77777 -0.8,0.77777 h -6.39999 v -8.55633 z m -8.8,4.66666 v 3.88967 h -6.4 c -0.44182,0 -0.8,-0.34821 -0.8,-0.77777 v -3.1119 z m 0,-10.11033 v 8.55477 h -7.2 v -7.77699 c 0,-0.42956 0.35818,-0.77778 0.8,-0.77778 z m 7.99999,0 c 0.44185,0 0.80001,0.34822 0.80001,0.77778 v 3.11033 h -7.2 v -3.88811 z" fill="#f6f6f6" id="path1-6" style="fill:#4d4d4d;fill-opacity:1;stroke-width:1" /><g id="continue" inkscape:label="continue"><title id="title4">continue</title><path d="m 112,820.36218 c -2.20934,0 -4,1.79067 -4,4 0,2.20934 1.79066,4 4,4 2.20934,0 4,-1.79066 4,-4 0,-2.20933 -1.79066,-4 -4,-4 z m -0.66666,1.33334 h 1.33332 v 2 h 2 v 1.33333 h -2 v 2 h -1.33332 v -2 h -2 v -1.33333 h 2 z" fill="currentColor" id="path1-35" style="fill:#464646;fill-opacity:1;stroke-width:1" sodipodi:nodetypes="sssssccccccccccccc" /><path d="m 102,822.36218 c -1.105,0 -2,0.895 -2,2 0,1.105 0.895,2 2,2 1.105,0 2,-0.895 2,-2 0,-1.105 -0.895,-2 -2,-2 z" fill="inherit" id="path2-62" style="fill:#464646;fill-opacity:1" /><path d="m 105,823.36218 v 2 h 2 v -2 z" style="fill:#464646;fill-opacity:1" id="path1-1" /></g><path d="m 126,843.36218 c -1,0 -2,1 -2,2 v 2 h 3 l 2,1 -2,1 h -3 v 2 c 0,1 1,2 2,2 h 1 c 2,0 2.487,-0.974 3,-2 l 1,-2 9,-5 c 0,0 0,-1 -2,-1 l -7.031,3.906 -0.969,-1.906 c -0.494,-0.988 -1,-2 -3,-2 z m 0,1 h 2 l 1,2 h -4 c 0,0 0,-0.667 0,-1 0,-1.013 1,-1 1,-1 z m 8.094,4.719 -2,1 5.906,3.281 c 2,0 2,-1 2,-1 z m -9.094,1.281 h 4 l -1,2 h -2 c 0,0 -1,0 -1,-1 z" fill="inherit" id="split" style="fill:#464646;fill-opacity:1" inkscape:label="split" /><g id="extract" inkscape:label="extract"><path d="m 130.414,820.36218 v 1.414 l 1.414,1.414 -1.547,1.548 c 0.295,0.142 0.596,0.33 0.84,0.574 0.252,0.251 0.432,0.536 0.574,0.84 l 1.548,-1.547 1.414,1.414 h 1.414 v -5.657 z" fill="currentColor" id="path1-62" style="fill:#464646;fill-opacity:1" /><path d="m 129,825.42018 c -1.105,0 -2,0.896 -2,2 0,1.105 0.895,2 2,2 1.105,0 2,-0.895 2,-2 0,-1.104 -0.895,-2 -2,-2 z" fill="inherit" id="path2-61" style="fill:#464646;fill-opacity:1" /></g><path style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 108,914.51367 -2.42383,2.42383 0.84766,0.84961 0.97656,-0.97656 v 3.95117 h -4 v 4.59961 h 1.19922 v -3.39844 h 3.40039 3.40039 v 3.39844 h 1.19922 v -4.59961 h -4 v -3.95117 l 0.97656,0.97656 0.84766,-0.84961 z" id="path10" /><g id="g8" transform="translate(-167.79768,-95.757327)"><rect style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.917647;paint-order:fill markers stroke" id="rect1" width="10" height="4" x="198.79768" y="985.70642" /><rect style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:fill markers stroke" id="rect2" width="14" height="6" x="196.79768" y="989.50983" /><rect style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" id="rect4" width="7.9999995" height="5" x="199.79768" y="993.53259" /></g><path id="path8-5" style="baseline-shift:baseline;display:inline;overflow:visible;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1;enable-background:accumulate;stop-color:#000000" d="m 172,984.36218 v 10.29883 h 3.47266 v 4.13469 h 1.29882 v -4.13469 h 7.85547 v 4.13469 h 1.30078 v -4.13469 h 3.37305 v -10.29883 z m 1.30078,1.29883 h 2.75195 l -2.75195,2.75195 z m 4.5918,0 h 3.27929 l -7.75,7.70117 h -0.12109 v -3.10937 z m 5.12304,0 h 2.98633 l -7.70117,7.70117 h -3.0332 z m 4.82227,0 h 0.16211 v 3.0625 l -4.63867,4.63867 h -3.22461 z m 0.16211,4.90039 v 2.80078 h -2.80078 z" /><g id="g26" transform="translate(0.41811,0.34202)"><g id="path8-0" style="opacity:1"><path id="path22" style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#4d4d4d;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 199.7168,992.54968 a 2.2857141,2.2857141 0 0 0 -2.28516,2.28516 2.2857141,2.2857141 0 0 0 2.28516,2.28515 2.2857141,2.2857141 0 0 0 2.28711,-2.28515 2.2857141,2.2857141 0 0 0 -0.0332,-0.38282 c 0.15997,-0.0946 0.58341,-0.25 1.0293,-0.25 0.52004,0 1.00933,0.21172 1.08594,0.29102 a 2.2857141,2.2857141 0 0 0 -0.0332,0.38672 2.2857141,2.2857141 0 0 0 2.28711,2.28711 2.2857141,2.2857141 0 0 0 2.28516,-2.28711 2.2857141,2.2857141 0 0 0 -2.28516,-2.28516 2.2857141,2.2857141 0 0 0 -1.8457,0.9375 c -0.42453,-0.27009 -0.9684,-0.33008 -1.49414,-0.33008 -0.50054,0 -1.01692,0.0527 -1.43164,0.29102 a 2.2857141,2.2857141 0 0 0 -1.85156,-0.94336 z" /><path style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#4d4d4d;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 199.7168,992.42383 c -1.32992,0 -2.41016,1.08023 -2.41016,2.41015 0,1.32992 1.08024,2.41211 2.41016,2.41211 1.32992,0 2.41211,-1.08219 2.41211,-2.41211 0,-1.32992 -1.08219,-2.41015 -2.41211,-2.41015 z m 0,0.25 c 1.19481,0 2.16211,0.96534 2.16211,2.16015 0,1.19481 -0.9673,2.16211 -2.16211,2.16211 -1.19481,0 -2.16016,-0.9673 -2.16016,-2.16211 0,-1.19481 0.96535,-2.16015 2.16016,-2.16015 z" id="path23" /></g><g id="path8-6" style="opacity:1"><path style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#4d4d4d;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 206.33984,992.46875 c -1.32992,0 -2.41211,1.08219 -2.41211,2.41211 0,1.32992 1.08219,2.41016 2.41211,2.41016 1.32992,0 2.41016,-1.08024 2.41016,-2.41016 0,-1.32992 -1.08024,-2.41211 -2.41016,-2.41211 z m 0,0.25 c 1.19481,0 2.16016,0.9673 2.16016,2.16211 0,1.19481 -0.96535,2.16016 -2.16016,2.16016 -1.19481,0 -2.16211,-0.96535 -2.16211,-2.16016 0,-1.19481 0.9673,-2.16211 2.16211,-2.16211 z" id="path26" /></g><g id="path9-9" style="opacity:1"><path style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#4d4d4d;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 201.50491,994.20537 c 0.49063,-0.67139 2.49949,-0.67139 2.99012,0" id="path18" /></g><g id="path11-3" style="opacity:1"><path style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#4d4d4d;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 195,991.07646 h 16" id="path16" /><path id="path17" style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#4d4d4d;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 199.57227,986.02038 c -1.15689,0.014 -2.2777,0.76142 -2.28711,2.28516 v 2.27148 h -2.28516 v 1 h 16 v -1 h -2.28516 v -2.27148 c 0,-1.1551 -1.15064,-2.30379 -2.28711,-2.28516 z" /></g></g><path style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 6,841.36218 h 12.000345 v 2 h -1.000345 l -4,6 v 6 l -2,-1 v -5 l -4,-6 h -1 z" id="path8" sodipodi:nodetypes="ccccccccccc" /><path fill="#000000" fill-rule="nonzero" d="m 80.024953,1020.3612 h -1.066407 v -6.8262 h -0.05273 l -1.851562,1.336 v -1.1016 l 1.904297,-1.4062 h 1.066406 z m 0.65039,-0.7266 c 0,-0.5039 0.375,-0.8554 0.837891,-0.8554 0.486328,0 0.855469,0.3515 0.855469,0.8554 0,0.4805 -0.369141,0.8321 -0.855469,0.8321 -0.462891,0 -0.837891,-0.3516 -0.837891,-0.8321 z m 2.753907,-3.4101 v 0.2812 c 0,1.916 0.691406,3.0762 1.787109,3.0762 1.101563,0 1.787109,-1.1602 1.787109,-3.0762 v -0.2812 c 0,-1.9102 -0.685546,-3.082 -1.787109,-3.082 -1.095703,0 -1.787109,1.1718 -1.787109,3.082 z m -1.072266,0.293 v -0.2989 c 0,-2.4199 1.048828,-4.0195 2.871094,-4.0195 1.810547,0 2.847656,1.5879 2.847656,4.0195 v 0.2989 c 0,2.4199 -1.042969,4.0078 -2.859375,4.0078 -1.810547,0 -2.859375,-1.5821 -2.859375,-4.0078 z" id="path1-70" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /><path fill="#000000" fill-rule="nonzero" d="m 112.05425,1021.3622 v -10 h -1 v -1 h 2 v 1 10 1 h -2 v -1 z m -11,0 v -10 -1 h 2 v 1 h -1 v 10 h 1 v 1 h -2 z m 6.90234,-1 h -1.0664 v -6.8262 h -0.0527 l -1.85156,1.336 v -1.1016 l 1.9043,-1.4062 h 1.0664 z" id="path1-360" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /><path d="m 36.705888,1011.7739 v 10.5883 h -1.411783 v -10.5883 h -4.235306 v -1.4117 h 9.882402 v 1.4117 z" fill="#f6f6f6" id="path1-12" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /><path d="m 6,1010.9337 v 1.7142 h 1.142858 v -0.5714 h 1.142852 v 2.8572 h -0.857142 v 1.1428 h 2.85715 v -1.1428 h -0.857142 v -2.8572 h 1.142852 v 0.5714 h 1.142852 v -1.7142 z m 11.428567,0.5714 h -4.000002 v 1.1428 h 3.42857 v 8 h -9.142844 v -2.8571 h -1.142862 v 3.4286 c 0,0.3155 0.255836,0.5714 0.571429,0.5714 h 10.285709 c 0.315593,0 0.571433,-0.2559 0.571433,-0.5714 v -9.1429 c 0,-0.3157 -0.25584,-0.5715 -0.571433,-0.5714 z" fill="#f6f6f6" id="path1-2-7" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:0.996078" /><path d="m 57.454539,1013.1805 c -1.757265,0 -3.181814,1.4246 -3.181814,3.1819 0,1.757 1.424549,3.1819 3.181814,3.1819 h 5.09092 c 1.757251,0 3.181815,-1.4248 3.181815,-3.1819 0,-1.7573 -1.424564,-3.1819 -3.181815,-3.1819 z m 0,-1.2728 h 5.09092 c 2.460178,0 4.454537,1.9943 4.454537,4.4547 0,2.4602 -1.994359,4.4544 -4.454537,4.4544 h -5.09092 c -2.460178,0 -4.454543,-1.9942 -4.454543,-4.4544 0,-2.4602 1.994365,-4.4547 4.454543,-4.4547 z m 0,6.3637 c -1.054353,0 -1.909091,-0.8548 -1.909091,-1.909 0,-1.0545 0.854738,-1.9091 1.909091,-1.9091 1.054368,0 1.909091,0.8546 1.909091,1.9091 0,1.0542 -0.854723,1.909 -1.909091,1.909 z" fill="#f6f6f6" id="path1-09" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /><path d="m 130.2,1010.3623 v 1.1998 h 3.6 v -1.1998 h 1.2 v 1.1998 h 2.4 c 0.33137,0 0.6,0.2687 0.6,0.6001 v 9.6 c 0,0.3314 -0.26863,0.6 -0.6,0.6 h -10.79999 c -0.33137,0 -0.60001,-0.2686 -0.60001,-0.6 v -9.6 c 0,-0.3314 0.26864,-0.6001 0.60001,-0.6001 h 2.4 v -1.1998 z m 6.59999,6 h -9.59998 v 4.7998 h 9.59998 z m -7.79998,-3.6001 h -1.8 v 2.3999 h 9.59998 v -2.3999 h -1.79999 v 1.2001 h -1.2 v -1.2001 h -3.6 v 1.2001 h -1.19999 z" fill="#f6f6f6" id="path1-06" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /><path d="m 156.0004,1022.3622 c -3.31371,0 -6,-2.6863 -6,-5.9999 0,-3.3137 2.68629,-6 6,-6 3.31368,0 6,2.6863 6,6 0,3.3136 -2.68632,5.9999 -6,5.9999 z m 0,-1.2 c 2.65098,0 4.79999,-2.149 4.79999,-4.7999 0,-2.651 -2.14901,-4.8001 -4.79999,-4.8001 -2.65096,0 -4.79999,2.1491 -4.79999,4.8001 0,2.6509 2.14903,4.7999 4.79999,4.7999 z m 0.60001,-4.7999 h 2.39999 v 1.1999 h -3.6 v -4.2 h 1.20001 z" fill="#f6f6f6" id="path1-61" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /><path d="m 180.10872,1011.0289 h 6.66667 v 1.3333 h -6.66667 z m 0,2.6667 h 4 v 1.3333 h -4 z m 0,4 h 6.66667 v 1.3333 h -6.66667 z m 0,2.6666 h 4 v 1.3334 h -4 z m -5.33333,-9.3333 h 4 v 4 h -4 z m 1.33333,1.3333 v 1.3334 h 1.33334 v -1.3334 z m -1.33333,5.3334 h 4 v 4 h -4 z m 1.33333,1.3333 v 1.3333 h 1.33334 v -1.3333 z" fill="#f6f6f6" id="path1-79-5" style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-dasharray:none;stroke-opacity:1" /></g></svg>
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
.umap-alert[role="dialog"] {
|
|
2
2
|
box-sizing: border-box;
|
|
3
|
-
min-height: 46px;
|
|
4
|
-
line-height: 46px;
|
|
5
3
|
padding: var(--box-padding);
|
|
6
4
|
position: absolute;
|
|
7
5
|
box-shadow: 0 1px 7px #999999;
|
|
8
6
|
background: var(--color-darkGray);
|
|
9
7
|
font-weight: bold;
|
|
10
8
|
color: #fff;
|
|
11
|
-
font-size: 0.
|
|
9
|
+
font-size: 0.8rem;
|
|
12
10
|
border-radius: 2px;
|
|
13
11
|
margin-top: calc(var(--header-height) + var(--panel-gutter));
|
|
14
12
|
display: flex;
|
|
@@ -20,60 +18,79 @@
|
|
|
20
18
|
width: max-content;
|
|
21
19
|
z-index: var(--zindex-alert);
|
|
22
20
|
}
|
|
23
|
-
|
|
21
|
+
|
|
22
|
+
.umap-alert[role="dialog"]>div {
|
|
24
23
|
margin: 0 auto;
|
|
25
24
|
min-width: 60%;
|
|
26
25
|
background-size: 20px;
|
|
27
|
-
background-position: 0 15px;
|
|
28
26
|
padding-inline-start: 28px;
|
|
27
|
+
background-position: 0 center;
|
|
28
|
+
min-height: 10vh;
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: column;
|
|
31
|
+
justify-content: center;
|
|
29
32
|
}
|
|
30
|
-
|
|
33
|
+
|
|
34
|
+
.umap-alert[role="dialog"][data-level="info"]>div {
|
|
31
35
|
background-image: url('../../../img/alert-icon-info.svg');
|
|
32
36
|
background-repeat: no-repeat;
|
|
33
37
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
.umap-alert[role="dialog"][data-level="success"] > div {
|
|
38
|
+
|
|
39
|
+
.umap-alert[role="dialog"][data-level="success"]>div {
|
|
38
40
|
background-image: url('../../../img/alert-icon-success.svg');
|
|
39
41
|
background-repeat: no-repeat;
|
|
40
42
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
.umap-alert[role="dialog"][data-level="error"] > div {
|
|
43
|
+
|
|
44
|
+
.umap-alert[role="dialog"][data-level="warning"]>div,
|
|
45
|
+
.umap-alert[role="dialog"][data-level="error"]>div {
|
|
45
46
|
background-image: url('../../../img/alert-icon-error.svg');
|
|
46
47
|
background-repeat: no-repeat;
|
|
47
48
|
}
|
|
48
|
-
|
|
49
|
+
|
|
50
|
+
html[dir="rtl"] .umap-alert[role="dialog"][data-level="info"]>div,
|
|
51
|
+
html[dir="rtl"] .umap-alert[role="dialog"][data-level="success"]>div,
|
|
52
|
+
html[dir="rtl"] .umap-alert[role="dialog"][data-level="warning"]>div,
|
|
53
|
+
html[dir="rtl"] .umap-alert[role="dialog"][data-level="error"]>div {
|
|
49
54
|
background-position: right;
|
|
50
55
|
}
|
|
56
|
+
|
|
51
57
|
.umap-alert[role="dialog"][data-level="error"] {
|
|
52
58
|
background-color: var(--color-darkRed);
|
|
53
59
|
}
|
|
60
|
+
|
|
61
|
+
.umap-alert[role="dialog"][data-level="warning"] {
|
|
62
|
+
background-color: var(--color-darkOrange);
|
|
63
|
+
}
|
|
64
|
+
|
|
54
65
|
.umap-alert[role="dialog"] a {
|
|
55
66
|
text-decoration: underline;
|
|
56
67
|
}
|
|
68
|
+
|
|
57
69
|
.umap-alert[role="dialog"] label {
|
|
58
70
|
font-size: .8rem;
|
|
59
71
|
font-weight: normal;
|
|
60
72
|
}
|
|
73
|
+
|
|
61
74
|
.umap-alert[role="dialog"] a[target="_blank"] {
|
|
62
75
|
background: url('../../../img/icon-external-link.svg') no-repeat right center;
|
|
63
76
|
padding-inline-end: 14px;
|
|
64
77
|
background-size: 12px;
|
|
65
78
|
}
|
|
79
|
+
|
|
66
80
|
html[dir="rtl"] .umap-alert[role="dialog"] a[target="_blank"] {
|
|
67
81
|
background: url('../../../img/icon-external-link.svg') no-repeat left center;
|
|
68
82
|
}
|
|
83
|
+
|
|
69
84
|
h3[role="alert"] {
|
|
70
85
|
margin-bottom: 0;
|
|
71
86
|
margin-top: 1rem;
|
|
72
87
|
line-height: initial;
|
|
73
88
|
}
|
|
74
|
-
|
|
89
|
+
|
|
90
|
+
h3[role="alert"]+p {
|
|
75
91
|
margin-top: 0;
|
|
76
92
|
}
|
|
93
|
+
|
|
77
94
|
[role="group"] {
|
|
78
95
|
display: inline-flex;
|
|
79
96
|
position: relative;
|
|
@@ -84,61 +101,70 @@ h3[role="alert"] + p {
|
|
|
84
101
|
padding: 0;
|
|
85
102
|
border: none;
|
|
86
103
|
}
|
|
104
|
+
|
|
87
105
|
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:last-child),
|
|
88
|
-
[role="group"]
|
|
89
|
-
|
|
90
|
-
|
|
106
|
+
[role="group"]> :not(:last-child) {
|
|
107
|
+
border-start-end-radius: 0;
|
|
108
|
+
border-end-end-radius: 0;
|
|
91
109
|
}
|
|
110
|
+
|
|
92
111
|
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
|
|
93
|
-
[role="group"]
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
112
|
+
[role="group"]> :not(:first-child) {
|
|
113
|
+
margin-inline-start: 0;
|
|
114
|
+
border-start-start-radius: 0;
|
|
115
|
+
border-end-start-radius: 0;
|
|
116
|
+
width: 45%;
|
|
98
117
|
}
|
|
118
|
+
|
|
99
119
|
[role="group"] input[type="submit"] {
|
|
100
120
|
background: var(--color-darkGray);
|
|
101
121
|
color: var(--color-light);
|
|
102
122
|
border: 1px solid var(--color-light);
|
|
103
123
|
line-height: initial;
|
|
104
124
|
}
|
|
125
|
+
|
|
105
126
|
[role="group"] input:not([type="submit"]) {
|
|
106
127
|
background: var(--color-light);
|
|
107
128
|
color: var(--color-darkGray);
|
|
108
129
|
border: 1px solid var(--color-light);
|
|
109
130
|
}
|
|
131
|
+
|
|
110
132
|
[role="group"] input[type="button"] {
|
|
111
133
|
background: var(--color-darkGray);
|
|
112
134
|
color: var(--color-light);
|
|
113
|
-
border: none;
|
|
114
135
|
line-height: initial;
|
|
115
136
|
}
|
|
137
|
+
|
|
116
138
|
[role="group"] input[type="button"]:hover {
|
|
117
139
|
text-decoration: underline;
|
|
118
|
-
border: none;
|
|
119
140
|
}
|
|
141
|
+
|
|
120
142
|
@media only screen and (max-width:770px) {
|
|
121
143
|
[role="group"] {
|
|
122
144
|
display: flex;
|
|
123
145
|
flex-direction: column;
|
|
124
146
|
}
|
|
147
|
+
|
|
125
148
|
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:last-child),
|
|
126
|
-
[role="group"]
|
|
127
|
-
|
|
149
|
+
[role="group"]> :not(:last-child) {
|
|
150
|
+
border-radius: var(--border-radius);
|
|
128
151
|
}
|
|
152
|
+
|
|
129
153
|
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
|
|
130
|
-
[role="group"]
|
|
131
|
-
|
|
154
|
+
[role="group"]> :not(:first-child) {
|
|
155
|
+
border-radius: var(--border-radius);
|
|
132
156
|
}
|
|
133
157
|
|
|
134
158
|
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
|
|
135
|
-
[role="group"]
|
|
159
|
+
[role="group"]> :not(:first-child) {
|
|
136
160
|
width: 100%;
|
|
137
161
|
}
|
|
138
162
|
}
|
|
163
|
+
|
|
139
164
|
#link-wrapper {
|
|
140
165
|
margin-bottom: 1rem;
|
|
141
166
|
}
|
|
167
|
+
|
|
142
168
|
.umap-alert[role="dialog"] #conflict-wrapper a[target="_blank"] {
|
|
143
169
|
background-position-y: 16px;
|
|
144
170
|
}
|
|
@@ -147,6 +173,7 @@ h3[role="alert"] + p {
|
|
|
147
173
|
display: flex;
|
|
148
174
|
justify-content: space-around;
|
|
149
175
|
}
|
|
176
|
+
|
|
150
177
|
#conflict-wrapper form [type="submit"] {
|
|
151
178
|
width: initial;
|
|
152
179
|
background: inherit;
|
|
@@ -154,19 +181,30 @@ h3[role="alert"] + p {
|
|
|
154
181
|
border: 1px solid var(--color-light);
|
|
155
182
|
font-weight: bold;
|
|
156
183
|
}
|
|
184
|
+
|
|
157
185
|
#conflict-wrapper form [type="submit"]:hover {
|
|
158
186
|
width: initial;
|
|
159
187
|
background: darkred;
|
|
160
188
|
color: var(--color-light);
|
|
161
189
|
border: 1px solid var(--color-light);
|
|
162
190
|
}
|
|
191
|
+
|
|
163
192
|
@media only screen and (max-width:770px) {
|
|
164
193
|
#conflict-wrapper form {
|
|
165
194
|
flex-direction: column;
|
|
166
195
|
text-align: center;
|
|
167
196
|
}
|
|
168
197
|
}
|
|
198
|
+
|
|
169
199
|
umap-alert-choice a {
|
|
170
200
|
color: var(--color-light);
|
|
171
201
|
text-decoration: underline;
|
|
172
202
|
}
|
|
203
|
+
|
|
204
|
+
umap-alert-creation .dark .anonymous {
|
|
205
|
+
background-color: initial;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
umap-alert-creation h3[role="alert"] {
|
|
209
|
+
margin-bottom: var(--box-margin);
|
|
210
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { translate } from '../../modules/i18n.js'
|
|
2
2
|
import { uMapElement } from '../base.js'
|
|
3
|
+
import { copyToClipboard } from '../../modules/domutils.js'
|
|
3
4
|
|
|
4
5
|
class uMapAlert extends uMapElement {
|
|
5
6
|
static get observedAttributes() {
|
|
@@ -22,6 +23,11 @@ class uMapAlert extends uMapElement {
|
|
|
22
23
|
uMapAlert.emit('alert', { level: 'success', message, duration })
|
|
23
24
|
}
|
|
24
25
|
|
|
26
|
+
// biome-ignore lint/style/useNumberNamespace: Number.Infinity returns undefined by default
|
|
27
|
+
static warning(message, duration = Infinity) {
|
|
28
|
+
uMapAlert.emit('alert', { level: 'warning', message, duration })
|
|
29
|
+
}
|
|
30
|
+
|
|
25
31
|
// biome-ignore lint/style/useNumberNamespace: Number.Infinity returns undefined by default
|
|
26
32
|
static error(message, duration = Infinity) {
|
|
27
33
|
uMapAlert.emit('alert', { level: 'error', message, duration })
|
|
@@ -75,6 +81,7 @@ class uMapAlert extends uMapElement {
|
|
|
75
81
|
|
|
76
82
|
class uMapAlertCreation extends uMapAlert {
|
|
77
83
|
static info(
|
|
84
|
+
umap,
|
|
78
85
|
message,
|
|
79
86
|
// biome-ignore lint/style/useNumberNamespace: Number.Infinity returns undefined by default
|
|
80
87
|
duration = Infinity,
|
|
@@ -82,6 +89,7 @@ class uMapAlertCreation extends uMapAlert {
|
|
|
82
89
|
sendCallback = undefined
|
|
83
90
|
) {
|
|
84
91
|
uMapAlertCreation.emit('alertCreation', {
|
|
92
|
+
umap,
|
|
85
93
|
message,
|
|
86
94
|
duration,
|
|
87
95
|
editLink,
|
|
@@ -93,10 +101,12 @@ class uMapAlertCreation extends uMapAlert {
|
|
|
93
101
|
super()
|
|
94
102
|
this.linkWrapper = this.container.querySelector('#link-wrapper')
|
|
95
103
|
this.formWrapper = this.container.querySelector('#form-wrapper')
|
|
104
|
+
this.loginLinks = this.container.querySelectorAll('a.login')
|
|
96
105
|
}
|
|
97
106
|
|
|
98
107
|
onAlertCreation(event) {
|
|
99
108
|
const {
|
|
109
|
+
umap,
|
|
100
110
|
level = 'info',
|
|
101
111
|
duration = 5000,
|
|
102
112
|
message = '',
|
|
@@ -108,9 +118,17 @@ class uMapAlertCreation extends uMapAlert {
|
|
|
108
118
|
const button = this.linkWrapper.querySelector('input[type="button"]')
|
|
109
119
|
button.addEventListener('click', (event) => {
|
|
110
120
|
event.preventDefault()
|
|
111
|
-
|
|
112
|
-
event.target.value = translate('✅ Copied!')
|
|
121
|
+
copyToClipboard(editLink)
|
|
113
122
|
})
|
|
123
|
+
for (const link of this.loginLinks) {
|
|
124
|
+
link.addEventListener('click', (event) => {
|
|
125
|
+
event.preventDefault()
|
|
126
|
+
umap.askForLogin().then(() => {
|
|
127
|
+
umap.permissions.attach()
|
|
128
|
+
this._hide()
|
|
129
|
+
})
|
|
130
|
+
})
|
|
131
|
+
}
|
|
114
132
|
if (sendCallback) {
|
|
115
133
|
this.formWrapper.removeAttribute('hidden')
|
|
116
134
|
const form = this.formWrapper.querySelector('form')
|