umap-project 2.4.0b2__py3-none-any.whl → 2.4.2__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.

Files changed (129) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/el/LC_MESSAGES/django.po +145 -90
  3. umap/locale/en/LC_MESSAGES/django.po +3 -3
  4. umap/locale/eu/LC_MESSAGES/django.po +145 -89
  5. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/pt/LC_MESSAGES/django.po +87 -37
  7. umap/static/umap/base.css +20 -6
  8. umap/static/umap/content.css +2 -2
  9. umap/static/umap/css/dialog.css +1 -1
  10. umap/static/umap/css/importers.css +2 -0
  11. umap/static/umap/css/panel.css +2 -2
  12. umap/static/umap/css/tooltip.css +1 -1
  13. umap/static/umap/img/16-white.svg +1 -3
  14. umap/static/umap/img/source/16-white.svg +2 -4
  15. umap/static/umap/js/components/alerts/alert.css +1 -1
  16. umap/static/umap/js/components/alerts/alert.js +1 -1
  17. umap/static/umap/js/modules/autocomplete.js +4 -4
  18. umap/static/umap/js/modules/browser.js +11 -11
  19. umap/static/umap/js/modules/caption.js +5 -5
  20. umap/static/umap/js/modules/dompurify.js +2 -3
  21. umap/static/umap/js/modules/facets.js +16 -10
  22. umap/static/umap/js/modules/global.js +16 -16
  23. umap/static/umap/js/modules/help.js +2 -2
  24. umap/static/umap/js/modules/importer.js +6 -6
  25. umap/static/umap/js/modules/importers/geodatamine.js +4 -4
  26. umap/static/umap/js/modules/importers/overpass.js +2 -2
  27. umap/static/umap/js/modules/orderable.js +2 -2
  28. umap/static/umap/js/modules/request.js +1 -1
  29. umap/static/umap/js/modules/rules.js +13 -10
  30. umap/static/umap/js/modules/sync/engine.js +3 -3
  31. umap/static/umap/js/modules/sync/updaters.js +10 -11
  32. umap/static/umap/js/modules/sync/websocket.js +1 -1
  33. umap/static/umap/js/modules/ui/dialog.js +1 -1
  34. umap/static/umap/js/modules/ui/panel.js +1 -1
  35. umap/static/umap/js/modules/ui/tooltip.js +6 -6
  36. umap/static/umap/js/modules/urls.js +1 -2
  37. umap/static/umap/js/modules/utils.js +19 -19
  38. umap/static/umap/js/umap.controls.js +26 -28
  39. umap/static/umap/js/umap.core.js +19 -15
  40. umap/static/umap/js/umap.datalayer.permissions.js +15 -18
  41. umap/static/umap/js/umap.features.js +102 -120
  42. umap/static/umap/js/umap.forms.js +46 -74
  43. umap/static/umap/js/umap.icon.js +17 -22
  44. umap/static/umap/js/umap.js +126 -131
  45. umap/static/umap/js/umap.layer.js +159 -167
  46. umap/static/umap/js/umap.permissions.js +6 -9
  47. umap/static/umap/js/umap.popup.js +20 -20
  48. umap/static/umap/js/umap.share.js +9 -15
  49. umap/static/umap/js/umap.slideshow.js +12 -14
  50. umap/static/umap/js/umap.tableeditor.js +5 -5
  51. umap/static/umap/locale/am_ET.json +5 -2
  52. umap/static/umap/locale/ar.json +5 -2
  53. umap/static/umap/locale/ast.json +5 -2
  54. umap/static/umap/locale/bg.json +5 -2
  55. umap/static/umap/locale/br.json +5 -2
  56. umap/static/umap/locale/ca.json +5 -2
  57. umap/static/umap/locale/cs_CZ.json +5 -2
  58. umap/static/umap/locale/da.json +5 -2
  59. umap/static/umap/locale/de.json +5 -2
  60. umap/static/umap/locale/el.json +10 -7
  61. umap/static/umap/locale/en.js +2 -1
  62. umap/static/umap/locale/en.json +5 -2
  63. umap/static/umap/locale/en_US.json +5 -2
  64. umap/static/umap/locale/es.js +9 -8
  65. umap/static/umap/locale/es.json +12 -9
  66. umap/static/umap/locale/et.json +5 -2
  67. umap/static/umap/locale/fa_IR.json +5 -2
  68. umap/static/umap/locale/fi.json +5 -2
  69. umap/static/umap/locale/fr.js +2 -1
  70. umap/static/umap/locale/fr.json +5 -2
  71. umap/static/umap/locale/gl.json +5 -2
  72. umap/static/umap/locale/he.json +5 -2
  73. umap/static/umap/locale/hr.json +5 -2
  74. umap/static/umap/locale/hu.json +5 -2
  75. umap/static/umap/locale/id.json +5 -2
  76. umap/static/umap/locale/is.json +5 -2
  77. umap/static/umap/locale/it.json +5 -2
  78. umap/static/umap/locale/ja.json +5 -2
  79. umap/static/umap/locale/ko.json +5 -2
  80. umap/static/umap/locale/lt.json +5 -2
  81. umap/static/umap/locale/ms.json +5 -2
  82. umap/static/umap/locale/nl.json +5 -2
  83. umap/static/umap/locale/no.json +5 -2
  84. umap/static/umap/locale/pl.json +5 -2
  85. umap/static/umap/locale/pl_PL.json +5 -2
  86. umap/static/umap/locale/pt.js +61 -60
  87. umap/static/umap/locale/pt.json +64 -61
  88. umap/static/umap/locale/pt_BR.json +5 -2
  89. umap/static/umap/locale/pt_PT.json +5 -2
  90. umap/static/umap/locale/ro.json +5 -2
  91. umap/static/umap/locale/ru.json +5 -2
  92. umap/static/umap/locale/sk_SK.json +5 -2
  93. umap/static/umap/locale/sl.json +5 -2
  94. umap/static/umap/locale/sr.json +5 -2
  95. umap/static/umap/locale/sv.json +5 -2
  96. umap/static/umap/locale/th_TH.json +5 -2
  97. umap/static/umap/locale/tr.json +5 -2
  98. umap/static/umap/locale/uk_UA.json +5 -2
  99. umap/static/umap/locale/vi.json +5 -2
  100. umap/static/umap/locale/vi_VN.json +5 -2
  101. umap/static/umap/locale/zh.json +5 -2
  102. umap/static/umap/locale/zh_CN.json +5 -2
  103. umap/static/umap/locale/zh_TW.Big5.json +5 -2
  104. umap/static/umap/locale/zh_TW.json +5 -2
  105. umap/static/umap/map.css +22 -22
  106. umap/static/umap/unittests/utils.js +5 -5
  107. umap/static/umap/vars.css +12 -1
  108. umap/storage.py +1 -1
  109. umap/tests/integration/test_browser.py +76 -3
  110. umap/tests/integration/test_edit_polygon.py +11 -0
  111. umap/tests/integration/test_map.py +29 -0
  112. umap/tests/integration/test_map_preview.py +36 -2
  113. umap/tests/integration/test_view_marker.py +2 -2
  114. umap/tests/test_views.py +2 -2
  115. umap/views.py +3 -2
  116. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/METADATA +3 -3
  117. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/RECORD +120 -129
  118. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/WHEEL +1 -1
  119. umap/.DS_Store +0 -0
  120. umap/static/.DS_Store +0 -0
  121. umap/static/umap/.DS_Store +0 -0
  122. umap/static/umap/favicons/.DS_Store +0 -0
  123. umap/static/umap/fonts/.DS_Store +0 -0
  124. umap/static/umap/img/.DS_Store +0 -0
  125. umap/static/umap/img/source/.DS_Store +0 -0
  126. umap/tests/.DS_Store +0 -0
  127. umap/tests/integration/.DS_Store +0 -0
  128. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/entry_points.txt +0 -0
  129. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,5 +1,4 @@
