umap-project 2.9.3__py3-none-any.whl → 3.0.1__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 (217) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +128 -52
  7. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/fr/LC_MESSAGES/django.po +128 -52
  9. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  11. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/is/LC_MESSAGES/django.po +296 -175
  13. umap/migrations/0027_map_tags.py +23 -0
  14. umap/models.py +13 -2
  15. umap/settings/base.py +23 -5
  16. umap/static/umap/base.css +41 -8
  17. umap/static/umap/content.css +72 -37
  18. umap/static/umap/css/bar.css +43 -21
  19. umap/static/umap/css/dialog.css +4 -1
  20. umap/static/umap/css/form.css +40 -27
  21. umap/static/umap/css/icon.css +11 -1
  22. umap/static/umap/css/importers.css +7 -0
  23. umap/static/umap/img/16-white.svg +23 -2
  24. umap/static/umap/img/16.svg +1 -1
  25. umap/static/umap/img/24.svg +4 -4
  26. umap/static/umap/img/home.svg +7 -0
  27. umap/static/umap/img/importers/banfr.svg +1 -0
  28. umap/static/umap/img/marker.svg +2 -5
  29. umap/static/umap/img/source/16-white.svg +24 -3
  30. umap/static/umap/img/source/16.svg +1 -1
  31. umap/static/umap/img/source/24.svg +5 -5
  32. umap/static/umap/img/target.svg +1 -0
  33. umap/static/umap/js/components/alerts/alert.js +0 -1
  34. umap/static/umap/js/modules/browser.js +4 -4
  35. umap/static/umap/js/modules/caption.js +1 -1
  36. umap/static/umap/js/modules/data/features.js +25 -25
  37. umap/static/umap/js/modules/data/layer.js +91 -97
  38. umap/static/umap/js/modules/facets.js +9 -5
  39. umap/static/umap/js/modules/form/builder.js +19 -27
  40. umap/static/umap/js/modules/form/fields.js +40 -14
  41. umap/static/umap/js/modules/formatter.js +1 -1
  42. umap/static/umap/js/modules/global.js +9 -5
  43. umap/static/umap/js/modules/help.js +18 -5
  44. umap/static/umap/js/modules/importer.js +5 -2
  45. umap/static/umap/js/modules/importers/banfr.js +93 -0
  46. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  47. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  48. umap/static/umap/js/modules/permissions.js +20 -10
  49. umap/static/umap/js/modules/rendering/icon.js +15 -2
  50. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  51. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  52. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  53. umap/static/umap/js/modules/rendering/map.js +14 -6
  54. umap/static/umap/js/modules/rendering/popup.js +2 -2
  55. umap/static/umap/js/modules/rendering/template.js +3 -3
  56. umap/static/umap/js/modules/rendering/ui.js +17 -11
  57. umap/static/umap/js/modules/rules.js +13 -16
  58. umap/static/umap/js/modules/schema.js +23 -1
  59. umap/static/umap/js/modules/share.js +1 -1
  60. umap/static/umap/js/modules/slideshow.js +1 -0
  61. umap/static/umap/js/modules/sync/engine.js +141 -19
  62. umap/static/umap/js/modules/sync/undo.js +101 -0
  63. umap/static/umap/js/modules/sync/updaters.js +51 -28
  64. umap/static/umap/js/modules/tableeditor.js +1 -1
  65. umap/static/umap/js/modules/ui/bar.js +61 -21
  66. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  67. umap/static/umap/js/modules/umap.js +190 -176
  68. umap/static/umap/js/modules/utils.js +30 -4
  69. umap/static/umap/js/umap.controls.js +82 -38
  70. umap/static/umap/locale/am_ET.js +11 -6
  71. umap/static/umap/locale/am_ET.json +11 -6
  72. umap/static/umap/locale/ar.js +11 -6
  73. umap/static/umap/locale/ar.json +11 -6
  74. umap/static/umap/locale/ast.js +11 -6
  75. umap/static/umap/locale/ast.json +11 -6
  76. umap/static/umap/locale/bg.js +11 -6
  77. umap/static/umap/locale/bg.json +11 -6
  78. umap/static/umap/locale/br.js +12 -7
  79. umap/static/umap/locale/br.json +12 -7
  80. umap/static/umap/locale/ca.js +11 -6
  81. umap/static/umap/locale/ca.json +11 -6
  82. umap/static/umap/locale/cs_CZ.js +11 -6
  83. umap/static/umap/locale/cs_CZ.json +11 -6
  84. umap/static/umap/locale/da.js +11 -6
  85. umap/static/umap/locale/da.json +11 -6
  86. umap/static/umap/locale/de.js +47 -42
  87. umap/static/umap/locale/de.json +47 -42
  88. umap/static/umap/locale/el.js +11 -6
  89. umap/static/umap/locale/el.json +11 -6
  90. umap/static/umap/locale/en.js +11 -6
  91. umap/static/umap/locale/en.json +11 -6
  92. umap/static/umap/locale/en_US.json +11 -6
  93. umap/static/umap/locale/es.js +11 -6
  94. umap/static/umap/locale/es.json +11 -6
  95. umap/static/umap/locale/et.js +11 -6
  96. umap/static/umap/locale/et.json +11 -6
  97. umap/static/umap/locale/eu.js +11 -6
  98. umap/static/umap/locale/eu.json +11 -6
  99. umap/static/umap/locale/fa_IR.js +11 -6
  100. umap/static/umap/locale/fa_IR.json +11 -6
  101. umap/static/umap/locale/fi.js +11 -6
  102. umap/static/umap/locale/fi.json +11 -6
  103. umap/static/umap/locale/fr.js +11 -6
  104. umap/static/umap/locale/fr.json +11 -6
  105. umap/static/umap/locale/gl.js +12 -7
  106. umap/static/umap/locale/gl.json +12 -7
  107. umap/static/umap/locale/he.js +11 -6
  108. umap/static/umap/locale/he.json +11 -6
  109. umap/static/umap/locale/hr.js +11 -6
  110. umap/static/umap/locale/hr.json +11 -6
  111. umap/static/umap/locale/hu.js +25 -20
  112. umap/static/umap/locale/hu.json +25 -20
  113. umap/static/umap/locale/id.js +11 -6
  114. umap/static/umap/locale/id.json +11 -6
  115. umap/static/umap/locale/is.js +151 -146
  116. umap/static/umap/locale/is.json +151 -146
  117. umap/static/umap/locale/it.js +11 -6
  118. umap/static/umap/locale/it.json +11 -6
  119. umap/static/umap/locale/ja.js +11 -6
  120. umap/static/umap/locale/ja.json +11 -6
  121. umap/static/umap/locale/ko.js +11 -6
  122. umap/static/umap/locale/ko.json +11 -6
  123. umap/static/umap/locale/lt.js +11 -6
  124. umap/static/umap/locale/lt.json +11 -6
  125. umap/static/umap/locale/ms.js +11 -6
  126. umap/static/umap/locale/ms.json +11 -6
  127. umap/static/umap/locale/nl.js +12 -7
  128. umap/static/umap/locale/nl.json +12 -7
  129. umap/static/umap/locale/no.js +11 -6
  130. umap/static/umap/locale/no.json +11 -6
  131. umap/static/umap/locale/pl.js +11 -6
  132. umap/static/umap/locale/pl.json +11 -6
  133. umap/static/umap/locale/pl_PL.json +11 -6
  134. umap/static/umap/locale/pt.js +11 -6
  135. umap/static/umap/locale/pt.json +11 -6
  136. umap/static/umap/locale/pt_BR.js +11 -6
  137. umap/static/umap/locale/pt_BR.json +11 -6
  138. umap/static/umap/locale/pt_PT.js +11 -6
  139. umap/static/umap/locale/pt_PT.json +11 -6
  140. umap/static/umap/locale/ro.js +11 -6
  141. umap/static/umap/locale/ro.json +11 -6
  142. umap/static/umap/locale/ru.js +11 -6
  143. umap/static/umap/locale/ru.json +11 -6
  144. umap/static/umap/locale/sk_SK.js +11 -6
  145. umap/static/umap/locale/sk_SK.json +11 -6
  146. umap/static/umap/locale/sl.js +11 -6
  147. umap/static/umap/locale/sl.json +11 -6
  148. umap/static/umap/locale/sr.js +11 -6
  149. umap/static/umap/locale/sr.json +11 -6
  150. umap/static/umap/locale/sv.js +11 -6
  151. umap/static/umap/locale/sv.json +11 -6
  152. umap/static/umap/locale/th_TH.js +11 -6
  153. umap/static/umap/locale/th_TH.json +11 -6
  154. umap/static/umap/locale/tr.js +11 -6
  155. umap/static/umap/locale/tr.json +11 -6
  156. umap/static/umap/locale/uk_UA.js +11 -6
  157. umap/static/umap/locale/uk_UA.json +11 -6
  158. umap/static/umap/locale/vi.js +11 -6
  159. umap/static/umap/locale/vi.json +11 -6
  160. umap/static/umap/locale/vi_VN.json +11 -6
  161. umap/static/umap/locale/zh.js +11 -6
  162. umap/static/umap/locale/zh.json +11 -6
  163. umap/static/umap/locale/zh_CN.json +11 -6
  164. umap/static/umap/locale/zh_TW.Big5.json +11 -6
  165. umap/static/umap/locale/zh_TW.js +19 -14
  166. umap/static/umap/locale/zh_TW.json +19 -14
  167. umap/static/umap/map.css +58 -28
  168. umap/static/umap/unittests/sync.js +0 -57
  169. umap/static/umap/unittests/utils.js +47 -0
  170. umap/static/umap/vars.css +5 -2
  171. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  172. umap/sync/payloads.py +3 -2
  173. umap/templates/auth/user_detail.html +1 -1
  174. umap/templates/auth/user_stars.html +1 -1
  175. umap/templates/umap/content.html +17 -12
  176. umap/templates/umap/home.html +7 -5
  177. umap/templates/umap/map_fragment.html +1 -1
  178. umap/templates/umap/map_list.html +20 -13
  179. umap/templates/umap/search.html +7 -3
  180. umap/templates/umap/search_bar.html +13 -11
  181. umap/templates/umap/team_detail.html +1 -1
  182. umap/tests/base.py +2 -1
  183. umap/tests/fixtures/remote_data.umap +55 -0
  184. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  185. umap/tests/integration/test_browser.py +1 -3
  186. umap/tests/integration/test_conditional_rules.py +3 -0
  187. umap/tests/integration/test_edit_datalayer.py +2 -7
  188. umap/tests/integration/test_edit_map.py +15 -0
  189. umap/tests/integration/test_edit_polygon.py +1 -2
  190. umap/tests/integration/test_import.py +59 -2
  191. umap/tests/integration/test_optimistic_merge.py +4 -3
  192. umap/tests/integration/test_owned_map.py +0 -1
  193. umap/tests/integration/test_save.py +2 -4
  194. umap/tests/integration/test_undo_redo.py +267 -0
  195. umap/tests/integration/test_websocket_sync.py +78 -11
  196. umap/tests/settings.py +1 -3
  197. umap/tests/test_datalayer_s3.py +1 -0
  198. umap/tests/test_map_views.py +1 -0
  199. umap/tests/test_views.py +34 -0
  200. umap/utils.py +1 -1
  201. umap/views.py +23 -2
  202. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
  203. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
  204. umap/static/umap/js/modules/saving.js +0 -52
  205. umap/static/umap/test/.eslintrc +0 -21
  206. umap/static/umap/test/DataLayer.js +0 -463
  207. umap/static/umap/test/Feature.js +0 -131
  208. umap/static/umap/test/Map.js +0 -37
  209. umap/static/umap/test/Marker.js +0 -126
  210. umap/static/umap/test/Polygon.js +0 -111
  211. umap/static/umap/test/Polyline.js +0 -286
  212. umap/static/umap/test/Util.js +0 -28
  213. umap/static/umap/test/_pre.js +0 -455
  214. umap/static/umap/test/index.html +0 -139
  215. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
  216. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
  217. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,18 +1,18 @@