1
- umap/.DS_Store,sha256=B4-anBIm7kFQicJnbjnO-JSfRpv0HVyvhdun5qug0zM,6148
2
- umap/__init__.py,sha256=6UgDNm2R7aBY6H-Khg1BqsBRb-H4FoEpCHjqVsaO3yM,20
1
+ umap/__init__.py,sha256=fRky3kg_0I-0H3B9F1VAaqr48sY8mXlAi9oE3tEWrdg,18
3
2
  umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
4
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
5
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
@@ -10,10 +9,10 @@ umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
10
9
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
11
10
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
12
11
  umap/models.py,sha256=3_AHTDnh2EG_aAv16bJ99gw-mz5KfAIJZgV9XRVIbaY,17660
13
- umap/storage.py,sha256=bdjjdn768fZJYsyDNBxgwLvSu6rhde_Cc6yzyZZDmSg,2282
12
+ umap/storage.py,sha256=2qJSc4EYmvhrf0HJhNjnxPJwLEqKBhWmIBroIVnVj5o,2279
14
13
  umap/urls.py,sha256=U8h4_C67GXfIZCWJRiOGf2in7g8wtVefhKzj3Aw7Q-U,7012
15
14
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
16
- umap/views.py,sha256=iHU1glFj30Lizn2maH7PiXdvyTrOCQ3GTI9yTJrmirg,42213
15
+ umap/views.py,sha256=KgKWTvXeqZl97gY2ZSKp1pj_t5tubZI8HqeM9Pc5k-c,42247
17
16
  umap/websocket_server.py,sha256=igM05T95y7IqidPy8nVrCwbydj_xcCEAqwjZPb0mxyA,3023
18
17
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
19
18
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
@@ -36,15 +35,15 @@ umap/locale/da/LC_MESSAGES/django.po,sha256=1d1q7jWvVKi0a5JRDYQoLyMWRCit4VWfL-x-
36
35
  umap/locale/de/LC_MESSAGES/django.mo,sha256=6pQCiW2yT_fYvuuJ4kqNebmk4Wq6uhFgAm5Dpm1vSyA,6363
37
36
  umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs5Lr-hpw,13472
38
37
  umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
39
- umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
38
+ umap/locale/el/LC_MESSAGES/django.po,sha256=SMfOSpAfJ74nZFTaQid4_q6iUNJwZPQzq1Z_XJWtcn0,20816
40
39
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
41
- umap/locale/en/LC_MESSAGES/django.po,sha256=n7NOlv9fcXMx95Qiycd73EUojTrPvfd5o4vjRDgqByk,12075
40
+ umap/locale/en/LC_MESSAGES/django.po,sha256=qD78Xr3mwCmpqyU3JnraLi-s8TG-xD8cSeHI7H6xYxw,12075
42
41
  umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
43
42
  umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
44
43
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
45
44
  umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
46
45
  umap/locale/eu/LC_MESSAGES/django.mo,sha256=2iCzCKEAr2yKoGVRYyHOf02zUC_skHKPc-lPpdWDXt0,6278
47
- umap/locale/eu/LC_MESSAGES/django.po,sha256=sp8w7BaoZeJLb3vaLcr1KBklqkt6cWx5H3YxyInJH-E,13127
46
+ umap/locale/eu/LC_MESSAGES/django.po,sha256=NgtZr3prm_DXfEc6q-tKsCEvimmTb_BfR-C_Chc-pFw,15432
48
47
  umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=LcU15SxGd21_jDyaZoH2DIQbrD1GqcUHM81ebL1QR1k,7754
49
48
  umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=ASiA2CeduaQzb6TwyWbm-rCi2wN29PV_VnhOn0ifxeg,14688
50
49
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
@@ -79,8 +78,8 @@ umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk
79
78
  umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
80
79
  umap/locale/pl/LC_MESSAGES/django.mo,sha256=gianKLgTIpQVm_eix8KUAIJE2y3hRlb2jlZGGSrZSPA,9457
81
80
  umap/locale/pl/LC_MESSAGES/django.po,sha256=EuvkgUF7tFMxxVB7_neSF31zVk07TBp_HDPI2uK8D4c,14735
82
- umap/locale/pt/LC_MESSAGES/django.mo,sha256=gsaX4yKl65uc_yB9PcPP3pxqbZp4WkJlnmjAxWifCqs,10180
83
- umap/locale/pt/LC_MESSAGES/django.po,sha256=-R1c6MuNNoJLTTBpGUAYYE3Y_jTnsB2_Vl5w_wVidYM,14808
81
+ umap/locale/pt/LC_MESSAGES/django.mo,sha256=eoKl_1ZO74e7YOud-SA6s-fHICKEltrBBnnU54F3x24,11414
82
+ umap/locale/pt/LC_MESSAGES/django.po,sha256=tqFJKNlkfCFfRFrQ4VD3tAwNe3je9W4EIGR3BhUgiVs,16667
84
83
  umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
85
84
  umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
86
85
  umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
@@ -143,27 +142,24 @@ umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,159
143
142
  umap/settings/base.py,sha256=opweJ5UoMRmBylkAuWcTqP364ab9DRwXwfjMKio-60s,10254
144
143
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
145
144
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
146
- umap/static/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
147
145
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- umap/static/umap/.DS_Store,sha256=25wUHAzNlKKNi8zJzUdKYuHD2pgYZXNNmvaeGbIAYkM,6148
149
- umap/static/umap/base.css,sha256=pKfQGlcnxowu1w5Yhw_V9uDN6njIAB5fppTbVk-mDrs,16619
146
+ umap/static/umap/base.css,sha256=VbJ_BK-Qtz1doNfhDFJcd3Nl8Zv6RipgFo7xBau_TKQ,16841
150
147
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
151
- umap/static/umap/content.css,sha256=3aFi5hHUuokCqdW_xQuEDyS6vW1ahSdjbSPPnFNutbk,11429
148
+ umap/static/umap/content.css,sha256=v2hCjLhRqj3qRFEk_-GMOqLDCIowuGCa38nZYC5FL2U,11457
152
149
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
153
150
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
154
- umap/static/umap/map.css,sha256=eRdNaEKQqBT8ZRTNsmNT4qCJWVznqbRrUOAQgtyghA4,39672
151
+ umap/static/umap/map.css,sha256=p7_bmLzK0L36kuQXbv58n2-dM_fBEQU4_C8Zq7670ts,39895
155
152
  umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
156
153
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
157
154
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
158
155
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
159
- umap/static/umap/vars.css,sha256=oew1iuKNev2JK0-IAFzDgvGGceNv7tNRI6vExIzuLbE,1266
160
- umap/static/umap/css/dialog.css,sha256=IMDzMNemyCdVyPC5r8rEc5zJuMjdqMiJ4gz7tuHsXtc,379
156
+ umap/static/umap/vars.css,sha256=_OMjY6pBK8RygP9-bOP52rzNjW5FPVCYJwHYuaT_4D4,1577
157
+ umap/static/umap/css/dialog.css,sha256=F_FzX5qLTbKZNAZrH2eByQtXDo2jRNSG8bHZgY0SIW8,394
161
158
  umap/static/umap/css/icon.css,sha256=VUQqVTl8JVfYBGV5mT1NL6ocRol_jZPOmS9Yzv9SuXQ,2430
162
- umap/static/umap/css/importers.css,sha256=m9OezQIOv55KcwU4_t1fouMKjFQOMG4ML1t33rXkT7s,1264
163
- umap/static/umap/css/panel.css,sha256=QSw2lUur2AOzdJxoX604FszXDBJ_fCD4nilTQhab0Mg,2891
164
- umap/static/umap/css/tooltip.css,sha256=-hPbDSVn0cEHfNiBYtz-PlZ-bVBWVKg_8VnsEckYv3M,1384
159
+ umap/static/umap/css/importers.css,sha256=0DugO_k0vhcKHusz9XjOWghGgEq1G7INNewFKaPjlFc,1321
160
+ umap/static/umap/css/panel.css,sha256=zdEnFE-Vkk5PcIejhRme25TCb6TCIcjFrntj6rNvp6A,2933
161
+ umap/static/umap/css/tooltip.css,sha256=lscTSvrf5f8JBIlgDbP15tDv7e0MSiRFuTo0IriRjSs,1410
165
162
  umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
166
- umap/static/umap/favicons/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
167
163
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
168
164
  umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
169
165
  umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
@@ -175,9 +171,7 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
175
171
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
176
172
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
177
173
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
178
- umap/static/umap/fonts/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
179
- umap/static/umap/img/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
180
- umap/static/umap/img/16-white.svg,sha256=qvCWtxEyFGjinV6Zm6SYczI3FYDG2ar-SoLCke329Qo,35880
174
+ umap/static/umap/img/16-white.svg,sha256=XsUxQH9olPbnJKfzhr7HnOjtG6MYnMP59BeujQUMHa4,35894
181
175
  umap/static/umap/img/16.svg,sha256=R9KiBefx832Eog5088aXm07s-thjbRsgSTs3N8emvCw,25475
182
176
  umap/static/umap/img/24-white.svg,sha256=PE1gVqezV0mTFmYwmaG2r1n_HODeADkZNd-9Wb5gOCo,17592
183
177
  umap/static/umap/img/24.svg,sha256=rEsLjRM1Unxqi_Lw9kc6Npy86jk5wbhWS8ZkVfM_GR0,24881
@@ -208,153 +202,152 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
208
202
  umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
209
203
  umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
210
204
  umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
211
- umap/static/umap/img/source/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
212
- umap/static/umap/img/source/16-white.svg,sha256=MS_S0U-3bjOlo4hKslp-cPdbBOlUtWC4JlSH7Os1FpY,68449
205
+ umap/static/umap/img/source/16-white.svg,sha256=AxOnA1TMUHgjn3Hozg89s7I_u_MvcCFxUG3aNNfnCPQ,67676
213
206
  umap/static/umap/img/source/16.svg,sha256=XjrSS3_6kxf432h83aQF6UfxwjNxjNdioJG8jXEdQXo,48127
214
207
  umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
215
208
  umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
216
- umap/static/umap/js/umap.controls.js,sha256=Zrp5Dys0lHx5KSSuBSYDOz_g58T9LxLGQOZ-OHHYD2U,37277
217
- umap/static/umap/js/umap.core.js,sha256=JWaIuowHjnLrOQnUCifln4qiAvD7X43DAcL7flQK_4g,7546
218
- umap/static/umap/js/umap.datalayer.permissions.js,sha256=_wqTme7S7AvMOXSWecLm_iJBCV65V_KUH9ABKJg1H-8,1948
219
- umap/static/umap/js/umap.features.js,sha256=M-Bj0lS4q_vsvhYQl2lp7WSDphbrghltvqZKHQkNWac,36412
220
- umap/static/umap/js/umap.forms.js,sha256=FGqqpD7yQOxfgHNwTaYSiNYRw8biuoZpwDmwvozFhXI,31400
221
- umap/static/umap/js/umap.icon.js,sha256=8dzfEN5fgP2jXYTbN6B-xjrB94A6nXHCXO2RKoTC0S0,7594
222
- umap/static/umap/js/umap.js,sha256=BmXDvnIDb61ivEgae19LUlKVobBzB-FieR8clpui6Pg,57023
223
- umap/static/umap/js/umap.layer.js,sha256=hLOUncINK5BjbwIWWH4qTrfUKQYq3V_80Rs9-JU_x5I,50739
224
- umap/static/umap/js/umap.permissions.js,sha256=JK_O8ttM95F5tGXY5MJ_eLXgEmNPS4dVQS3h9u3I3iM,6068
225
- umap/static/umap/js/umap.popup.js,sha256=rVO7JPJM0usM6hoKtfZaxgyCKaE-Ze1oFDQrc3T3kIY,9800
226
- umap/static/umap/js/umap.share.js,sha256=nUM4r1QZSw6s9lIxgXvMMcG-udsauGWFOrayC9_uEa4,7766
227
- umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
228
- umap/static/umap/js/umap.tableeditor.js,sha256=Vi9xy0FKspLc9uTbLGuh0UJUfKSNnNAOHxWyAjuvF8A,3882
209
+ umap/static/umap/js/umap.controls.js,sha256=_LvoAm4tPDnDMZ4sXMd3AyuwvIHrwjKggN8UKSqP3hk,37239
210
+ umap/static/umap/js/umap.core.js,sha256=VkGsb707hpgTd_Je69fZ4xRP9zi53cpM8D1g_ZCBwr8,7562
211
+ umap/static/umap/js/umap.datalayer.permissions.js,sha256=x48VTKCviC3pwljD4wU7bvk2POXMGvzYcAQCAuA7-sI,1869
212
+ umap/static/umap/js/umap.features.js,sha256=D4R_MBfuR5ylIIRBIRVFngiqgtzEZ7XuYiwa1HMJHBc,36433
213
+ umap/static/umap/js/umap.forms.js,sha256=BexTXcyH1MdeZpTOu6JtWagSmu9NXuWh1M3-77UA_Cg,31087
214
+ umap/static/umap/js/umap.icon.js,sha256=JYLHLtPAZT6BRIrAv5wHXYRIWMkCZMO-olwps9Xz8f8,7465
215
+ umap/static/umap/js/umap.js,sha256=mYQIMl9VLwLMaPpdRgbv32UCdeCnrCA4pMCTebp7918,57058
216
+ umap/static/umap/js/umap.layer.js,sha256=xIfZ4plz0f5OTLmuuAf96KrGTlPAwqfluRtY2Rix3mc,50859
217
+ umap/static/umap/js/umap.permissions.js,sha256=lKsL1E9BR7Zu8pAvbf1mMRynZL-JexRjx9khs2wHWro,5964
218
+ umap/static/umap/js/umap.popup.js,sha256=_CvsbnFZQZtBkUeuNo8K0fUQTJlXEtvHdZE7QJuXEm8,9783
219
+ umap/static/umap/js/umap.share.js,sha256=rvGXF8jivXDjBbLz7q3POEjUz15sn-fNkjuBD1Vu8VE,7658
220
+ umap/static/umap/js/umap.slideshow.js,sha256=4M0OA2A_rL_SRtVjrjHjkcsotGJGIJq2XRQ-C62eHIw,4379
221
+ umap/static/umap/js/umap.tableeditor.js,sha256=tXLDLZqfUT7CZOjGOHiK4TKFoFwCKgLTjtiylx19en8,3885
229
222
  umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