1
- umap/__init__.py,sha256=LgNxYyAire2ltjqyEi7k5PTGL83yuAiN-wnrzxaJdzI,18
1
+ umap/__init__.py,sha256=yK7aOUt_pFy8YQaEzXO6v5ZbKRSr9eAB9NpoD7gEyk4,18
2
2
  umap/admin.py,sha256=YlK4CgEWb2eFYRKiklsKouxeiQ8z_b-H2Fv2XCaiGFQ,3014
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/asgi.py,sha256=sJkGqDLgMoPkq2nMRyRE_Hz3ZLJm1X5lgXiQJu6rYt0,660
5
5
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
6
- umap/context_processors.py,sha256=sA-RVmsuMiM_HeFYw6K8xUMXnYqd_HwJTxsbCht9Da0,662
6
+ umap/context_processors.py,sha256=QIulvu2vevmyBk4CKPPSJK457FJmdoD3JdrvMnHnMHY,705
7
7
  umap/decorators.py,sha256=EEICH54p9swHIs_tuqt4FL-l749vk6P8AevlWFKn5zk,2477
8
8
  umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
9
- umap/forms.py,sha256=fonoSwA02LawR7kXbjEZCH0ZYi53fAbRHYgW2RaqeYw,3803
9
+ umap/forms.py,sha256=q34614Y6fn02xK269qsGXfJYpfUqFO4ArWXgoD68pX0,3756
10
10
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
11
11
  umap/middleware.py,sha256=-cCPlG43b8BSS9UDCW5rUSX-SvaG6lpGx_3Zm5QHa9M,1556
12
- umap/models.py,sha256=W4EQlZtIRFE8MSFEkYxxv31XzUCu2QciFQN3Du9QeLI,18982
12
+ umap/models.py,sha256=hyrrWrnmVDOY6asEROBQhSsewQEXt489GOXuKXROiW8,19469
13
13
  umap/urls.py,sha256=LA3zxyu-GDo8kVqdyU7_bdbDGhDJV8_yFW4oEPTXw4s,7559
14
- umap/utils.py,sha256=Lx8YxZm8UjhVWwmW7iPIegziPG36VWrwzDbhrX3X_Og,6380
15
- umap/views.py,sha256=Y1g-zx9s6KF_pAxDgwFIbY-o4CcFt5W-ZZlcbIVHieA,47149
14
+ umap/utils.py,sha256=WlTnzS2LUraYViSMsI2tf_0caq_yw_p8RLqpkjynf5E,6379
15
+ umap/views.py,sha256=qAxhI3DYP9dHsHCzvMq0z9bhRoC3phNlgs6L1x2Czgs,48065
16
16
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
17
17
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
18
18
  umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=ZF_hEGHnrIX6XZBVqmWR4xbE5D8Y6s1GS5sYOxnFQBY,5377
@@ -31,12 +31,12 @@ umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=Tf9qK83KD_26vH6yH8WizwmMx_fPQ6Z2W
31
31
  umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=5od7T8dd6rSSTM1AHj04trCM8-SF_fXFXWLJ9spgez0,20646
32
32
  umap/locale/da/LC_MESSAGES/django.mo,sha256=xChVPJcihv-OB016M6e9VEYm68mTfmQFN60tukD5H5U,5851
33
33
  umap/locale/da/LC_MESSAGES/django.po,sha256=tg9vL8x5ZG8tKN6YczUNSyIZDqb7z4F0GP_AVoTMO9g,16340
34
- umap/locale/de/LC_MESSAGES/django.mo,sha256=r696xeS-oKHEhzDiRvVjnXN6A7gr5ha1L189YDWPMGI,11970
35
- umap/locale/de/LC_MESSAGES/django.po,sha256=_BYgONnpBy-8A_ISpKfRXipU9OFQDoRZ1CsjNkxaNCg,18948
34
+ umap/locale/de/LC_MESSAGES/django.mo,sha256=A5kUyC-J7_zPueGqh6CujU2tn1hM4lXwCDi8Ru3pqEA,14073
35
+ umap/locale/de/LC_MESSAGES/django.po,sha256=0tb6RSxENd7VEhMcR37xw3CTBTl4vvj2HNS_r--Tk6M,22041
36
36
  umap/locale/el/LC_MESSAGES/django.mo,sha256=HQDIUXQJQBMQdZsagQLwNg_-obAgWlXjGo3Fm-4nOyQ,18164
37
37
  umap/locale/el/LC_MESSAGES/django.po,sha256=O4EJCt2ftu_4MLE5BXa3BjSMXBVj4x17liuP4G_wxao,25189
38
38
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
39
- umap/locale/en/LC_MESSAGES/django.po,sha256=iC6yvZYRi7Ry4AzjVoli7DSPOZUVJs4xqeX_lNoufLo,15097
39
+ umap/locale/en/LC_MESSAGES/django.po,sha256=7lQm96kH5MSDnQ3EPd8AJYSm1vvgKqvkZoHZaSWOLWo,16148
40
40
  umap/locale/es/LC_MESSAGES/django.mo,sha256=Sa2idM_a_3YTpGb2O6-bpAHzFuhopDC3x4Dul-Zbj7I,13428
41
41
  umap/locale/es/LC_MESSAGES/django.po,sha256=YVmhORb2o4Zi8nkKs8zeofCLllptQkOiGScJvsTVyTM,20703
42
42
  umap/locale/et/LC_MESSAGES/django.mo,sha256=e1Vc1BCFkXui1HH9Olrf02GOp9EgPRrMMB8CDM3xpBo,8664
@@ -47,20 +47,20 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=HU5l77iM_X3iMclmleDH41FHwKFKTFocr
47
47
  umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=u2KHiTbM_CnqrVP9vNKYkbHeSYLR5VWj5SZv-B8fZo8,20925
48
48
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=O9foYGhfFTBjBb4Y9abWjOiZNpWtO-315nyHUaiJETM,4779
49
49
  umap/locale/fi/LC_MESSAGES/django.po,sha256=5kG9XujFNllOh_wuakGmAHeMy9vqNWFLf9SSrMTaWlk,15709
50
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=pWhhaJmmxopAMKy1hj9dyWNI4KhnlvQ0TQxo9LDqmbs,14115
51
- umap/locale/fr/LC_MESSAGES/django.po,sha256=MmGuQafg2xdXDY726oZwKmAkHQuin5crxgCV0HUvcsQ,21240
50
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=4cnvvzTgj9z-70o6RPltRHFFXCmrbkk_e6eCg4Q1ngI,14969
51
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=Q8S2XyMs4GYX32_lfaXHQBG_3VNuAqOLLcfnEcVlncM,22500
52
52
  umap/locale/gl/LC_MESSAGES/django.mo,sha256=i-or8X3SnF25bdD-K1s97XwlyjKlTIpFH3DXSfQZzKs,13398
53
53
  umap/locale/gl/LC_MESSAGES/django.po,sha256=hnXAN8uEyRV_iCJimNGwDPhyFlH0sFL_QwEKhe9RdOc,20317
54
54
  umap/locale/he/LC_MESSAGES/django.mo,sha256=A6pkjaL4HQ7lyfvXcGIxle61RXdo7Byq3mfK2FIrSnc,6640
55
55
  umap/locale/he/LC_MESSAGES/django.po,sha256=LpR1smtpQWi6w_YNiZjEx0hrHc7uVYQnQEPK_1vcY5g,16975
56
56
  umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
57
57
  umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
58
- umap/locale/hu/LC_MESSAGES/django.mo,sha256=V7bgjgf3mK8VRb9iJSU__vHUcEMK_Xo9x_NRCfqRtQk,13577
59
- umap/locale/hu/LC_MESSAGES/django.po,sha256=HYE5SPkhXJ9T9zjzGtAH8knpgMM0DUoje96pxXBNT6Y,19711
58
+ umap/locale/hu/LC_MESSAGES/django.mo,sha256=e6mEWkEyvK6K39ezlk9IOx1cWxCyDLvCJSPwB7-OwBw,14673
59
+ umap/locale/hu/LC_MESSAGES/django.po,sha256=GSeRorHt1RL_pabprxP-rCzxmvHt1KDPZ9d83Rp8Tl0,22379
60
60
  umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
61
61
  umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
62
- umap/locale/is/LC_MESSAGES/django.mo,sha256=H__xplVOoU_iImgWCni7lEyZC5ZiZVgxg77oyFOKBQo,6330
63
- umap/locale/is/LC_MESSAGES/django.po,sha256=Kdq2TVybTBQwW4Ms76fjqHnHJxokkRukb_J7q89RMs8,16648
62
+ umap/locale/is/LC_MESSAGES/django.mo,sha256=423K77HN4SONa8axLavzPQF3s3aFsPmOnBbIe6EZUuk,14398
63
+ umap/locale/is/LC_MESSAGES/django.po,sha256=Y9eqaw82dMykEh3w92T8M2NzUvywlPUH5wMBvajTxVI,22040
64
64
  umap/locale/it/LC_MESSAGES/django.mo,sha256=x4NpUfmC1hUTqcDAT7Ppo1Wuw1kE4LpaRiGr6pSsbZ8,13258
65
65
  umap/locale/it/LC_MESSAGES/django.po,sha256=HJt4fOZWcxCHo1Nx_bXdV8FgoAPAQycPoV9kKzQfEOA,20747
66
66
  umap/locale/ja/LC_MESSAGES/django.mo,sha256=zsTOx7DEn9r67Az293pOmtM3Hd8nFK53-TNZH1W6498,6369
@@ -143,25 +143,26 @@ umap/migrations/0023_alter_datalayer_uuid.py,sha256=L5We6QyIByVQA_hj_komQeGE9vOW
143
143
  umap/migrations/0024_alter_map_share_status.py,sha256=QRjERy2XN0jsc8MM5cCba5freqpQrOfd8NpTijZHCDo,825
144
144
  umap/migrations/0025_alter_datalayer_geojson.py,sha256=958v9AkpkAR5Q78ZcHC0fgZzN05BdfQwtNvUuPmWEvI,563
145
145
  umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py,sha256=TnFCUYKwj6rhHziCr5hyx7FDEzdA0235NR3_LAzKTwU,696
146
+ umap/migrations/0027_map_tags.py,sha256=zAJzbZkB5Lsp1zczqVbRU2zLwMRfBQzvrDR6G37sKZM,610
146
147
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
148
  umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
148
- umap/settings/base.py,sha256=uwv6M2EKBjYQkUffEvM8JrX_gQH4lR2SLq69nqt8g0E,11157
149
+ umap/settings/base.py,sha256=Bk_8B7WUsD2yfB5IwgH1ZyvTyuSxTBYht0A06_t2RS0,11702
149
150
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
150
151
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
151
152
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
- umap/static/umap/base.css,sha256=OBxemvrzouItBjL54ujJbBdPftbFGenBn9D3-AT0sOU,3841
153
- umap/static/umap/content.css,sha256=lStyIDC-09jWhgRinU1umOnI9xUJv4v3IPvt_XI0qLs,11275
153
+ umap/static/umap/base.css,sha256=ygt9jxzgBN1iJ1VNHX-p26xksvUN-JUHs_68IdO6nCk,5040
154
+ umap/static/umap/content.css,sha256=ToEEtcXLiu0RFSZtivVKWIg7H7AFPZdHG8FioDelsRA,12030
154
155
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
155
- umap/static/umap/map.css,sha256=yf8Dz1oEy4U0ihJONDMLhIfyr4F5MKJSBRtl2ncc_2M,23817
156
+ umap/static/umap/map.css,sha256=zx69Pti1E0UXB9oquE0u3B2QBTkAFGYNl41Wo6dEIns,24736
156
157
  umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
157
158
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
158
- umap/static/umap/vars.css,sha256=PIceJQySwnjezplK6URIfw_qrz82cLMeRS7Dck0OzSY,1924
159
- umap/static/umap/css/bar.css,sha256=_eKW2Rpqi6A1BD5Tp_LXq4ntCPl-NUM657SE7RFu5TQ,5696
159
+ umap/static/umap/vars.css,sha256=Ngo6NRyvIL3T8KyyWZWD1hfcd7dkytbaQm4gDNhDxfU,2024
160
+ umap/static/umap/css/bar.css,sha256=IbpN1z9wbzn8AjiRBRCx9zZniL7HAOdnwVkRf9jfycw,6196
160
161
  umap/static/umap/css/contextmenu.css,sha256=etLtnZXVxJTkmggr05vcfStOw4Gu9DDDTMUh0PKw2Mg,752
161
- umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
162
- umap/static/umap/css/form.css,sha256=gTJDAXuwrOlnWjBGTVSjuOh_QMGHjYjIXzM02QXkQsU,13578
163
- umap/static/umap/css/icon.css,sha256=Zzk8lXeTPkNILFffkfKG2keL09AfsoCvTAvlh6U2Ofk,5483
164
- umap/static/umap/css/importers.css,sha256=iS3krkVPpqUQlPNQXSyByyho7rHBzxYqm04bPyKo_qY,1455
162
+ umap/static/umap/css/dialog.css,sha256=BNHxSqzrUTpcEwDlLDn5I8En-uoB7cR94zkr4PvsQPY,952
163
+ umap/static/umap/css/form.css,sha256=PDQgpLuZuxRwOpOKjjRlpE2IxNXJFz-v8p24uOOtrAI,13872
164
+ umap/static/umap/css/icon.css,sha256=YnbUenRybN938ErnZyNX0iDpsNYqqtsXpGSOfwxzq3E,5755
165
+ umap/static/umap/css/importers.css,sha256=xSpvBPy6s4ZGFW6c34sOaSCxO5JvBk_51enBSDR0dZY,1651
165
166
  umap/static/umap/css/panel.css,sha256=YCtDmZdWwrGZmOz7FA4WYKD323vlsuRxQp71-hq_pc0,4204
166
167
  umap/static/umap/css/popup.css,sha256=arW0Yfisk5EUnT7-uSZEIw4IYZxF2uMJkiOtqyEmcIE,2400
167
168
  umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
@@ -179,14 +180,15 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
179
180
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
180
181
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
181
182
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
182
- umap/static/umap/img/16-white.svg,sha256=EvhElKyZHA4pXs3YWRPiWDeZJ-EeXtFCFaRv5HpfAEA,43882
183
- umap/static/umap/img/16.svg,sha256=3ZjzHxl4hfx_CcV4TxeV_a-Aacx3EFXHK7jHYSlmJ1g,25071
183
+ umap/static/umap/img/16-white.svg,sha256=u2YiEV7A2gpMNCYnthIlQWLuThn5pu5HZb3tMSx4UpA,46954
184
+ umap/static/umap/img/16.svg,sha256=JTxZxEbX96_9zzZqvMgq8ZnZp1P-mOcov-6MVMyJAPM,28189
184
185
  umap/static/umap/img/24-white.svg,sha256=HEqXQg5wuSSXyzMj9MzYKrB7hwVqLhL1WLy7aeRikQw,19491
185
- umap/static/umap/img/24.svg,sha256=jT7F_iYMFLM7HzTJQ7fdmb4dTeck81k9Wrli0vEvcAk,27309
186
+ umap/static/umap/img/24.svg,sha256=rfL7aQJWLwQ3roo3ZPICeHr_TeJNbt6seXvH0Ga0k8U,27344
186
187
  umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
187
188
  umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
188
189
  umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
189
190
  umap/static/umap/img/edit.svg,sha256=I3YHkH3X6CQP0TkoKev-9yQD-DeKobDl6MN-bAH2ghs,554
191
+ umap/static/umap/img/home.svg,sha256=xr7Qb3pIqOF-pR2eYv4ugFGuBwPS1KDKZGT3W6ojZcM,2017
190
192
  umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
191
193
  umap/static/umap/img/icon-delete.svg,sha256=ORwww_L88Co87ImlpKw4hj1DYG8KMbj2l5q6lxToRNg,386
192
194
  umap/static/umap/img/icon-download.svg,sha256=-KLOn9NCIQka-tZOCbvOoA4Io7tJIi1lEdeFAmmnsrM,554
@@ -200,10 +202,12 @@ umap/static/umap/img/logo_filigree.png,sha256=Io-aPHqkEZi5z_WM-XialFGSHn7U6Oxwqb
200
202
  umap/static/umap/img/logo_lightcyan.svg,sha256=lM1N90ZdBjkvqYo9VnM6nxas_j4SEjJzbCqdU9zu5Ls,302
201
203
  umap/static/umap/img/logo_small.svg,sha256=Pk-yvvP5j1bcj3TY-k-SzvK1KBuXVBtsJEGSsPQvFPA,2465
202
204
  umap/static/umap/img/marker.png,sha256=0DYKyg5h8swIh80zYGOXcjP3QwFthMeHIO4AJv5V3VE,375
203
- umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-uo,1032
205
+ umap/static/umap/img/marker.svg,sha256=uXQnukhS-yHggwnatPDdmuW0-tYXOTJkZpQWzclvFuA,199
204
206
  umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
205
207
  umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
206
208
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
209
+ umap/static/umap/img/target.svg,sha256=Ks0dmaJgh8UtM6TfMjh3mG5eAbtIp_j8UnblS1UYSDM,1467
210
+ umap/static/umap/img/importers/banfr.svg,sha256=xxvUJFrxGMnUqFWa7E5ii5_b17csA3Ys6fVybN6pFo0,2965
207
211
  umap/static/umap/img/importers/cadastrefr.svg,sha256=L55Jy0rkP2rpfuzuw8iYQ7lmUPMwOW4rJ4BfEeap50Y,3084
208
212
  umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
209
213
  umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
@@ -217,181 +221,172 @@ umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK
217
221
  umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
218
222
  umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
219
223
  umap/static/umap/img/providers/twitter-oauth2.png,sha256=9sCQYpLXTK40nvQmwEWd325XgBPq-Wt2JGu59GJDRfs,1589
220
- umap/static/umap/img/source/16-white.svg,sha256=sEiE7x9tCxadTVu7kuE5kqkqMInX9VM-ZOm5EUXp4Uo,76653
221
- umap/static/umap/img/source/16.svg,sha256=W4iTwK-p97D7UqF4mxAjpVMwkIUs0hVqrqoh4wDMaZA,45936
224
+ umap/static/umap/img/source/16-white.svg,sha256=Ogo9QvwvvbB67K6yeegjpk_i03bqJb-ern8r3zyKpNY,81349
225
+ umap/static/umap/img/source/16.svg,sha256=FN7XUTwq5QH_W_sIrqW9lUu_0nQodmZqzCUh5Go8b9c,51416
222
226
  umap/static/umap/img/source/24-white.svg,sha256=ANcgKPzXWjbx1JlxHM2jBjCZag81SAK2EtbenPlaqo0,31442
223
- umap/static/umap/img/source/24.svg,sha256=m-6UIiULE6zIvQvNLOUacnySYAJCmfHm5SxL0VY81HU,41332
224
- umap/static/umap/js/umap.controls.js,sha256=3YAfro_ETZXT5oK1eeovERTZSrCZDQBux8LbFg5GPtE,21136
227
+ umap/static/umap/img/source/24.svg,sha256=0qzc5BnYCKGCaTZCmeAa9AdD2aNPYGLKPKs_rjLfayk,41479
228
+ umap/static/umap/js/umap.controls.js,sha256=Loq05uXUs4UhCKCBn0nbrdxHUeMUwYmjd6SV3GJsTBY,22906
225
229
  umap/static/umap/js/umap.core.js,sha256=FGx6GVcfrE_sn_izOt5r4DLkbO3-bv28jeXV8kwwUio,7029
226
230
  umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
227
231
  umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
228
232
  umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
229
- umap/static/umap/js/components/alerts/alert.js,sha256=N8KzlITHCY1eekvVUtB1e9ULihZFrRQbdG-8YLt08uY,4578
233
+ umap/static/umap/js/components/alerts/alert.js,sha256=_BcG9WluOkJTj_v795c0PIXvv5EZQs0uO5-rUhcwEco,4482
230
234
  umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
231
- umap/static/umap/js/modules/browser.js,sha256=9Fi7iaibG1q17Gq0NUgbhGBM9dUGIMKQ6WvVXmOTibg,9433
232
- umap/static/umap/js/modules/caption.js,sha256=6ZSu8A1Z1JPGJbvItqwpqnkZDOS-Us72HMMDgv0MFM0,5490
235
+ umap/static/umap/js/modules/browser.js,sha256=OZqTRyh_rkJcoA-gZ_x25RvKSNxXYqwdYs-tWZEvT84,9423
236
+ umap/static/umap/js/modules/caption.js,sha256=jlS9OqW8-QTZLHdebQ8_-6Aj6jObg-mqA1r8VzrW5z4,5490
233
237
  umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
234
238
  umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
235
- umap/static/umap/js/modules/facets.js,sha256=q87rllxz4J2fzOJsmRMZMqHJ-RpHYqVGeFvkY7sHRwk,4707
236
- umap/static/umap/js/modules/formatter.js,sha256=B99Uy70_vRNIBOESNsJ1NXiQUtoeoR6PcrqJrW_VX7I,4724
237
- umap/static/umap/js/modules/global.js,sha256=7jm6NLZ5PM2yrkbWHdWkoDFcevgIAMqE-vZQRXcIgEo,934
238
- umap/static/umap/js/modules/help.js,sha256=pvYSlBOZh7rtx_8CQIZEayBFFodlToCxjpc4dOKTigE,9474
239
+ umap/static/umap/js/modules/facets.js,sha256=ftNFlXfIufQqb1a7QG1JYT2PWrd3tsAko-tQoM0f53U,4773
240
+ umap/static/umap/js/modules/formatter.js,sha256=6N6P9HeIkj5-NI4I1UfhDFc7q-x6_jR26JiCriQpkoM,4724
241
+ umap/static/umap/js/modules/global.js,sha256=pmO5iFezaPhxQemgscta2S1J4vBRHIpjALjym2Hs9Z4,941
242
+ umap/static/umap/js/modules/help.js,sha256=vjf1_Gt5rhG8JIo80j-8ln68wMuWewzn7jcwZootBEg,9756
239
243
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
240
- umap/static/umap/js/modules/importer.js,sha256=--m3qYOQJbtAEbHvO1hYu16dDtTZ8aSYJzPkBLAABMc,11178
244
+ umap/static/umap/js/modules/importer.js,sha256=F3SyebHMDxP25kAIs-nRUPkIAqcGmjFphd-yMgiYM1U,11270
241
245
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
242
246
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
243
- umap/static/umap/js/modules/permissions.js,sha256=KaoqJYjuzlt_g-N4aWGbtnGPw46UQZlxcEBQGH3VnQI,8595
247
+ umap/static/umap/js/modules/permissions.js,sha256=Ye7GKtG84ciAVQ-iswBOR7Hf2TpDVLkW6aPlWbrzrqk,8715
244
248
  umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
245
- umap/static/umap/js/modules/rules.js,sha256=U4SB00PxgC8I2jWNrl3XFe9Hm-yf3JwvkdGqbZt4O2g,7504
246
- umap/static/umap/js/modules/saving.js,sha256=l4-4o_pOOgbN6pv61pLlTr-xlgemAz_kD-TryCJ1Odo,748
247
- umap/static/umap/js/modules/schema.js,sha256=gQhGgssGt-6Mtq3wLk5pnV5xJh8XSA6RVKzSzMWxAjM,13237
248
- umap/static/umap/js/modules/share.js,sha256=sMNMnavSXg0HEg2DntMiyWlRJe3fJHWqu_PU_X7PAzo,7227
249
- umap/static/umap/js/modules/slideshow.js,sha256=zcRzOMkJvhps1npGRjHkdK4Ce3UkqOsv8OsDgQWO-bg,3567
250
- umap/static/umap/js/modules/tableeditor.js,sha256=7vlScGCfl9yXKAi3kdm7k0-T9HIlt9Rg8_kx_U6w0-o,9901
251
- umap/static/umap/js/modules/umap.js,sha256=ofA7A7-9X4Npgk1xDopzPWdIn4iF7uxN4zvHO3BR9DY,53321
249
+ umap/static/umap/js/modules/rules.js,sha256=pIOt28Lmt64I2jplQepr1Oy0paUu-CS8BX94N06LjqQ,7587
250
+ umap/static/umap/js/modules/schema.js,sha256=a92jlHxq-75cU61HsbMv2KCiCNAq0Pl45kQMqkFC6G4,13591
251
+ umap/static/umap/js/modules/share.js,sha256=eJ5BISGhGTp7908k-zQY94R5J04MzFZX5PLbYhP-_HE,7227
252
+ umap/static/umap/js/modules/slideshow.js,sha256=iIb2J_JSRYo1tyWwqoYGyhejdTctveY0Jne8nKdnG7g,3610
253
+ umap/static/umap/js/modules/tableeditor.js,sha256=tNZMAjzd7ji9MEcSTctH6D7gH3sK2ZgjCSiSQbFxxbQ,9901
254
+ umap/static/umap/js/modules/umap.js,sha256=NOBxVRxVu9na4W4wJpF9LyRKoQCxVRWo71Xvpeox6uw,54279
252
255
  umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