230
223
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
231
- umap/static/umap/js/components/alerts/alert.css,sha256=F2Bg6IabPgzkCIZycwnta8neONX_q7fhVIYYY1po9g8,4314
232
- umap/static/umap/js/components/alerts/alert.js,sha256=7IYQfvXUWtcm3A300sbI5EULfRnQGmuMbh5hQDPYquc,4475
233
- umap/static/umap/js/modules/autocomplete.js,sha256=BPpZBvNttkAQVf3LzTlj_dQhTHbD8cZrAXOIeq6jRn4,7886
234
- umap/static/umap/js/modules/browser.js,sha256=0x1vlMOIeV-Ma-yrOzpkbgRiN2kUP4UK6F9LgxuHloI,7337
235
- umap/static/umap/js/modules/caption.js,sha256=s8SIwKszoO7z8be8WRISJLOx58_cOup2V26vhJ5bE0g,3867
236
- umap/static/umap/js/modules/dompurify.js,sha256=-4MuNA0bAa60lAL40MPa1F4YHfr2V05isAJdPQlABpk,341
237
- umap/static/umap/js/modules/facets.js,sha256=H7RtTKbpCMQa68GIRqkUtmKfDYqrv6pcTSLXeC3GwQc,3428
238
- umap/static/umap/js/modules/global.js,sha256=IBFJfeOs9Dt3bM-6D7hzKuFPbIqcPFhp5XRViGcNmH4,1312
239
- umap/static/umap/js/modules/help.js,sha256=kNbDZM2RgVbC1d3HgJAELM2tadgulIFnTCdgveTmcNg,9850
224
+ umap/static/umap/js/components/alerts/alert.css,sha256=ZHHxD5KkKoOYmYED3ijpWhHiMFUAJllxokXj1VqYgl8,4329
225
+ umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
226
+ umap/static/umap/js/modules/autocomplete.js,sha256=BoVD1gSMnE6T9TTveOSBrFmv1tXP_DD4_lE9MmfOFKc,7870
227
+ umap/static/umap/js/modules/browser.js,sha256=-7YkhVeD6B-qdJI_St4I5JjBs3j3KqrkXalUY1l4H_c,7250
228
+ umap/static/umap/js/modules/caption.js,sha256=LLvNXtRqUfzvx9pAhp7cGu1kUShckFUOw0wI8qJ-CMc,3880
229
+ umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
230
+ umap/static/umap/js/modules/facets.js,sha256=EihHg5GAT0RCShVMswMfvpAM6cyKsK0On2UVzkCLyBw,3889
231
+ umap/static/umap/js/modules/global.js,sha256=ZxB7h9Wr3c0NPXVIueacJiefbE86XqWl4Jz3oO6MPak,1312
232
+ umap/static/umap/js/modules/help.js,sha256=FnpdaG-J8okpSksbMkbafGf_hGiz6ggKhQQeLc4h38s,9851
240
233
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
241
- umap/static/umap/js/modules/importer.js,sha256=JXPksGEB6v05_vY4-ZTs-4BWg9qiDCglA7IlDdkGltU,8689
234
+ umap/static/umap/js/modules/importer.js,sha256=dtg70Gsz4NmQFFPa7OZdpyF4JQXupDQwgUfPfBcY_tk,8681
242
235
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
243
- umap/static/umap/js/modules/orderable.js,sha256=E3FgVeQG1iEnu56M7KIYOwV1ngNyrF8yXVEs0jExbjc,2518
244
- umap/static/umap/js/modules/request.js,sha256=Ax1h2dIW2rRiS93v78iHYVCBHTMIIp6RIomW-pk99Fs,3881
245
- umap/static/umap/js/modules/rules.js,sha256=4FfuENBDL_8Jgn_jlgFQy7UaknBtTsw-srryvBGm2b4,6060
236
+ umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
237
+ umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
238
+ umap/static/umap/js/modules/rules.js,sha256=xdPbW5Sb2b8PwdzohOCGKgFgP9gGhk1XD0ow8rpxgb4,6409
246
239
  umap/static/umap/js/modules/schema.js,sha256=cJnZYuhkbv8GZcu8TocIyyWZtQy5RjOEoM7nSTBwKxM,12226
247
- umap/static/umap/js/modules/urls.js,sha256=5r2xDllTHALs7LurFmCSXMN8YZzhOSYwoQrNsTx4Xq8,853
248
- umap/static/umap/js/modules/utils.js,sha256=h4NT-hsLo6gmusYiGjN2WYXvxRVXRRa781i1pWID910,10705
240
+ umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
241
+ umap/static/umap/js/modules/utils.js,sha256=vAuN4QwxyLUw6IaCs30zM97SWKKwfKSfac0lD2qym5I,10640
249
242
  umap/static/umap/js/modules/importers/communesfr.js,sha256=VtyPEh7MccPM0P1YoYFtBX4YLwk4LrxS5IhJFM3Vmwc,1273
250
243
  umap/static/umap/js/modules/importers/datasets.js,sha256=SsIMNYcDy0s82prnTVXulevSTnaHLMWXldrKiU4E9MA,1379
251
- umap/static/umap/js/modules/importers/geodatamine.js,sha256=OCqw7OVmniJKkpAhAAeTf17KV47FF4oiueAq1UFxDSA,3076
252
- umap/static/umap/js/modules/importers/overpass.js,sha256=QDWZhi0S5xKTE13o5ISLxH-bkAheqMzcihRpLFkQgVY,2765
253
- umap/static/umap/js/modules/sync/engine.js,sha256=TPUi0H_WZZ7sEQ4UV--om5RgLHPxJdpKWVsuFIG_31Q,2584
254
- umap/static/umap/js/modules/sync/updaters.js,sha256=Hjh9Wvx0kRLnnp9CmYQ4TKt_I51ZC78peGMe7FzS-oU,3044
255
- umap/static/umap/js/modules/sync/websocket.js,sha256=v0gawFtVyjm81cNP9H8m8bx30_E1n0BWypqdRmiEoWA,638
256
- umap/static/umap/js/modules/ui/dialog.js,sha256=-fcCXda2kR2yipJtElzBJPRrUPwkKOFQZMR4Fayv0wQ,1735
257
- umap/static/umap/js/modules/ui/panel.js,sha256=Uv-jJi4HLV4ymbd4Xfw1D9vQRbSyJ_g_e5oiyzfoFPU,2839
258
- umap/static/umap/js/modules/ui/tooltip.js,sha256=PEcQvak5bsrabfpSBWSMdBW_E_wJorxW4PCbEBTpySs,3624
244
+ umap/static/umap/js/modules/importers/geodatamine.js,sha256=E62k2aISbuZkq7rDKZCqa5ldyqrYf5swvP7Pf117tws,3064
245
+ umap/static/umap/js/modules/importers/overpass.js,sha256=BqNP9-gJsOdghZRMUFy-Yzmyt3-V6UBsFv3Z04ij0XM,2767
246
+ umap/static/umap/js/modules/sync/engine.js,sha256=m2FIY-GvtB5zRwiGNMn0DbTQV3aBdVxgXpaAKND0nX8,2587
247
+ umap/static/umap/js/modules/sync/updaters.js,sha256=otp0K4KLoUlohqeZkdrJBvSV0LlI1CBChmSDFdTby5U,3030
248
+ umap/static/umap/js/modules/sync/websocket.js,sha256=v9UdTU1lFTOXWBFFQjvYrl9to8ug_m6XAmpjRZRQreU,640
249
+ umap/static/umap/js/modules/ui/dialog.js,sha256=oqf2dcsUNQY-J9ys_aOVsuJdccz4LT2UZfJR5x5O4_M,1735
250
+ umap/static/umap/js/modules/ui/panel.js,sha256=OJWW7YtZDtTyxbDWJzNqjZQ6TV-e-TAzW30pJEkFxjA,2839
251
+ umap/static/umap/js/modules/ui/tooltip.js,sha256=TVR5odVl2tw8vTaXuyDi--mP7GCHOu9cLF1RWK3OnpU,3637
259
252
  umap/static/umap/locale/am_ET.js,sha256=aEs135O03PLeEauCi3cjuCcPK09P143KR0sUhl2I_yo,32065
260
- umap/static/umap/locale/am_ET.json,sha256=j9oV12YUK9rmdKnJ2_g5BRvu06xu8JDeBEtqyMUbCnk,31994
253
+ umap/static/umap/locale/am_ET.json,sha256=727YeZKCVhOTOXNbGuftVr2ID3Gl3fCKQU69geOM70Q,32146
261
254
  umap/static/umap/locale/ar.js,sha256=Ms39VKCdFCMgzhl5SV0zKJeKod6wo-JXampfkbt0nww,28578