253
- umap/static/umap/js/modules/utils.js,sha256=32imsti4cf_cTQMNP_DOGBpmOSU4OMgGr1XZPoOUP2Q,15188
254
- umap/static/umap/js/modules/data/features.js,sha256=CpJA9PTxZQEB2BHxPrtOmRL43xk7PAeuiFWm_tTP32Q,32998
255
- umap/static/umap/js/modules/data/layer.js,sha256=BnnBsk1yXy3q4fwh1uSTxa4gqrfUbMxIWi4uBgLohf4,36094
256
- umap/static/umap/js/modules/form/builder.js,sha256=BZ6i0uKqa7IHYTZfIAKCDnu96cYEZN2u0pA-ux4TvLg,6542
257
- umap/static/umap/js/modules/form/fields.js,sha256=RRjJq_ErC4om9mYsE6IRHJhUwsPFMUUe1YqBasOZgIE,33507
258
- umap/static/umap/js/modules/importers/cadastrefr.js,sha256=KHqxHleFRFzNi98gegvUM1R6eJorAGGcMft_ktUg-ug,2262
259
- umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
256
+ umap/static/umap/js/modules/utils.js,sha256=hP16vfGAb4aE2XWG0MTVKtHnPcqIVGmNt4BCadMJAC0,15916
257
+ umap/static/umap/js/modules/data/features.js,sha256=PRImf5E9kykrQc0C3XZ_TbISfTe1g8nPG6fh_ye99nQ,33185
258
+ umap/static/umap/js/modules/data/layer.js,sha256=YsazQ0_9ojAtiDO9McdqNr4D0MOXX-xVDA-qN_nb7TY,35940
259
+ umap/static/umap/js/modules/form/builder.js,sha256=-V3t6L2YZXwICi2ks5VAhh2Iyq2fYxxkV2iYIsaaRaQ,6435
260
+ umap/static/umap/js/modules/form/fields.js,sha256=tnggW6HdcVOPLZo2ZKV0QGMWDctz4tLo4bVhaD1IU8Q,34285
261
+ umap/static/umap/js/modules/importers/banfr.js,sha256=TBwL3GQJdzYtaDtxeHxyPQ7Ycy5zTaQyvzXa55X7n2I,2932
262
+ umap/static/umap/js/modules/importers/cadastrefr.js,sha256=aTMmeMvg1vBcTn8DNFqRohELlOLEhyp9OjD3ymLqPSs,2262
263
+ umap/static/umap/js/modules/importers/communesfr.js,sha256=HoeVApZ0ORDxQt4dA86nKDldey3aJNeLdagMkn5skUg,1723
260
264
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
261
265
  umap/static/umap/js/modules/importers/geodatamine.js,sha256=vIxANzNc1TAe3QcZroIxqNvos1vexBmKDTtzErBNiY4,2949
262
266
  umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
263
- umap/static/umap/js/modules/rendering/icon.js,sha256=V44pEEMjm00YUk5-kDkT2LGCwgCXJKJfxiD92aK9ylc,8044
264
- umap/static/umap/js/modules/rendering/map.js,sha256=SHLaqe4zCuyHEA1BJ2TJ1yrOoc9VfjfKAK31XQuC-lI,12232
265
- umap/static/umap/js/modules/rendering/popup.js,sha256=k07zuqIo3wx1wdjE8lEtjljjNXgOcxND6Pey68_-_F0,2577
266
- umap/static/umap/js/modules/rendering/template.js,sha256=reTRxFmrCj0l4euOIyy7ieI_vW_7AOBS5XMxvcg2x1U,9524
267
- umap/static/umap/js/modules/rendering/ui.js,sha256=zU_KmfvPngMCxUUKO34whhADh10J3hACQ9gh6klbpbI,13630
267
+ umap/static/umap/js/modules/rendering/icon.js,sha256=KurT0rx-mOg3FcaDWVeVidWZgp_P-mIm6nWxt5JT__A,8316
268
+ umap/static/umap/js/modules/rendering/map.js,sha256=0SBHNqx9FbK2d_7dWFZI-iugiWKL2o06lhlSb5ej2Zc,12425
269
+ umap/static/umap/js/modules/rendering/popup.js,sha256=OtQYpjhWCoW20XBFeeSKCXMqN-szohaX1TKWhPc9eBo,2577
270
+ umap/static/umap/js/modules/rendering/template.js,sha256=CTH376AbTBfIeYApeQ2qy4M8dYX6lN_h7czzO28R6hY,9524
271
+ umap/static/umap/js/modules/rendering/ui.js,sha256=jO1lq6gHHqNIny7VZOKAT2eQnapQNfbA62-qILlmCqQ,13763
268
272
  umap/static/umap/js/modules/rendering/layers/base.js,sha256=DeXxRwTatoxxGStT1tWyNQVCrIkbgd7ZaawIPxWIcOQ,2525
269
- umap/static/umap/js/modules/rendering/layers/classified.js,sha256=NZzE0s2qZqjlO3_fEpj5Hf2G3FrVhoAPtL-ltfBnNbc,14761
270
- umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=mUbnAtDlQMoO19FJNYioIH5hWz21JrknQzleTeyISlg,3751
271
- umap/static/umap/js/modules/rendering/layers/heat.js,sha256=M-Am38FYMy_kJgyb5E5x6XZuBzN25MIvhV6ClYNL0iM,4779
272
- umap/static/umap/js/modules/sync/engine.js,sha256=1YCS9yh06XYrkHkHwgHldF8nUK3aMEy_kHaTLvXv-lI,15266
273
+ umap/static/umap/js/modules/rendering/layers/classified.js,sha256=S8oMae7MjQd2QFS2Q5IRb3eUMWfLiPoo-twpXBDtJXo,14765
274
+ umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=2Fq7IXqUXdEHjqHcEyH-3AgFKnO-bUbSZjPpYlKgMyQ,3751
275
+ umap/static/umap/js/modules/rendering/layers/heat.js,sha256=MNYBAdU03kG7AsXl4uaiQlAkeFMEiMSoljv8_zQsMDg,4779
276
+ umap/static/umap/js/modules/sync/engine.js,sha256=iDoD063ZTsDh4HfljRdSwh8Q0Ei0OJR4olif3EkcWxg,18074
273
277
  umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
274
- umap/static/umap/js/modules/sync/updaters.js,sha256=TEs4A3GPW_xG8tRHkb6wwG4jZK_fQvGKfCRg9ioSVVk,3342
278
+ umap/static/umap/js/modules/sync/undo.js,sha256=CQufaRvI_-dT0HGm5Wl8hBbO00IruflPdlmWJ4acgFM,2910
279
+ umap/static/umap/js/modules/sync/updaters.js,sha256=IHgHknhn-GB2yCvK1TO_iG975QyFD9LyHbT8gKb1u1o,3854
275
280
  umap/static/umap/js/modules/sync/websocket.js,sha256=M2wsFuW5vRsY677dRSAFUWJl5MBPCOvaNYCAxBAqjcA,2522
276
- umap/static/umap/js/modules/ui/bar.js,sha256=y_MmMXjz7ytyNlGOvlQROFRT3E3l-3SVD7Ht-upIQaM,12466
281
+ umap/static/umap/js/modules/ui/bar.js,sha256=vePC6cPZY_GYCtISHJ6HmgUKTPCpaHFYC6QXNCks99E,14145
277
282
  umap/static/umap/js/modules/ui/base.js,sha256=2Nk-5bDA5fgzcbKXKBtrUJIyl2vFuakENWv0oKSh3aU,2413
278
283
  umap/static/umap/js/modules/ui/contextmenu.js,sha256=eSo9zSPO_4iWIztvbM5n1TQYdX60Yndt3xIWGy10_X0,2842
279
284
  umap/static/umap/js/modules/ui/dialog.js,sha256=geAcMf2ajpNpDePDbaOz_kOiWOZWtpOHT7kBYqOHEa0,5620
280
285
  umap/static/umap/js/modules/ui/panel.js,sha256=QsoJEPgrXQ1k7_kVFbJgIFKVgTsPFyL41Hu7GN-bubg,3373
281
- umap/static/umap/js/modules/ui/tooltip.js,sha256=BGZBlt4D73cSV-ZPiL4qZQMEvlBYflPK-CIvgTg6Ohk,1919
282
- umap/static/umap/locale/am_ET.js,sha256=rinM1zio2kxrU_hvWrO2mElA0I979BmHlkFrXTs2kvI,34592
283
- umap/static/umap/locale/am_ET.json,sha256=xpXERcNt4w6rP_tqUTMrWcF1w_Ilo-WJo_1sMBy_wGU,34521
284
- umap/static/umap/locale/ar.js,sha256=j696mwgRdWiza_ag3MuovEYF_x-HilrzHIfQfm2UFaY,31323
285
- umap/static/umap/locale/ar.json,sha256=QKwfaLWq99bVo3phT6BlPux-_EPWTXLh4sY8rxLUQbc,31258
286
- umap/static/umap/locale/ast.js,sha256=UU3p66IU_EAeKWA9KbgxxluEljo0Q2h37AXwvJilMGc,30901
287
- umap/static/umap/locale/ast.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
288
- umap/static/umap/locale/bg.js,sha256=B8EfrEhGKO7MtBHN8_t8R0_3cMpMBPkFRA9z4dJV5FA,33879
289
- umap/static/umap/locale/bg.json,sha256=9Uh-muqgmVq2F0K6toyhWvTTQmzG4Qj-rONGZabWW6s,33814
290
- umap/static/umap/locale/br.js,sha256=pOorZ_M_W9iZLdnjg4tvZNRssLE2DHbhnazQRU6cg3g,32781
291
- umap/static/umap/locale/br.json,sha256=u7TpQxiCBv2ToWBP0pNpg4TZAmyUvDwqJdobyOgUTOE,32716
292
- umap/static/umap/locale/ca.js,sha256=-Bt-pjU5_itANY1bBhZYXwFPiPKa6cXlV03St6y2kx4,32416
293
- umap/static/umap/locale/ca.json,sha256=w4NbyevkTj1Kq6hPKdPAbFWPxz8f4F8QAoN2q7aPKnM,32351
294
- umap/static/umap/locale/cs_CZ.js,sha256=yiPT2OVuaEKvT9q7xmEYTp9T3OS3qFFlr5c9z87DVjM,33608
295
- umap/static/umap/locale/cs_CZ.json,sha256=G9tGb2B5iIhAgPFkgDLv-T2ikcP_v1RBGSI8gWgRnQM,33537
296
- umap/static/umap/locale/da.js,sha256=14YqVjFGs3wK-anudqzvz9MT2-JWmRcmtsjgacgA6gI,31268
297
- umap/static/umap/locale/da.json,sha256=58a4czT6hR_9kl7Pz2p9iKBvCTYs3FMqVUagNnkOCBw,31203
298
- umap/static/umap/locale/de.js,sha256=vglVmPpuoYp7s_hqvFyP9A3AetWO_Yoj5P_Jxhg-Y48,33552
299
- umap/static/umap/locale/de.json,sha256=dVZddHRqS9-v5GwnFjtMoNP-ScFLxeiBsnvmM8-ssG8,33487
300
- umap/static/umap/locale/el.js,sha256=oCgTbVLiP1fx6s7GT3xtk9olEsffmUrEQycpEy8V5nA,44419
301
- umap/static/umap/locale/el.json,sha256=dJHUwCZjHTm93yNIHJeIDH6MjWzdZRWYnKWXvTqwqpw,44354
302
- umap/static/umap/locale/en.js,sha256=jwdzHmRwsroIrPz_sNLqqlyPjsfF9HfmlK7AHBBvkVk,30899
303
- umap/static/umap/locale/en.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
304
- umap/static/umap/locale/en_US.json,sha256=LQwLUYHaXYOaM5SIdlf1VoZbFDxcVQ6lbxFfFynnHPw,30623
305
- umap/static/umap/locale/es.js,sha256=cTnazEtQQdhfrAMuydwZrrUVep26C4yfJPxfTi1frbM,33868
306
- umap/static/umap/locale/es.json,sha256=XL18qHHKTIHzVZVRYPlnMQZLrVbeznwCCBBYrtkz9r8,33803
307
- umap/static/umap/locale/et.js,sha256=ZGGKLdjueRy5lnXVOf4UoOsB0ibBPViKVHigZEqj3qw,31075
308
- umap/static/umap/locale/et.json,sha256=Q_t6sJywJ3ZEw6PGG3cjLNYeYqbHREQBuEYcWV7Ri-g,31010
309
- umap/static/umap/locale/eu.js,sha256=cWasLchwDSNRjcYTSdLBqM5ELCbz3HUeFeu1rutJ72g,32949
310
- umap/static/umap/locale/eu.json,sha256=mKPkU1sCQqQMgsvHztJg8mSwnX1P27RzC9H0qmCtKTQ,32884
311
- umap/static/umap/locale/fa_IR.js,sha256=i119NW5cgr17XqyzIe6JgKtNDRyX-zQJ8bZcnEq6LB8,39380
312
- umap/static/umap/locale/fa_IR.json,sha256=2PUxJ2F-1Os5vHrTLO7Dx8uSzrwoElQ875MtvuPU_v8,39309
313
- umap/static/umap/locale/fi.js,sha256=zfJWrBT9vLS7IriXM14-aYNfUDCIwJT9rnwqjdEbFOY,31697
314
- umap/static/umap/locale/fi.json,sha256=RZw_plHGf4ww2iyHJt89NE5Mse_sxhmFHDNsITBeFE8,31632
315
- umap/static/umap/locale/fr.js,sha256=glxjLnJkr_PVMDbZNDRQvqLjfPQuWwLYvYynqwIiuz4,33854
316
- umap/static/umap/locale/fr.json,sha256=5oh-7e3QS2wxYMM5viBUo-6Lz2tnlneZwSvvChI8hbE,33789
317
- umap/static/umap/locale/gl.js,sha256=bVGtxAwN_GEEHfl2hzPimnWC4bhY1RqVr6WRfxmJvn8,33759
318
- umap/static/umap/locale/gl.json,sha256=nBaIA3_e5T8h2EAM1pm1WjGuCP8H3x7WIHO9lhR6-7E,33694
319
- umap/static/umap/locale/he.js,sha256=ap93WJKuqsqMLTfqAFsKA8D8rz4J-H0g8DvMnesst08,34125
320
- umap/static/umap/locale/he.json,sha256=tUbedEq9zylP5v2nKQhcwoco7o6QyDhRf4yBY_fxlv0,34060
321
- umap/static/umap/locale/hr.js,sha256=UwHl1kqskz8vXGL4Ujsm95d4EJW7BvOj8kzRS6sZ24I,31077
322
- umap/static/umap/locale/hr.json,sha256=hEmtohzvGRwHd5afCzTp_dSSNIBPyrpsT-r8Fn-xt5I,31012
323
- umap/static/umap/locale/hu.js,sha256=Vj8BquUm4aUvBPmVpijqMEv6nb4GEFOq4EJGaJsR13k,35283
324
- umap/static/umap/locale/hu.json,sha256=C6jbBsvHWQfrCzqZ_lzYCQW-Jn7Kc9bPFaYyTi0YVY4,35218
325
- umap/static/umap/locale/id.js,sha256=kC62TUd7OqUhnEF1mlGHh3YyK0-q5hNT4lKNM-8rk9Y,30899
326
- umap/static/umap/locale/id.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
327
- umap/static/umap/locale/is.js,sha256=obHZjvkEv8W49tlOg2ThcDFUzeQgb2TKGhUko4cwapA,32151
328
- umap/static/umap/locale/is.json,sha256=rUVSB6dUcmxpNjn-d_sZZswbdEn2Q1cd5rBWUXTU3Co,32086
329
- umap/static/umap/locale/it.js,sha256=55YPZvLRzD0XDlE3nT5hAfz3H6bH0R-pfxly8y9xaM4,33674
330
- umap/static/umap/locale/it.json,sha256=VnVaNrzGO9C9C5GfGmWs6eHWtDdojWGPbq9iHuoUf90,33609
331
- umap/static/umap/locale/ja.js,sha256=H78fsHS5dR2PCBB0iaNowOXMkpFt49kP4j4xeWVfqN0,33270
332
- umap/static/umap/locale/ja.json,sha256=jKSn9GE8Z4HkeA9lUysYXzpV7z5Bv2aX1APObrti284,33205
333
- umap/static/umap/locale/ko.js,sha256=dm38r7amUE1utkO29Yfz7wzB3bdRnPpIe0bu0zro_K8,31087
334
- umap/static/umap/locale/ko.json,sha256=J-QFKRUrgUDuy_F91LQPCsTQSUMjSP0J8kQXabT7bQk,31022
335
- umap/static/umap/locale/lt.js,sha256=dHa5_ciw0Nd5HWZLwJhKeSrNuyuJr9Fp-celDqS5VzE,31667
336
- umap/static/umap/locale/lt.json,sha256=rKubG5_3u5CZeRv6185N6A55Tmdj4iFdZK5Fwa1T_aM,31602
337
- umap/static/umap/locale/ms.js,sha256=xTsLgLVC9M0MDseIksmyx8Ct6IgpkpA3O3jSZhhb8Fg,32011
338
- umap/static/umap/locale/ms.json,sha256=sFkxLrSfziBBjFxO_7Xm6TB5NzSQM4HfQsJZ1C9na1s,31946
339
- umap/static/umap/locale/nl.js,sha256=ksDAM9gLORJEL3PQT_GyzJeUn4shYuyXospnG967t3c,33227
340
- umap/static/umap/locale/nl.json,sha256=kkM7nOy43kGaN-d7VsT_PdFhSRvrCv8Y5Cw6FOBZsYg,33162
341
- umap/static/umap/locale/no.js,sha256=-0ScjJ-N-Zxf7yVad4N_CydwTqkhJvSNGiv77_ZIUww,31123
342
- umap/static/umap/locale/no.json,sha256=fTQdNBtTBiD_cy8emtewPkm7_sBFbaKnkP-hgblYHPE,31058
343
- umap/static/umap/locale/pl.js,sha256=dQz8j8eF5whZOBUK5raM_tQvdiLm90rdwn0_rlDJGik,32660
344
- umap/static/umap/locale/pl.json,sha256=GMRibBWQD9LUs3ZihOgarpm-tKLHkxUBxqET5ko66z8,32595
345
- umap/static/umap/locale/pl_PL.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
346
- umap/static/umap/locale/pt.js,sha256=-izOKzoX7Dx0DmUm9uEAE2iYbpqPTrAtLIP8dRcI5kk,33821
347
- umap/static/umap/locale/pt.json,sha256=olm9YdQTRs64Bks_KttLpo9SWWOhS6_82CUfHp--j-I,33756
348
- umap/static/umap/locale/pt_BR.js,sha256=u1xMUmWkNcntqwkBO819sp444_DlVFj6RYLJFjbyo48,32235
349
- umap/static/umap/locale/pt_BR.json,sha256=QyUfjKFVHeHpRY80cjN3IXb1wJiVsMNaWxySrhp4l-8,32164
350
- umap/static/umap/locale/pt_PT.js,sha256=3Zp0lJSOpZy-ciu18Se9LoCkMPX2CMM4-d62HDCduZM,33501
351
- umap/static/umap/locale/pt_PT.json,sha256=xrMZjned4y-qyrQXX2FYgG0xUJbNkvM5POEfx-vVw6U,33430
352
- umap/static/umap/locale/ro.js,sha256=2XpI38ybxf81Bkl-tz0CmJpKuuxAe7uN-xtdvrRQwG4,30928
353
- umap/static/umap/locale/ro.json,sha256=x4s_qaQhVLWJY8o-6-rWDY8hDSLiS78b0i9W3_IllHY,30863
354
- umap/static/umap/locale/ru.js,sha256=yHzloJQU8vyBhC0GYcfouWVMXakurUR09ApffeI5b4U,37890
355
- umap/static/umap/locale/ru.json,sha256=lHCbdTyybb7XnqT0hNjcoXEsdYK33uD7J_DOV9OD8bE,37825
286
+ umap/static/umap/js/modules/ui/tooltip.js,sha256=KxUQMtH29DZSCsZ6uZMtNlNR2NnQDnRMfJMJ35O_w5k,1919
287
+ umap/static/umap/locale/am_ET.js,sha256=O2Mycxx-JDRYpPArgz-Y9FrkAj0J4trzufeP-bkEHP8,34401
288
+ umap/static/umap/locale/am_ET.json,sha256=6CROIMKvlEJTL32SXxmGPLqXHVcM1tYs5r90kGH9e3c,34330
289
+ umap/static/umap/locale/ar.js,sha256=ht4D939k2mGOQdATgnqiOEbOidmGRLxG7rTmbE7NkQM,31197
290
+ umap/static/umap/locale/ar.json,sha256=ZfryLqlyoNr5iv80VOXdQbPN11P0IQrIvPB-RwAeRHI,31132
291
+ umap/static/umap/locale/ast.js,sha256=z8GpkjKc7iVDn2Mu5YYebgq3mAUXgffhMU6ig5e1yb4,30801
292
+ umap/static/umap/locale/ast.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
293
+ umap/static/umap/locale/bg.js,sha256=a1HBelbjSXVyc5J11NcDNXqvhI_bSQRIA2guD1CNsUE,33670
294
+ umap/static/umap/locale/bg.json,sha256=VPCUC_oUi2VTjOZHhwh4bfLN9AQZj1iUbmAzgTgs0R4,33605
295
+ umap/static/umap/locale/br.js,sha256=-vDSLoKGUBwiPqxT5vaV5gFnkWkorZrHR0kALgzhOMQ,32663
296
+ umap/static/umap/locale/br.json,sha256=QElv4xsj_J40tvWAUurfCnU1v3FyiHL59V45bCpYWWU,32598
297
+ umap/static/umap/locale/ca.js,sha256=gNKGKLehHVDHqTNWxblcPteOlOseckgjayaCClOaVKg,32306
298
+ umap/static/umap/locale/ca.json,sha256=z2qghJsAmx94iI7nw6-kSKAhcfzaPQtrZqeMHEsrWjA,32241
299
+ umap/static/umap/locale/cs_CZ.js,sha256=34foxcemMvpXwTivoBDb8CaY4NvmFSsDnyJy1vWqAjo,33504
300
+ umap/static/umap/locale/cs_CZ.json,sha256=w5yNShgd2NMXyvsbAKokkchayH9YDN9CxWkSxNkj0yo,33433
301
+ umap/static/umap/locale/da.js,sha256=aj89cjPA7sZSDquiSMmvwue8dV4RloAKJEPiMM3txLQ,31152
302
+ umap/static/umap/locale/da.json,sha256=gEaRgEOjn7vyWZCi2xdGe-3H_dJ4LJnpxZyfyTiL4zg,31087
303
+ umap/static/umap/locale/de.js,sha256=1j4mqEMdMTC6Pbtan8U-iqDB5TVzauvPtCbA4O9v-P4,33849
304
+ umap/static/umap/locale/de.json,sha256=p_By7kcy4X0mbX67-MIidIcfrE37lAfpLKekqvsdW7g,33784
305
+ umap/static/umap/locale/el.js,sha256=LMMB0rd5Ug4ccZXP5omt4J9pPMQogiuPgjUFAkPlzHo,44181
306
+ umap/static/umap/locale/el.json,sha256=uuPmo6RrRPGf0CpmHVS5jGKMMzCoB0FBgUNDE8XdxOY,44116
307
+ umap/static/umap/locale/en.js,sha256=kmcaLlz15CJhsXaDiMCtaLm0f8Ce9MgY093h7BdpJ58,30799
308
+ umap/static/umap/locale/en.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
309
+ umap/static/umap/locale/en_US.json,sha256=VxaLuIQ86N8_z1kio9xIeW6ogSzbxBzPNH6NKTvZzAs,30521
310
+ umap/static/umap/locale/es.js,sha256=kFeMDKjHsljkkCDnIk3Ri1a5VhgPKI-T5xdGYjv1iZ0,33740
311
+ umap/static/umap/locale/es.json,sha256=8kW0dGLPdGQzsS8jrcEhtE8g6yl_taNKzXUPyxM33SI,33675
312
+ umap/static/umap/locale/et.js,sha256=1ZLA7w_m6q4yhPAvAfKoIWHe5Qz-USotJWQBTOPDSzk,30957
313
+ umap/static/umap/locale/et.json,sha256=4xouZrz2oRYpibPni3_4XNPTAi1lIvAuz1LO4HtZ-9M,30892
314
+ umap/static/umap/locale/eu.js,sha256=g2AEjKXmO311ULUHitF0S-eRLmWyQH8Qk-p3YvwkbTU,32860
315
+ umap/static/umap/locale/eu.json,sha256=DEMcsInH5oflnDFNeHMo0eG-iJbz6OPpcVWxk83QTns,32795
316
+ umap/static/umap/locale/fa_IR.js,sha256=VpCSoG5yo783J5hU2eNssIzRPiI5MjlLkhkhpTIQZ50,39236
317
+ umap/static/umap/locale/fa_IR.json,sha256=RTIkylzQqq2Isp7_ZENSMxbZr_mIB-5Ls-y3GlVub_k,39165
318
+ umap/static/umap/locale/fi.js,sha256=AOtrgpRnzYqdGDa_olC3T0xY9uJpij0fHPuy6po5oL8,31581
319
+ umap/static/umap/locale/fi.json,sha256=PhvtgboxugR23AaHQP_UN1vfS-sZxbWilKaRrhtofj8,31516
320
+ umap/static/umap/locale/fr.js,sha256=GGBVQoqbmNX26Nap0y264mXinLLav7tYNNR1wXxIUY8,33754
321
+ umap/static/umap/locale/fr.json,sha256=m3Eu8ZnyaCHAnPQHu7Gb51UOCxsG6j4dxMXsVV4tHK4,33689
322
+ umap/static/umap/locale/gl.js,sha256=41Ve76c0ZKzOqUa4iOm2DEIb0zlDy7GSAANPFQRZg_s,33664
323
+ umap/static/umap/locale/gl.json,sha256=V6fUTvdj1mmmUjUFk_OCFz6v2utXPdF2hNx6QYSpLvU,33599
324
+ umap/static/umap/locale/he.js,sha256=LkeuFRMh62Mm1JEkjcL660_H-f7uQnx_-HZj8nzAwgY,34038
325
+ umap/static/umap/locale/he.json,sha256=WQ2X5_2SXFcyp1BxdOpCh8dcfMN8Cb4VdmAntSkruSs,33973
326
+ umap/static/umap/locale/hr.js,sha256=un3MIxYSjbQBo8dl4XlDYlYVmYS2O09nnD8jUZLNjTo,30971
327
+ umap/static/umap/locale/hr.json,sha256=RqIiis1Y6vAyHOsij-RNq3hOBIsy8UV7G3iPcg9f0I4,30906
328
+ umap/static/umap/locale/hu.js,sha256=wcdYLRFuKzw8qLVEgAFlWuVJ6mx56G6l3h5aaxEkce8,35314
329
+ umap/static/umap/locale/hu.json,sha256=Mo7pFejsrZrkKi7nx0PBijJBItktGa3gZDWvR3f-ra4,35249
330
+ umap/static/umap/locale/id.js,sha256=0Jr1DgplnSafYlQ3KaZ1bG1z_9IiwQy7cGjqJO8YoS0,30799
331
+ umap/static/umap/locale/id.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
332
+ umap/static/umap/locale/is.js,sha256=Z989BeZOKuPI3rMqvOmkJ115_4u9s2Q5k7p3TldiwtM,32558
333
+ umap/static/umap/locale/is.json,sha256=Rw_cXWfis7F7yFBkVD7-tscEikAmAwvYOeqbrcHU_ZA,32493
334
+ umap/static/umap/locale/it.js,sha256=meznASpfsOXaA7YWdM-QjKyzk7kQAOMoFb6n4kVlLOA,33559
335
+ umap/static/umap/locale/it.json,sha256=We9kS3kGjfIfbgaI4dFL5Q76hMIloK1dYAGp5LYmadE,33494
336
+ umap/static/umap/locale/ja.js,sha256=fQJnhi0UEE4QV7Ug6IqkjGMlt6QPRQ6nJPxq4DVxhUo,33158
337
+ umap/static/umap/locale/ja.json,sha256=YqapMEM0lMV6-pOrhQA_GcYEw-HvyNHyOWBWqyRWbTQ,33093
338
+ umap/static/umap/locale/ko.js,sha256=EO1li1610z99fSZDkG4neNDp76alVyPlFLXfrf8yA7I,30954
339
+ umap/static/umap/locale/ko.json,sha256=SX338vKwG54X9n4TXGdWQJeWITo9FuIFc6S-AtMzegs,30889
340
+ umap/static/umap/locale/lt.js,sha256=15rmJN6oJozaXU3fznQ4MtO8WoZYvnd1zCLYavW-HyI,31566
341
+ umap/static/umap/locale/lt.json,sha256=UmBqGSB6Fxi-_zX7VWYShrSNmLzDN7L81lghSSif6OI,31501
342
+ umap/static/umap/locale/ms.js,sha256=be1E29xFLGgM_gIhV04Va-BnAj6BhsF6ADV1S0qHz4g,31902
343
+ umap/static/umap/locale/ms.json,sha256=BTP3X8jLz-H5JM0Hl0MHBn3tQgM5QiJ3EH2j9d1PnKI,31837
344
+ umap/static/umap/locale/nl.js,sha256=vA3qYWjiXHjGjZtBJp8kCmzY8cPSk3MKuqLqeCD8Yvk,33104
345
+ umap/static/umap/locale/nl.json,sha256=3odVH82p4A0N99K-130miI8qjZqzJHaO7nVaVZd8Dbc,33039
346
+ umap/static/umap/locale/no.js,sha256=EQXgdZFTY8iRWYLyulRgJQ-80UrKDkl1NivUngtle60,31001
347
+ umap/static/umap/locale/no.json,sha256=LlgG3GAW6jwY7gDWSzBrq10uAanA1TjxL3BsXI5_yaQ,30936
348
+ umap/static/umap/locale/pl.js,sha256=J8h44TqNZ-1xQI4RSYcpv2NrnvRq4baFYKZlB6b48as,32578
349
+ umap/static/umap/locale/pl.json,sha256=aRxtIcGrLsQSwLuSV6DB2egu4R6plPkOI-BAH37uHpk,32513
350
+ umap/static/umap/locale/pl_PL.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
351
+ umap/static/umap/locale/pt.js,sha256=xapyKKI2vXv8tvhAPuXa2-BleXUhxCPvyPZzNUnft6E,33707
352
+ umap/static/umap/locale/pt.json,sha256=xnbfzhprN7UvsCwNa7wMlLTy5xFcteGBNGacXpOgWSM,33642
353
+ umap/static/umap/locale/pt_BR.js,sha256=6kNgL0JXVW1AY4A0SKgi_SpaT707kd_Xw1pacw5Pypg,32121
354
+ umap/static/umap/locale/pt_BR.json,sha256=a6oW0J0VsTojLORj8OtaMmnGMgqf4xNK3G7wyQrqQRM,32050
355
+ umap/static/umap/locale/pt_PT.js,sha256=CoiHisGJ_-Uc7elWTTw3qUCztkT-jqGohC2VOznuDoY,33387
356
+ umap/static/umap/locale/pt_PT.json,sha256=pEIZFLt6sVu3FXWmupBb7Ng3cHYmtiUFmO-Z_tLszVI,33316
357
+ umap/static/umap/locale/ro.js,sha256=EUIXVcUSwpVDSJwBDGvNrG5TRE1Ucwi4zgvktHDvvqs,30828
358
+ umap/static/umap/locale/ro.json,sha256=SRGXYc2VC84yll41iCEGTOQP5K4dFvQXY415ZV0wdvk,30763
359
+ umap/static/umap/locale/ru.js,sha256=l-6kuWNIy7m_3yKjCgv97XFnz_XU19TjedowNU_HNSo,37667
360
+ umap/static/umap/locale/ru.json,sha256=LIlspjSyBm1UjWivU8A53RLka0g3Yz4xq9acBbx20vg,37602
356
361
  umap/static/umap/locale/si.js,sha256=mcgXepIhSBBoRr6LvmvdRJFIwEGzXdjABC6W7lGYQUg,28504