262
- umap/static/umap/locale/ar.json,sha256=lYoN13biUaRnc1GWYp-Q0JHDAjbWSK2njSzYX49NRBE,28513
255
+ umap/static/umap/locale/ar.json,sha256=ArLwphibU_hs0K_xCIlo5ppT7KYZBnUDRcTFkeA1U3M,28656
263
256
  umap/static/umap/locale/ast.js,sha256=gyy9N_FcDmCIVUa_N_kj4Q0bGLyPTu4VEYU5oNSHygw,28147
264
- umap/static/umap/locale/ast.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
257
+ umap/static/umap/locale/ast.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
265
258
  umap/static/umap/locale/bg.js,sha256=sW-FOKlRWjkMQtrB1_G2oXX54VCJLStchRyqsxlm844,31242
266
- umap/static/umap/locale/bg.json,sha256=7PTQUowvjqZNNLvxqsOy85J9p74VLGUByO2o_quW9ZU,31177
259
+ umap/static/umap/locale/bg.json,sha256=YoaonCVReHiqFqVs8LQ1AVaVPgg0wx3JLtOUiyQAq0c,31329
267
260
  umap/static/umap/locale/br.js,sha256=35QzzaBj6adC4UJVA5RDyQdzHwu2Q_jQGXHWE-ig4rM,29670
268
- umap/static/umap/locale/br.json,sha256=typPF4ZytU-UYqgHUXzoQW8FpceGGBp6kQHHJ_rGc7Y,29605
261
+ umap/static/umap/locale/br.json,sha256=cQkge5oQO0Dfm7esTk8rjTeY_OEYGah0FMc5D_AuhAc,29752
269
262
  umap/static/umap/locale/ca.js,sha256=H3qSO86HzZ2chr90O-VJ1Ju_GQEMAYFnfCd9Dy3y47E,28963
270
- umap/static/umap/locale/ca.json,sha256=5XXSMd7XPNnCfqHoXb1bVHp7IpaUgQCZplUd04dx95o,28898
263
+ umap/static/umap/locale/ca.json,sha256=M59S1cRQzThV_oookgV_FCalfLtanRr5vT6dFdK3vy8,29050
271
264
  umap/static/umap/locale/cs_CZ.js,sha256=vHwCOthC2EZV42tv3Y5dDnG5RZQ2sUwPKhhfsVnU2N4,30383
272
- umap/static/umap/locale/cs_CZ.json,sha256=RyCUvBE7v3SSUljQzZi1hFH1lV8u9Cr0fFyEAuRviwc,30312
265
+ umap/static/umap/locale/cs_CZ.json,sha256=IJ0acgYJF2uJxFKK1pu8A4SjwlJJVf-Yktj81QsA44k,30458
273
266
  umap/static/umap/locale/da.js,sha256=rLeFiT0F5IlcTY-KZEbDTyGMEEVJtgcWyY1LKYAVlsM,28515
274
- umap/static/umap/locale/da.json,sha256=g6KoDxBKvVh_oTC9xT1EkEtpZpY-QVoRSKPmZUd74P4,28450
267
+ umap/static/umap/locale/da.json,sha256=56LjpnvoRfxfAfOlIZZZDuTSYAX6MR3xMSpJARhFDRA,28606
275
268
  umap/static/umap/locale/de.js,sha256=mz9wq5V-1mox5REu_IsGLH2CgELQVDkBQlFlKXl2EiY,30098
276
- umap/static/umap/locale/de.json,sha256=xvxvLQYc4TSHuNFSR6MINLl6umTpMmR8crG_5zqRxV8,30033
269
+ umap/static/umap/locale/de.json,sha256=ZaefzxsTPN5_LHyMQKarVoPANoJ7TuxK7440Q3Zblqk,30182
277
270
  umap/static/umap/locale/el.js,sha256=t1HHbGoP_rI-AP0G0R21CzSbUqqG4YTzM4T_tfF8g5Y,38855
278
- umap/static/umap/locale/el.json,sha256=KMQt2_RurbYV8k2gV6GiResfLCpnwV4hgUB7q_6B0Ek,38790
279
- umap/static/umap/locale/en.js,sha256=yS54U88A1zV8olxoMPLBzk1zWvzuu_o7T_epMLTZRFo,28147
280
- umap/static/umap/locale/en.json,sha256=ps5ABcHoKcDC6j4dchqLJHXSoVS_kvQNUUxmHVq6Ik0,28082
281
- umap/static/umap/locale/en_US.json,sha256=u6sIwPJfYnI156QDTbYwBrq0i4ws0d0dEm41SPfuJBo,27861
282
- umap/static/umap/locale/es.js,sha256=W2OnEkmeAFIkOU2JpfFLU7BKVcCrIDrZSfVnph8NVBM,30373
283
- umap/static/umap/locale/es.json,sha256=ak3Nf1pL5jRtX5HRBIt6ydwpCt50RNzXT0_rPDjbJ8I,30308
271
+ umap/static/umap/locale/el.json,sha256=OGAcNvBVJFTmT7oCKIk7NfPDrUMYqCkgupHG8UJ3m8k,39002
272
+ umap/static/umap/locale/en.js,sha256=dXUj767O4fB8gUialiv0EUzeUq29JDAwvFXKH2Vy_Ao,28213
273
+ umap/static/umap/locale/en.json,sha256=-n8GCOZJFfm_zsRmIysuNnglVeWB_4qgcdqgOCPlh6s,28234
274
+ umap/static/umap/locale/en_US.json,sha256=S86w7C-VfF8FA9CIt8qVZ63kB02edfA5ZWxDZgTM8Fs,28013
275
+ umap/static/umap/locale/es.js,sha256=7INo4p2CBrD9gsV-telZGHeX3KN4Kwkus4V2tta0dc8,30537
276
+ umap/static/umap/locale/es.json,sha256=kYGj-WtwWfeSVDMAAuP3N1SKDu23naaIzNn4aQAajvo,30553
284
277
  umap/static/umap/locale/et.js,sha256=gTnlWcCqlKH048VKU3G3RgaqmEkj6_ugV5uw3_9XwdA,28337
285
- umap/static/umap/locale/et.json,sha256=rp4CtO3HHi2jK34P-jJDO7-D-ZiyaHgDss6fQ0O509E,28272
278
+ umap/static/umap/locale/et.json,sha256=DRQOMkUSCzcxu8XN1t4Bsrs_A7C41jga7I6NQxRRhhE,28422
286
279
  umap/static/umap/locale/eu.js,sha256=nNmK158y9fnHZcenHTcSmpUf6DQIocQiRv_ZgQqzIU8,28192
287
280
  umap/static/umap/locale/eu.json,sha256=ysbltZQrB3nBwDbIKhTh-8c4ue7-wRpICxbYWCTuF8s,28127
288
281
  umap/static/umap/locale/fa_IR.js,sha256=kz2VJKwVsy_LiydbaXa4d9RKeVVtp7eMX6QBABkYAMc,34165
289
- umap/static/umap/locale/fa_IR.json,sha256=bQyzFdyg-7hv7n_nGb537TZeolvlU0bAA-RY63TWlfk,34094
282
+ umap/static/umap/locale/fa_IR.json,sha256=U5MVeZq2T5aPP2s0ykkbZHWwCgzuHvXLTWl8q3qg_oQ,34236
290
283
  umap/static/umap/locale/fi.js,sha256=sZImuGI33mkuF4zqOVzHLUXQVrmeqg2BvS-Yye3t0kE,29039
291
- umap/static/umap/locale/fi.json,sha256=gGumegoK89jiJJzxhfTB9b9RTAHZ5zvqO-wasarVX5Y,28974
292
- umap/static/umap/locale/fr.js,sha256=wJA7Bs9GW2IM-lR2rYkRhZrjpyW2-SBXLRjGx1V98dI,30779
293
- umap/static/umap/locale/fr.json,sha256=h5KxcpkAZN5WFsdS5qEvdsX26kVLhlsnA5eAbJRCp-c,30714
284
+ umap/static/umap/locale/fi.json,sha256=kKWkm-DmIUQLIM3xKoj1mmCWlrt2CB8TDCq0hqX-AH8,29120
285
+ umap/static/umap/locale/fr.js,sha256=abosQmwya8-kBbAPArKKS_UirvPdfQw9CKmWsnQwbGs,30852
286
+ umap/static/umap/locale/fr.json,sha256=zAlVzZ_eXLysEs56A9qeGWDZVqzkqUREg-x9HZDPT6A,30889
294
287
  umap/static/umap/locale/gl.js,sha256=zF8UtVRHghXmEcDPkCrtgGedfXnAu8E-X0T-ZKilgeM,29588
295
- umap/static/umap/locale/gl.json,sha256=9Z-FgEGCeoR0lCEEeNfsLcpBrULEwI5EkMfvGp5ECG0,29523
288
+ umap/static/umap/locale/gl.json,sha256=C0hqhDS-Z9cHlsBOxZM9RRsr0gMWGorPBSVlBynTq-w,29669
296
289
  umap/static/umap/locale/he.js,sha256=OnRsbuDFhoj6FMnTTsx6wEHR-Eu6xgIRTfEow7rT7hs,31649
297
- umap/static/umap/locale/he.json,sha256=nheI2FGhrig5T8LDu6KcZEC6LHH6bU4678S4t9VCfG8,31584
290
+ umap/static/umap/locale/he.json,sha256=ToAARvko-mo0rzBNIVrP6nhMPfK51AhIWS9oM4iJlmE,31725
298
291
  umap/static/umap/locale/hr.js,sha256=FNKyfjNgj9Anp8JZ5mvBViXFYmNhJ3gtlpv7PBCPzrk,28316
299
- umap/static/umap/locale/hr.json,sha256=MA2qv9GIO_NZlOay-2Yrc1WwjOgJl4t8yH0eqVTDWw4,28251
292
+ umap/static/umap/locale/hr.json,sha256=nXhtZwLznBW-ND5ieXZ1Fwp02-tUG6C1R--qIEAmUf0,28403
300
293
  umap/static/umap/locale/hu.js,sha256=RHaeI73_KHd7RSMX1hsNRViuPO-7aNVKVypv1IFwKfY,31477
301
- umap/static/umap/locale/hu.json,sha256=FOtsKCoc_Hjk0coYFwEkUcaEx6tngN10B7nv89q6NHU,31412
294
+ umap/static/umap/locale/hu.json,sha256=uSZ57u1vPkKxrxbgsT7_IxSn9q9DzRLFbYlDEGpFK6s,31557
302
295
  umap/static/umap/locale/id.js,sha256=b7-TgCcdkQIN6G9uR--f_LQLsDP0Oeybiz4D6w4FESo,28145
303
- umap/static/umap/locale/id.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
296
+ umap/static/umap/locale/id.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
304
297
  umap/static/umap/locale/is.js,sha256=SBdyjNhx6CZty069gH2EbDcPFG6cUEYTF2p0tofondM,29474
305
- umap/static/umap/locale/is.json,sha256=J-hYH5Pd9F4UPx9R2FVKcZ1B_KYPwsInQU2anyXCzRE,29409
298
+ umap/static/umap/locale/is.json,sha256=XIg-B9QsMUdNXRXLVqNCA4bDIOJRMKD8YNo8zyPcUJY,29559
306
299
  umap/static/umap/locale/it.js,sha256=0f1f-7231q_hUCjqJZG9R9jUL0isH-QCLnH04TmoV1Q,30440
307
- umap/static/umap/locale/it.json,sha256=ysH_wcHKfs7tO8KwBPfx5ugy55SAcfGzFUpRnA9Gkv0,30375
300
+ umap/static/umap/locale/it.json,sha256=3hv8ZRrRZbKHQZukAKPk_7JGDtlR2j4DlPJmqut7Ox4,30523
308
301
  umap/static/umap/locale/ja.js,sha256=g6YmVDqjrSn7lRLoFla73ITagkQS6b_6m7HSCMjGCpA,30664
309
- umap/static/umap/locale/ja.json,sha256=gNru3FY0uKkkBm2ZJ8oUg1D4drw3SC7JpIBZj3R0ykw,30599
302
+ umap/static/umap/locale/ja.json,sha256=HTykwNZCyEy3gxK1fv9mny_JJ8u_Axe0xyL0i5AT3ig,30738
310
303
  umap/static/umap/locale/ko.js,sha256=Td1Lwk9siV0RvD7PBfczFAIgEc3CdP2bVDpj3zVDQBA,28335
311
- umap/static/umap/locale/ko.json,sha256=BQxMnVRLv-IOMpB4YqXWkqgCwAiRTTZJVppyvMeYzJQ,28270
304
+ umap/static/umap/locale/ko.json,sha256=tunyepuhB8qEYf5mNIUQKMYPwRd95KQ_wrotme2L3Sw,28422
312
305
  umap/static/umap/locale/lt.js,sha256=NYvt-UW02ZhCCo49CFTIVX2tebm0Iab8hQ0HS6jf09Q,28962
313
- umap/static/umap/locale/lt.json,sha256=keCQcrD03gfetPbLXwtozqN80b5l7b5RsuRoqgRiglg,28897
306
+ umap/static/umap/locale/lt.json,sha256=hgsQQb9B7Mso2nby1NSgpxchnZGz1YgKFmvffiChBLo,29049
314
307
  umap/static/umap/locale/ms.js,sha256=qCQAO0U5O4lYbYa_K7CkHXeS82juKIwPrAHJZPN9Nf0,29323
315
- umap/static/umap/locale/ms.json,sha256=9GOXSR47oe2Vi3IHIZ1HcSFugNRskQu80CvJ91dxaSU,29258
308
+ umap/static/umap/locale/ms.json,sha256=VVoTO5weJf73JEJkRjdYBkk_wspxWLo8W_Bc4KH_Djo,29408
316
309
  umap/static/umap/locale/nl.js,sha256=K4MC5PO6KuTuh1F3VAp4KYtfsLNiT9vZqA_HspfIWWI,29774
317
- umap/static/umap/locale/nl.json,sha256=AMA0h5qa0fwFki688coAxSEM_GY-ZnDe8DZ-Thv-aF0,29709
310
+ umap/static/umap/locale/nl.json,sha256=YraZkHau0ZAc1kN20bWjWmLBW93Cm22zkbHlW3nvMkM,29858
318
311
  umap/static/umap/locale/no.js,sha256=1XJQtgNyl0DSAWgIMFl5a8ZbB9oui8IXMCow8b9mMoE,28362
319
- umap/static/umap/locale/no.json,sha256=tcmQYo64or9X0iKEo96bIZ_Iv9QTGpG3f0mcSK9z7Ig,28297
312
+ umap/static/umap/locale/no.json,sha256=lVfTCHnhJY0LMNeeH71ATvOE1JvA_iTCBbaN5Xh--YU,28452
320
313
  umap/static/umap/locale/pl.js,sha256=B6fYRZKeBOG9UujBVBSREhy_vii5JcAuHADUOjVSuWs,29825