357
362
  umap/static/umap/locale/si.json,sha256=DHd8onJhyE8lBV76Zc9XmpHejZZOx0FwF3zaMlPq_Dc,28439
358
- umap/static/umap/locale/sk_SK.js,sha256=V2wJyTZXMikurkhlRY_wehnu91hulA8d_rw2PUVSvXE,32121
359
- umap/static/umap/locale/sk_SK.json,sha256=rBvhA_nP0bjnx8OGXOrKw47A5fI-TcYBzoLXXyIjFyE,32050
360
- umap/static/umap/locale/sl.js,sha256=-FnyJ-qmp6_mO4-Ko-8pxIM8h5cZKlT3kO1Phu9zQ8c,32014
361
- umap/static/umap/locale/sl.json,sha256=MeNpv4Bcu6x80di9z1oKFFNZAP3s1_2xPNC81E5tgX4,31949
362
- umap/static/umap/locale/sr.js,sha256=1cReHMS0vOwO-Akpk8Zfcx974uWq4Q7LfUattFnB-rc,34846
363
- umap/static/umap/locale/sr.json,sha256=Rhjm1OesUI-qZLXmDd3sBQJJrBtiq5v-i7ZXrpxDl9U,34781
364
- umap/static/umap/locale/sv.js,sha256=dMNvwZ8t3OIaFsrioLTndDV2AA3b9CDoypqZ9HlMO-M,31905
365
- umap/static/umap/locale/sv.json,sha256=tLKtUuiYrpo0Onl1sx3KL-ozc-tDK4a0PoDDK1MDJ8Q,31840
366
- umap/static/umap/locale/th_TH.js,sha256=GNmL2481Afv7A8PhZkOZEV8luMuaq71kaJDYEBCQFO4,31939
367
- umap/static/umap/locale/th_TH.json,sha256=DlrISXFfGsiosWyygESj4Rsruez3Ps7CEeysUyE4wEo,31868
368
- umap/static/umap/locale/tr.js,sha256=PCsaYI5d_wCEkVRLNpUW8exrQrbLTkIUQ6S6j5mRzwg,32431
369
- umap/static/umap/locale/tr.json,sha256=i4tlNkQHTd4uQV5SZuo7wd29WMEibMdTbet82Jvt9_o,32366
370
- umap/static/umap/locale/uk_UA.js,sha256=WzwsCmEf44gv7SZrjbt7TTv8iic8kp97kDai3n4Wzzs,37492
371
- umap/static/umap/locale/uk_UA.json,sha256=KuuKGKoR3cJssWIWsx4ZtXBj97azW_loSR3rJY3vM30,37421
372
- umap/static/umap/locale/vi.js,sha256=E8gYMeHhcviVvlgILwjyTEwe-e8um6bFF4GRfuBrHpA,31179
373
- umap/static/umap/locale/vi.json,sha256=lCD3_tGz-VC6eaZTT3avIfKyaHQt5egJQPSxstaD0j4,31114
374
- umap/static/umap/locale/vi_VN.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
375
- umap/static/umap/locale/zh.js,sha256=Czlsyfum0sH-ohVYKAemIQ02KdmRvw5Pd_C35LlUnS4,30600
376
- umap/static/umap/locale/zh.json,sha256=RRw0YtMWUL9X3-rInY1nTofha6Hs8aXpHSjytLiS9Dk,30535
377
- umap/static/umap/locale/zh_CN.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
378
- umap/static/umap/locale/zh_TW.Big5.json,sha256=Xwdx3hvTkhVqQtRgZ2nKaqC-qt6KZmgknNwBJcT0Fpo,30834
379
- umap/static/umap/locale/zh_TW.js,sha256=Wk6Rr4HnRQPacg9h2IsuQf20Jwsykeoj3JYPTWmT8UM,30359
380
- umap/static/umap/locale/zh_TW.json,sha256=Uwv-HORJgmGic7DeAgCDsdAopS-nZGpYLaBvyv1W2rM,30288
381
- umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
382
- umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
383
- umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
384
- umap/static/umap/test/Map.js,sha256=LWCyIKxgUXBM61i3QIPkDubTXGlRhy6N2NdlAnaM_mQ,919
385
- umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
386
- umap/static/umap/test/Polygon.js,sha256=Jrflfe76wmfu8_E3bDLMGG11w-iUmrgL9Oiv4CcCsb8,2320
387
- umap/static/umap/test/Polyline.js,sha256=5VxRW-b6bnNgyIzDsHM6g5lPci-Td1wY5VPg_umpId0,9374
388
- umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ,1096
389
- umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
390
- umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
363
+ umap/static/umap/locale/sk_SK.js,sha256=qdUARKTyTBNQHBV0Ec4U4vExdl7fDnZ8Cn1PgnXoBHY,32030
364
+ umap/static/umap/locale/sk_SK.json,sha256=IbBhgfcjcWT_1BX0N5-xL3Bz29wQVJxucpKalKi7J9Y,31959
365
+ umap/static/umap/locale/sl.js,sha256=DG4kPYovDfuhglDeJyMAXXcHHHGd40KM-dFTemvgD-U,31882
366
+ umap/static/umap/locale/sl.json,sha256=rN2gTXLAKvCm0idac5pgixLQ-88XIUMIVz1lk2jOyUE,31817
367
+ umap/static/umap/locale/sr.js,sha256=YAv0cVK2j-XmBM1p0wOO3uMo7-7YiWsRrOLcn8At0Y8,34606
368
+ umap/static/umap/locale/sr.json,sha256=szxrZQAVIGOMKhUtn8GKdZkc5vH0F9f0cmXjLeIkYp0,34541
369
+ umap/static/umap/locale/sv.js,sha256=p5U4Iwl7XOVKX2I30owo1tkJUqxQMZTT6nHBf9CoYKw,31788
370
+ umap/static/umap/locale/sv.json,sha256=7t9tw-qeIRqfFu6Rno75_3ZeKFQcwL_CbRs1hHlsgxQ,31723
371
+ umap/static/umap/locale/th_TH.js,sha256=8Jd5pGxNMPAfBQ1JIGbzlNfziwMXFKRCCwvqhGFaJHI,31839
372
+ umap/static/umap/locale/th_TH.json,sha256=5V4YtYiH_fC6DeeGYL3_wYYXX6HRLcXO_4V1ttVg_hg,31768
373
+ umap/static/umap/locale/tr.js,sha256=E8V8ydvWmcncbJOiKbazeA-U3FyIKW6VeW3L9n1uXG8,32295
374
+ umap/static/umap/locale/tr.json,sha256=y_WoeW9zrer9Psrkjzxhq1D6WJiloErWz4lt_e_g-to,32230
375
+ umap/static/umap/locale/uk_UA.js,sha256=qm5gfU9dR04YnrLLvLDsduigBmWk63zs5Glk-Yc-Sf0,37273
376
+ umap/static/umap/locale/uk_UA.json,sha256=DC2MWAW_xywcwE3wJCaxFKNW7wxqMbXl0ZQd5-uGhcs,37202
377
+ umap/static/umap/locale/vi.js,sha256=BhV5522pZ4DFun5SzeKXftZ6IgX_s5_HZQ4QXammlZs,31059
378
+ umap/static/umap/locale/vi.json,sha256=xG_C3EnHAu6RC-AIcwv5MNvTycN79QXPR_9tTvfk690,30994
379
+ umap/static/umap/locale/vi_VN.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
380
+ umap/static/umap/locale/zh.js,sha256=lZqFG0t7G2Q3eAvddHXkkdntTMf2v1Z5Fo5G6ywwZwY,30532
381
+ umap/static/umap/locale/zh.json,sha256=oRhM6bajAFKTqGsDagLFaGg3o2fvomnpN5wCY3kPZUI,30467
382
+ umap/static/umap/locale/zh_CN.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
383
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
384
+ umap/static/umap/locale/zh_TW.js,sha256=RVlO3t21NVSb8pw1EWswS421kv1_cvDO-r0W0zO7_Tc,30294
385
+ umap/static/umap/locale/zh_TW.json,sha256=sa_Y6v0gC7aexQjuIIKSs70VVvd2Hjqqc_C1k-lAvdU,30223
391
386
  umap/static/umap/unittests/URLs.js,sha256=wF0hfRX3NqwFAe31QGeKFwavUpNP2T8pHwXBlcpiwNo,2070