321
- umap/static/umap/locale/pl.json,sha256=8WnN7sb-ARh1sftrl7rzkymrWgbGq3ldcwvNfokLyds,29760
322
- umap/static/umap/locale/pl_PL.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
323
- umap/static/umap/locale/pt.js,sha256=NEp13tgvZvhEy2GXWOMIv0inBvSe1pFIHvkJ1SHk0ho,30457
324
- umap/static/umap/locale/pt.json,sha256=XZPKwYu5TdrM5_5bwWmVbQYXlwVE-pYBjb8eIam3QpE,30392
314
+ umap/static/umap/locale/pl.json,sha256=o9NoE3bazNZV-RN8eWeLc7L8gdNyutJJRGBjdm_V3mQ,29906
315
+ umap/static/umap/locale/pl_PL.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
316
+ umap/static/umap/locale/pt.js,sha256=xgmzOTY7SL8vBRhwdA8s1J18BEMEkIuM6cFhLRqNkpw,30851
317
+ umap/static/umap/locale/pt.json,sha256=6l1DXKAy-2n4rqH50scypSI_5wpn7TT82s8l4iWpyOw,30864
325
318
  umap/static/umap/locale/pt_BR.js,sha256=Zjs7uMwFruBdDniMtsN-QMVz1_grjpYD2yHHn1sSiGY,29563
326
- umap/static/umap/locale/pt_BR.json,sha256=DsdC2oW7KZH02dqf1Yhl8VyrxPCyNsImz4jpMBj8tPw,29492
319
+ umap/static/umap/locale/pt_BR.json,sha256=9l0pyQfGCXQn204fq9MpuBvNWpRq27x0v7LA7yohExU,29636
327
320
  umap/static/umap/locale/pt_PT.js,sha256=aOPtOSAFKg3A0Xxlr0dKDixqCi_p2tAMBGb2nedFdok,29581
328
- umap/static/umap/locale/pt_PT.json,sha256=NJ6RPNEdr51-Lod_AAuAYZjj-ClSGzfG7nFdnuCoNTw,29510
321
+ umap/static/umap/locale/pt_PT.json,sha256=emZooB3Sept8c6RW9T1YVbf6xtVBjjAG2uunZU2Nyl0,29654
329
322
  umap/static/umap/locale/ro.js,sha256=KVqGVraY6t0x6gv-OB44nxaPlXxcG9cR4A9_TvrpBro,28174
330
- umap/static/umap/locale/ro.json,sha256=OkOdi32inl-YBUaaGEJDCLOi5VhH-8mszLJhAf2GcC8,28109
323
+ umap/static/umap/locale/ro.json,sha256=YhKayLPBj8HlK7oXMLl2l8IuTi3Z4jxQroHMU86Ml_Q,28261
331
324
  umap/static/umap/locale/ru.js,sha256=hb79RRxZTJ-PiRBrQH8FqzO8tSHSYoDA9HOrBlmFpcs,35533
332
- umap/static/umap/locale/ru.json,sha256=v0-EVlEehgCdMBIx7O_rxdUTnwTAhi2h_D0iDxXxJow,35468
325
+ umap/static/umap/locale/ru.json,sha256=TO4s-Xp-0qCggZFxwO3bZ-3Zm5pE2GNITSyvucHxYYE,35607
333
326
  umap/static/umap/locale/si.js,sha256=4lhsYFhfg2hZMZn0GZkX4YXY-A55WAs9xYJHPpyYuxs,28492
334
327
  umap/static/umap/locale/si.json,sha256=cQk9X-el9PK66gQUCpFzZe09BCu_XCHESXpNaQTDLF8,28427
335
328
  umap/static/umap/locale/sk_SK.js,sha256=Df1EAFST05CaAh0ciVgGHOFzGBNy401VPze9OogHa7s,29447
336
- umap/static/umap/locale/sk_SK.json,sha256=SrD4Z_xDPPynimcp99e_2yzecKOBFD7GgbONtyEeVqg,29376
329
+ umap/static/umap/locale/sk_SK.json,sha256=qtPPwn1Cf-ftmkTqY3KvFwNvs-QTnpBTKNoDCiNkOQI,29522
337
330
  umap/static/umap/locale/sl.js,sha256=ijbgMz5HEQb-9aKQvrE794vLSUUAX_6N422pvbH2D-0,29317
338
- umap/static/umap/locale/sl.json,sha256=ew2qBHqDGVkuFHLpvrH4J5A-VkGX-YSj1lDNHLggmgE,29252
331
+ umap/static/umap/locale/sl.json,sha256=7gGHkhrs79dlkFWUcDpm7lTdOdNgQN7s5ddahAG40pg,29402
339
332
  umap/static/umap/locale/sr.js,sha256=3xbGgwX23ocUQTdtaHywDzHo-qy-xCjjnkDeGYPkSPs,32261
340
- umap/static/umap/locale/sr.json,sha256=zIkBk02HLAgEi2uAqLbuxToq8uoGPFGWVVlAmSgYJvg,32196
333
+ umap/static/umap/locale/sr.json,sha256=hivKWTRSz1VQwOrTiWc4nRYHft_Dc6G25Q_EMXG6RjI,32333
341
334
  umap/static/umap/locale/sv.js,sha256=ITw1s5HVm1md90-lt-NuvEXEiqFgX0LxWvT8vmbJFZk,29209
342
- umap/static/umap/locale/sv.json,sha256=3jQXJXJ1R4VEo76TYDEgbIBtdggiEDaMa01xlKIKYZ8,29144
335
+ umap/static/umap/locale/sv.json,sha256=RFfGp6OrOzX-bJBauEKdAX243PwDuUvCjux8nFSLiJE,29296
343
336
  umap/static/umap/locale/th_TH.js,sha256=OWC2YRv625J495_Ypt3rEPq_4PxGdr9EsSd4hmQVbMU,28151
344
- umap/static/umap/locale/th_TH.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
337
+ umap/static/umap/locale/th_TH.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
345
338
  umap/static/umap/locale/tr.js,sha256=YtP7-hQLx3E56QXIRDBqUit-HGjI3gaD8CFFRJL625Q,29749
346
- umap/static/umap/locale/tr.json,sha256=c1I8eAfWMw0IjU6ZmCqi-M2a8fPiseT_dqigewF2wbo,29684
339
+ umap/static/umap/locale/tr.json,sha256=LV1LJykNnLLcXIY3S-LNhXHvXG82RU-jVsgxVl8kEeU,29830
347
340
  umap/static/umap/locale/uk_UA.js,sha256=C-g5j2st7GJhfSzXobIUtBCoAjgiBmDqS8g3De0N9Sk,35177
348
- umap/static/umap/locale/uk_UA.json,sha256=3lS6zwYlW_taixgkPGnZi-IUQ8BCUEp8uCXuaJfPYIQ,35106
341
+ umap/static/umap/locale/uk_UA.json,sha256=EFxT46u1_zMdvjuS8FzLhy-Mhb_AjtykWtbmGG9gOlM,35243
349
342
  umap/static/umap/locale/vi.js,sha256=nlL3QCyPpAHQ9U43WpfSW4kmE-SHnd01ufZj5dfl2Yw,28425
350
- umap/static/umap/locale/vi.json,sha256=bl4rvMIO-lxNmVRlWtBOpDTaMaS3curU-Ak-_3_3rJA,28360
351
- umap/static/umap/locale/vi_VN.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
343
+ umap/static/umap/locale/vi.json,sha256=c6v57eQz2TmQzpI41MPS5LjS9oPB7h8Ti_R0dQ6TRms,28512
344
+ umap/static/umap/locale/vi_VN.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
352
345
  umap/static/umap/locale/zh.js,sha256=XaLcn2PLf7HNYRAUq_-8Z1j4GfK8596GUCLoJxOCiHc,27835
353
- umap/static/umap/locale/zh.json,sha256=6CpMyBSXh_70hC6eQvGMCSZZ5cYuvp01FGuWTJVjndE,27770
354
- umap/static/umap/locale/zh_CN.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
355
- umap/static/umap/locale/zh_TW.Big5.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
346
+ umap/static/umap/locale/zh.json,sha256=4sb0cf0kYAIs9c23zAUgsf-tVegLxclp8sxilI3tjHw,27922
347
+ umap/static/umap/locale/zh_CN.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
348
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=gW0NCqPwJiZy01FNdIs-psCyRiXmw-9nHNCQkVtOen0,28232
356
349
  umap/static/umap/locale/zh_TW.js,sha256=R_lHLunXy0kbkD8gvs6G8XEpN26W0fT77YtGruBaAW4,27785
357
- umap/static/umap/locale/zh_TW.json,sha256=_x9ughe0z-dZwUOyeQgoZmHEcVdJjzlhntYvWBfGEec,27714
350
+ umap/static/umap/locale/zh_TW.json,sha256=Y284GS7-uFaFHNKLnB2UHK2_k8SFD1sqH408JxFm6L8,27865
358
351
  umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
359
352
  umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
360
353
  umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
@@ -368,7 +361,7 @@ umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg
368
361
  umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
369
362
  umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
370
363
  umap/static/umap/unittests/sync.js,sha256=A5JyhiEMSzjWqWtubyDcLfcthsFLvfUuKKn1Lcv0ZnA,3098
371
- umap/static/umap/unittests/utils.js,sha256=gd_9iUEW_sVxnZKhfzgAQ9TvRqkKbiSxjVY4ZtTXJ54,21850
364
+ umap/static/umap/unittests/utils.js,sha256=C-576wKC4Eb-bwHjUto_UvOMdu3EzyE5LyRipc3ru2o,21850
372
365
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
373
366
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
374
367
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
@@ -472,7 +465,6 @@ umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl
472
465
  umap/templates/umap/components/alerts/alert.html,sha256=HeOVES74qAHE_dV00cMP5w4DNw4qLgTOksS8dsCJkiM,3064
473
466
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
467
  umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
475
- umap/tests/.DS_Store,sha256=1XzuPE00K75AO_2mNxKwuv3D4oPx0c9L2CQc5cfE-d8,6148
476
468
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
469
  umap/tests/base.py,sha256=gZlVLqyRY5eICH8oPAz3c8vWHhTOdbLMvEXME8sTdAw,4345
478
470
  umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
@@ -485,7 +477,7 @@ umap/tests/test_map_views.py,sha256=w3YG5ExH_fw18402bdR3hKxRl3DpAeCs8oy8RYee05o,
485
477
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
486
478
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
487
479
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
488
- umap/tests/test_views.py,sha256=dlgy_wXVhFv_I979XZmlkR99VRmHI1BEDpYKc7nT6i0,16348
480
+ umap/tests/test_views.py,sha256=jMGziFGM8tvQLElmTdti_zxutSOynEQ3knrMtVgZIUA,16366
489
481
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
490
482
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
491
483
  umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
@@ -499,12 +491,11 @@ umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVep
499
491
  umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
500
492
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
501
493
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
502
- umap/tests/integration/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
503
494
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
504
495
  umap/tests/integration/conftest.py,sha256=QQuhq7Z2lZlJFJN5qMRWINu1qfUOQPOfgx5dLYX-5zY,1984
505
496
  umap/tests/integration/test_anonymous_owned_map.py,sha256=v3_qXx3_YhDzr0N8fNfeZwepPGpJ_yZrKwX5LpLFf5Q,9457
506
497
  umap/tests/integration/test_basics.py,sha256=dOb5zZ4YNJlkJc6rVt5HIrf4nmy0Bxw5S0Nn94Yi1Qo,2616
507
- umap/tests/integration/test_browser.py,sha256=w2_tajwKxxqrbjTBOAjg3Mfc8BqdIGrXSK9armu1d8c,13655
498
+ umap/tests/integration/test_browser.py,sha256=Xpen79k4OoYY6kgfdZ0PtjmD1-sREdVr2kL69PXbCu4,16911
508
499
  umap/tests/integration/test_caption.py,sha256=CRZHNwRHuSPIz33F2kpL85bacQQ0cFXDu12IB1rIskc,1016
509
500
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
510
501
  umap/tests/integration/test_conditional_rules.py,sha256=zvLMzy15JrBRIrhUvRMAB1KKmI3Zdb-CYFs9Dn5v-bE,7330
@@ -515,14 +506,14 @@ umap/tests/integration/test_draw_polyline.py,sha256=Cg_lmRLTNPMk1CJBvVJEXww_wQmm
515
506
  umap/tests/integration/test_edit_datalayer.py,sha256=uLIyBQ8CbjowoJjvu4us8UJcjFWcDX4Z_t7o2XHEjVY,9431
516
507
  umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
517
508
  umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
518
- umap/tests/integration/test_edit_polygon.py,sha256=v6NaNtZLagP7A4M2I-jUF5qpy4XA67WUwPtKBjKZnA0,4782
509
+ umap/tests/integration/test_edit_polygon.py,sha256=PPUiQ0oka41t_nxIDfXRxPZMXtIGT8fFiB8oZ-If4h0,5274
519
510
  umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
520
511
  umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
521
512
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
522
513
  umap/tests/integration/test_import.py,sha256=f9DlqGX2_wCWrk0KRM79XrLJDF4vL7xAzRpbfZtfQtI,23675
523
- umap/tests/integration/test_map.py,sha256=YvguclU6SFNDxbxio9lm8Jz4iXWDV9Ox43_ets4qbiA,7661
514
+ umap/tests/integration/test_map.py,sha256=WH_vNCsFTnfEKNyt9OHfpXa3BMS1fh1cqvSLSb_Nxtk,8726
524
515
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
525
- umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
516
+ umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
526
517
  umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
527
518
  umap/tests/integration/test_owned_map.py,sha256=7R_CwndXw_ZSg2mQDvLjnskL6t_iQE0ENOC676WL5x0,9885
528
519
  umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
@@ -533,12 +524,12 @@ umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTA
533
524
  umap/tests/integration/test_statics.py,sha256=BuScxhKTXclLzKEZYTatzPnh9rKrY2FsqgdT3vVLwqc,1521
534
525
  umap/tests/integration/test_tableeditor.py,sha256=C4C5qj6b77XSNso7B634r0uaIzpO6Gkos7il6VGiSd8,1058
535
526
  umap/tests/integration/test_tilelayer.py,sha256=nQIhU3GIxxCXrelNWgSsm4iT3Su52rW8ENWtKfiqjWk,4607
536
- umap/tests/integration/test_view_marker.py,sha256=Y45rDzhScKsHz7_JgK46tRd29qrBLxndFLAk8pjHnJs,2843
527
+ umap/tests/integration/test_view_marker.py,sha256=PPuG93hSN33qjSOnHg8ls0XucsuGl89t49JqwLusJLE,2918
537
528
  umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
538
529
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
539
530
  umap/tests/integration/test_websocket_sync.py,sha256=r2qlo7KUdPbX58gMJDNg-C1ZuDNSNT105wOUA6GJRMI,10487
540
- umap_project-2.4.0b2.dist-info/METADATA,sha256=x-P2B8q5dhqqhGhJ1ze6cSTQ1K5_5pca1E434C6XL5U,2682
541
- umap_project-2.4.0b2.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
542
- umap_project-2.4.0b2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
543
- umap_project-2.4.0b2.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
544
- umap_project-2.4.0b2.dist-info/RECORD,,
531
+ umap_project-2.4.2.dist-info/METADATA,sha256=a_M1VJuM8mVqUA9I3Qq5tiSdX8exMo0OgxBbGpbF1-o,2681
532
+ umap_project-2.4.2.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
533
+ umap_project-2.4.2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
534
+ umap_project-2.4.2.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
535
+ umap_project-2.4.2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.18.0
2
+ Generator: hatchling 1.24.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
umap/.DS_Store DELETED
Binary file
umap/static/.DS_Store DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
umap/tests/.DS_Store DELETED
Binary file
Binary file