392
387
  umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
393
- umap/static/umap/unittests/sync.js,sha256=khNfXve8gGtKedsVhgCcfNz4tVUu-LRbuJy3M-bXOYk,12929
394
- umap/static/umap/unittests/utils.js,sha256=ldr3eVd2FgvTkSdhs3eJRbnrYosN9A9Fu1xcCd549Vk,27050
388
+ umap/static/umap/unittests/sync.js,sha256=SRzK5N7o7iZodye53evBTZZjXG1mMm6dguV_Iyh69XQ,11096
389
+ umap/static/umap/unittests/utils.js,sha256=Cj7wsVf3RIwahKeoLOnya7u4mDw7oxkWHtmO4O1Jx3c,28683
395
390
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
396
391
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
397
392
  umap/static/umap/vendors/dompurify/purify.es.js,sha256=OwJJkYgszIMGao8OZPP_KoTXY45kWRIh9rBPjBDLs8I,62059
@@ -440,7 +435,7 @@ umap/static/umap/vendors/minimap/Control.MiniMap.min.js,sha256=Hb_f1FMaLV-Qn6KSY
440
435
  umap/static/umap/vendors/minimap/images/toggle.png,sha256=dSjmzalnKhlwWcTiw6qF82tFV60mQZAmS57_VnCzXIg,219
441
436
  umap/static/umap/vendors/minimap/images/toggle.svg,sha256=qYiFw3DWtNgmPPxyM2tW4Q0yQCFdWGtCJ9RqT9SRyhs,1765
442
437
  umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=Zju1u65H1dEr_5zxyHuPlz6F-rSx-DRTgQquma3VRZI,34674
443
- umap/static/umap/vendors/photon/leaflet.photon.js,sha256=AAgrsDIbpaugU6-2u6024CRB2cvE1OCNek7N9zAVlgY,14730
438
+ umap/static/umap/vendors/photon/leaflet.photon.js,sha256=muJBUoB-ocakHmR-iEF7k_yXXu8yZP4BjmJ4kB3GtgI,14888
444
439
  umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=3vLsuPerHhN9Ywzrl8oey2zgVDhD4VqVGWXY0WammyQ,24073
445
440
  umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=ayC2E6wVocDrMV-bpQkwXxkVhqcsS0AqHRZ98Nc9JaQ,196163
446
441
  umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=3ahjSicOyuiPMyXmBClO89l-QykDhAy0Fm09kWGSrWI,34371
@@ -453,43 +448,43 @@ umap/storage/s3.py,sha256=KAYu3vAqXbd5UhaoPxG6zcGtBfKZOzzi-6uY6YEuIcY,1962
453
448
  umap/storage/staticfiles.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
454
449
  umap/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
450
  umap/sync/app.py,sha256=MFuMIsIvkF_YLa7DbjyDLWyMGhmqMQi-cMR5z0TEwM0,6640
456
- umap/sync/payloads.py,sha256=bt_guJ5fyzeZfVprjtJa-6MTRdMbXD5l9DQt7KV8RJY,1460
451
+ umap/sync/payloads.py,sha256=Y5vD4vwH2rG9PzNEBZj6c5-qOuDyjWEinZ_viNrZNRE,1513
457
452
  umap/templates/403.html,sha256=7nzCrjNhLxqYkCoLHtBkMsKsticp0g0zj-fGdWxbd_k,454
458
453
  umap/templates/404.html,sha256=9sNX3VTySf8tiAcj201dBIGcznOfeViJkIv7Wju79vY,267
459
454
  umap/templates/40x.html,sha256=vqXMu5psELqmQA7tajpOCpQB2olyJ4yZvBXme5p84XU,206
460
455
  umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
461
456
  umap/templates/base.html,sha256=7WJ89NxyDiciP7GqpXu9VuZvLX4uJeLnEP4t5aWQdIY,1573
462
- umap/templates/auth/user_detail.html,sha256=NMCFTxNfQWHlfEa44P6_nMyfvkdLcWcZW1k82jTeuwI,673
457
+ umap/templates/auth/user_detail.html,sha256=I2GoKso_11a2P9SDvaMD368USKZmNNcPbBzGSN23xNE,679
463
458
  umap/templates/auth/user_form.html,sha256=Ts8PqddjHggfIf_NiCrbyYAjrGqoPczXxMLiNRVfMa0,1942
464
- umap/templates/auth/user_stars.html,sha256=ptxSvFAfsQ6R8GSMJ30Alm4qMEbumuqkHyFWBdYps7M,701
459
+ umap/templates/auth/user_stars.html,sha256=h7TNm1W4BrmXG_BiImIrqDJumuEghqP_tYt-Ib2xZNs,707
465
460
  umap/templates/registration/login.html,sha256=PSBLBFW7szyXezaXwPwFqTBQAsbFEDd5SvPL-n9Djek,1824
466
461
  umap/templates/umap/about.html,sha256=Shu5lP_Iff4iQMDhMACuwdlZ00o8Yi3MT1du-y2rDEY,245
467
462
  umap/templates/umap/about_summary.html,sha256=9_K2HxctGKjU3GWaI9Rny-kb_iLnS5lScx2WJrbd89I,2339
468
463
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
469
- umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
464
+ umap/templates/umap/content.html,sha256=BHtQMYOOlfQXWFJtSRV2qTnXsgjF7_IKJ7-c4iZpSo0,2379
470
465
  umap/templates/umap/content_footer.html,sha256=170C-9K0a1qkNb4m-x5Vg7bNstvHVEXueDfgPPvXk0I,1130
471
466
  umap/templates/umap/css.html,sha256=6cyaJ2A_NZmXa6ojLa-Y2NFjUPRWTwC2n03GsZQDKJ4,2213
472
467
  umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb-V7HrsqYgo,688
473
468
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
469
  umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
475
- umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
470
+ umap/templates/umap/home.html,sha256=JuzDOx3-T_XyWT1Rwdy50PWvjlRjnhAXMM4-yvVUkts,890
476
471
  umap/templates/umap/js.html,sha256=XCshHdlnBrO7hH5axaQmTrGXgKzmNZQFv1uso4pjitE,2213
477
472
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
478
473
  umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
479
474
  umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
480
- umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
475
+ umap/templates/umap/map_fragment.html,sha256=KdHT1fsIhSjH8oo27qIRn0Fw701qpcWs335ixAVav4M,158
481
476
  umap/templates/umap/map_init.html,sha256=5hX7FE0vN6P70KFf8aKusOCERGzy9JoCPg7oyoIWfLQ,334
482
- umap/templates/umap/map_list.html,sha256=Jb-VU3dQdRWsW80nyyRq1Eb6UrhAoIfGleu1cNMJKwc,673
477
+ umap/templates/umap/map_list.html,sha256=AODXZp1fIWFkKarDZo3OpCD1c7_d3SkOCk49H9V8fqM,975
483
478
  umap/templates/umap/map_table.html,sha256=WrH86ybY_GzzRmALfON_oni9aFuIswgOtpTSJ5h8SEY,5778
484
479
  umap/templates/umap/messages.html,sha256=5W0ScAH0ibLzz_QkAhBm4xt3AOJ3aN9n8oMokdVYw9I,319
485
480
  umap/templates/umap/navigation.html,sha256=gUhdTQOfbMHp1QwnzQYcn3CqQ0RqWUjlDFdT92MerO4,1261
486
481
  umap/templates/umap/password_change.html,sha256=egS_bPFdVyXCoFGMTzcinROoc60_DVV38p1QalAEi8s,1079
487
482
  umap/templates/umap/password_change_done.html,sha256=DqlQJyoQJ4v69pTXdWYybd1LgSqCo6XXvReaMc7zIHs,404
488
- umap/templates/umap/search.html,sha256=716daOxENbRh1YLHO5rk4AYexHT1vOBDUXb4fiDx6Xc,1088
489
- umap/templates/umap/search_bar.html,sha256=-axw392nX9s7ZS0BbDvaV8NUHcNZYLgTikpJIxY4ODo,687
483
+ umap/templates/umap/search.html,sha256=t0vhR7KsFDdmF37OM2Ui3fg8-tq7WZ2IEi2iWwjQbz0,1191
484
+ umap/templates/umap/search_bar.html,sha256=TdaztaEyioXsUf9_YtMIl0Zh_Oez8qUgeM3wfo30vT0,868
490
485
  umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
491
486
  umap/templates/umap/team_confirm_delete.html,sha256=hURs2wcKXl3c0PMATHqRTaoFvQuSb7wWaM3nrHgzCVY,557
492
- umap/templates/umap/team_detail.html,sha256=ETLdGysmEViuAgXCEeCVmOUwkf06ClFwNcLPe156cSw,847
487
+ umap/templates/umap/team_detail.html,sha256=GPfeqlTnyBTLrLxgiksM6XjwA5rd6SESCsjs8d-42PY,853
493
488
  umap/templates/umap/team_form.html,sha256=wwxpxGC4lno4PqNs9pOnlwQ23leKj3kxV3Pbs2UpJb0,2039
494
489
  umap/templates/umap/user_dashboard.html,sha256=UsqL7lRJcX4z9wER6M32RZdFyQxbaHsRcRr7ld5kuDM,2538
495
490
  umap/templates/umap/user_teams.html,sha256=p--dXgYw8Kjt0XTCVcFkwmw_PN2tFv98K9bYTsCdilo,1674
@@ -498,29 +493,30 @@ umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N
498
493
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
499
494
  umap/templatetags/umap_tags.py,sha256=OumX1AI9uWzNP3zbjexTz7lGp10FweW0NRFSsdQ_cuU,1759
500
495
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
501
- umap/tests/base.py,sha256=SUWGz39rmOoWeU8KdBID-w-p0i-LTNt2Z-2hcH5kKtY,4914
496
+ umap/tests/base.py,sha256=kAzUIX5o1Ew8Ih3wtQkVUIiarmrykKkVrbvkOxDoHrg,4940
502
497
  umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
503
- umap/tests/settings.py,sha256=QYfR4B9i7_4tZR5wiiG9LMZdKzdl8PjU2gtNAj2JnBk,857
498
+ umap/tests/settings.py,sha256=-b-RoDlZJXJ6cCFnO2gF-XL-avfHlpUuLrQk-ytgkdY,783
504
499
  umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
505
500
  umap/tests/test_dashboard.py,sha256=w9IgKdupP9JpixLqvNl6UKbglgFVN_dG_R9Zvw1SJy0,2880
506
501
  umap/tests/test_datalayer.py,sha256=-1sTYnmJksgV4jxRQUtw_jRUqaYhh0siqfJe8QfWTqs,9528
507
- umap/tests/test_datalayer_s3.py,sha256=6V3AK22AXkFNjx5__SyBk0Uj0rTDAjJQv67r7D_MDVc,4155
502
+ umap/tests/test_datalayer_s3.py,sha256=le1OvJdMfOmudciECynZfoij3p_lBpclFCqC8tiXFq4,4186
508
503
  umap/tests/test_datalayer_views.py,sha256=ySOyYOvdMjyBbBeyZ6YUS0_RfH2dlovQ5luT7ZXXxuQ,23734
509
504
  umap/tests/test_empty_trash.py,sha256=VuFSNzZ2n4v60WCBeazLn6c8cSgUcUKQWwzN0c7FCIk,1492
510
505
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
511
506
  umap/tests/test_map.py,sha256=vrtheSMQNk45kBIcJ0QY9K7HKYee5yg4Vnp78DyaIwQ,5170
512
- umap/tests/test_map_views.py,sha256=qEQaelvHns2Dggqh-unuPamFmI8-NMd3wIxsghR_XgA,34196
507
+ umap/tests/test_map_views.py,sha256=SuMzw7KrbmbTELT2Qs6amhiziqTOxvFnbXYg1mJAGBs,34231
513
508
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
514
509
  umap/tests/test_statics.py,sha256=xKuxT8Xj5Ii7gKISuiSfDj7dpjmJ2Ierby3Lg-haZCg,1264
515
510
  umap/tests/test_team_views.py,sha256=edmqn_tx4XQ1sEQtB7CpuJT6WwQQiUyUYu8-ESZxFcw,5615
516
511
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
517
512
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
518
- umap/tests/test_views.py,sha256=5KXUH46dtjCItm4nqyrpvgnmM6_YMQ3zjcRPTC8rKBo,15820
513
+ umap/tests/test_views.py,sha256=Y5Cd8Wa_UA3QRE4c6x4eZ3PRdn_XdxXvn4l_YQFeUhw,16878
519
514
  umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
520
515
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
521
516
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
522
517
  umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
523
518
  umap/tests/fixtures/empty_tile.png,sha256=HHezSHZcZimfhpKaSSVOPm14k9OTAyL_eHndptkHGJk,103
519
+ umap/tests/fixtures/remote_data.umap,sha256=knVVYmkgmmS7WpxAnlbmImgP--JFJ6vLUo8M0maFEfc,1247
524
520
  umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
525
521
  umap/tests/fixtures/test_circles_layer.geojson,sha256=8S_zh4MA-5qqm43ETKfGz0hw84vuN2cXB1vTz9Syu3k,6454
526
522
  umap/tests/fixtures/test_import_osm_relation.json,sha256=SjZFqZ-qnxcrUnVkb43jI9iMBF8Il3-OPqxh62nNH9o,4249
@@ -530,6 +526,7 @@ umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-V
530
526
  umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY5LfXnChBaP8,1102
531
527
  umap/tests/fixtures/test_upload_data.umap,sha256=WUmcwcQ4o5_rYw0SOqjnszbk2TOzfynrK3psyApSWsk,5463
532
528
  umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVepdMsBqr7k51pVaCbA,916
529
+ umap/tests/fixtures/test_upload_data_with_iconurl.umap,sha256=eMjat_diYHMCPRyOF5Br1bJWNi9vNsKJerfehIjwILo,3334
533
530
  umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
534
531
  umap/tests/fixtures/test_upload_georss.xml,sha256=lfmVA0qGDakCG48jjsLmSIE1U6iZ9yyFuqqX6Srt8Js,1160
535
532
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
@@ -540,46 +537,47 @@ umap/tests/integration/conftest.py,sha256=pNIxoZ6mNclAwovFt76gzvJaXH940lYXWByf6c
540
537
  umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
541
538
  umap/tests/integration/test_anonymous_owned_map.py,sha256=-j2YUPWNoEit5a_IxYl1q3fGeybvV0NW8ud4QeCa-Hg,11123
542
539
  umap/tests/integration/test_basics.py,sha256=TcTyK8vO-JOgqXEfMIt5ce6MO32cRSLf23cTG6QrIhk,3718
543
- umap/tests/integration/test_browser.py,sha256=oOd7kYgdwmQpWkifppV7Kwa5KmQW-oak7HiNmN5rHfc,20633
540
+ umap/tests/integration/test_browser.py,sha256=wd7GRsfHCWTsZAccvERwcodDKbR_eaxJT4FFXkDOUBU,20476
544
541
  umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
545
542
  umap/tests/integration/test_categorized_layer.py,sha256=XCCK62fBljTEbt0EKoGsHf9hY2bCEIkyeuPxyhEGJDs,5381
546
543
  umap/tests/integration/test_choropleth.py,sha256=Lsd7tszSIua_GUeXhosB-JWk35zYN-3WKRVYI0ZrNSM,3777
547
544
  umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
548
545
  umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
549
- umap/tests/integration/test_conditional_rules.py,sha256=pE07MrmkV9Br_qfa4w_rir28M20NUNhnOyDaX1OTPrw,11896
546
+ umap/tests/integration/test_conditional_rules.py,sha256=2KqEjxot5epBMV3H6ssHAT6-SMZvSgEhRGd7NhUzNa8,12018
550
547
  umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
551
548
  umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n65MvdBmBRVo,5492
552
549
  umap/tests/integration/test_draw_polygon.py,sha256=liYjm2pls9ovYxzcewe3q_MjDjdxzOGsGU-lTWpCEyc,25292
553
550
  umap/tests/integration/test_draw_polyline.py,sha256=sBpu4iawj3W0y6lx4BnsHTmFrvEmcYdfWdMeOZ8vr1Y,14709
554
- umap/tests/integration/test_edit_datalayer.py,sha256=Xkg-cccit0YyVwOrKD0PQAbmYYfVqypmokx44qzs3ek,10317
555
- umap/tests/integration/test_edit_map.py,sha256=YbeolyKgysUjg1xxcQVqSqcH1WWow1BkXXrvhuHwMbA,8234
551
+ umap/tests/integration/test_edit_datalayer.py,sha256=0DWvp62Pwx5ditafEMB8tG_ybe8FO5YG4EMjR-ZwPdY,10012
552
+ umap/tests/integration/test_edit_map.py,sha256=RSf4Pq-eTaXhmPhfUq19dF68a94QlAKU45AQeKNbZdQ,8877
556
553
  umap/tests/integration/test_edit_marker.py,sha256=7FlijPSwRZvXOI6MyYdSIBvKDAbThjFoPf3XwDHi4Uk,4756
557
- umap/tests/integration/test_edit_polygon.py,sha256=avkJu4sSwQhc5wYEXHuTMTJCwff0Er893NTt_wnD5wo,5313
554
+ umap/tests/integration/test_edit_polygon.py,sha256=nuidgs0v5sgFxcQKirtF5ncE3z7_S0hZxbLvPI2-BUU,5224
558
555
  umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
559
556
  umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
560
557
  umap/tests/integration/test_features_id_generation.py,sha256=mGoLIKV3xTc59XSnNPbAgHeG6RjMYwhmaVEmcqSnv-4,1463
561
- umap/tests/integration/test_import.py,sha256=hfD_5Dt432UlnDMaIOzBmjkNgzw026VyGbygdvTmrLo,34504
558
+ umap/tests/integration/test_import.py,sha256=bG2ec8C7a3GHAqP5W0Go4sYEIVRyrkGGQuR0OOlT7A0,36768
562
559
  umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
563
560
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
564
561
  umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
565
- umap/tests/integration/test_optimistic_merge.py,sha256=uUFIpTLxTyS6ZLtARSFslqWvF0aK9G_H_30ldVmxMNM,11817
566
- umap/tests/integration/test_owned_map.py,sha256=XqjsxgMQNmPDej98Z813KkDmaHxvrr7ynMVN1id1oWE,10846
562
+ umap/tests/integration/test_optimistic_merge.py,sha256=fPDb4TpgpggAr6wkr299uh3a9TCbqLxgEMLJ1zCb-1k,11898
563
+ umap/tests/integration/test_owned_map.py,sha256=SSOEpqsaBtCCVhyiyjBFF9dEDvbpSh0Lh0n-WTvFEO4,10796
567
564
  umap/tests/integration/test_picto.py,sha256=q55UBamCweckq5RBqiNOyF1pzgagt3-RJ8dK40MzeuI,9155
568
565
  umap/tests/integration/test_popup.py,sha256=kZy6JAJIs2R6tnPbGEzgz_yX76yMbEAfPqCa6c9P670,1445
569
566
  umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
570
- umap/tests/integration/test_save.py,sha256=jauCFO1bBdE-lLAA70S7iW-P5PGLXu-l1jHoXxiKc64,1371
567
+ umap/tests/integration/test_save.py,sha256=Ia3BsCVLPqImCyjNZ_5qvtMXMq130Y5sD_Ym1xDpAiU,1260
571
568
  umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
572
569
  umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
573
570
  umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
574
571
  umap/tests/integration/test_tableeditor.py,sha256=QY2RdZ7NML0XVK_NzIypiJesuN5fGIXfSm0fvId_BzE,7915
575
572
  umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
576
573
  umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
574
+ umap/tests/integration/test_undo_redo.py,sha256=1wSb43fI3ZpJcegW9AaQZ7a2BcuBSfkMAuT5zBsfO0s,9302
577
575
  umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4CQMXGhJw0LfnFs,6900
578
576
  umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
579
577
  umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
580
- umap/tests/integration/test_websocket_sync.py,sha256=ClGrC8gsBMyE9YOnkBZimUgH77BhTTYtmH_6JpB5Kv0,25832
581
- umap_project-2.9.3.dist-info/METADATA,sha256=l6t2E9DUJje5UB6WmTVq_k-SY3IzIC9w8DtQWQ-4gNY,2962
582
- umap_project-2.9.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
583
- umap_project-2.9.3.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
584
- umap_project-2.9.3.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
585
- umap_project-2.9.3.dist-info/RECORD,,
578
+ umap/tests/integration/test_websocket_sync.py,sha256=iASlErX-nZZWu7zGvSe1KHL68EXnEOTjEL9B6wZK-KQ,28300
579
+ umap_project-3.0.1.dist-info/METADATA,sha256=eDoWzxUGTaJfl77prZoslkkhlljPkPTgWWwqb7jlCkg,3016
580
+ umap_project-3.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
581
+ umap_project-3.0.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
582
+ umap_project-3.0.1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
583
+ umap_project-3.0.1.dist-info/RECORD,,