umap-project 2.1.2__py3-none-any.whl → 2.2.0__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 (211) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +10 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +43 -156
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +97 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +149 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.autocomplete.js +40 -25
  36. umap/static/umap/js/umap.controls.js +248 -361
  37. umap/static/umap/js/umap.core.js +77 -366
  38. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  39. umap/static/umap/js/umap.features.js +65 -43
  40. umap/static/umap/js/umap.forms.js +128 -36
  41. umap/static/umap/js/umap.icon.js +11 -4
  42. umap/static/umap/js/umap.importer.js +78 -58
  43. umap/static/umap/js/umap.js +206 -192
  44. umap/static/umap/js/umap.layer.js +86 -46
  45. umap/static/umap/js/umap.permissions.js +13 -9
  46. umap/static/umap/js/umap.popup.js +26 -30
  47. umap/static/umap/js/umap.share.js +12 -9
  48. umap/static/umap/js/umap.tableeditor.js +4 -6
  49. umap/static/umap/js/umap.ui.js +10 -60
  50. umap/static/umap/locale/am_ET.js +243 -227
  51. umap/static/umap/locale/am_ET.json +21 -9
  52. umap/static/umap/locale/ar.js +243 -227
  53. umap/static/umap/locale/ar.json +21 -9
  54. umap/static/umap/locale/ast.js +243 -227
  55. umap/static/umap/locale/ast.json +21 -9
  56. umap/static/umap/locale/bg.js +243 -227
  57. umap/static/umap/locale/bg.json +21 -9
  58. umap/static/umap/locale/br.js +253 -237
  59. umap/static/umap/locale/br.json +25 -13
  60. umap/static/umap/locale/ca.js +243 -227
  61. umap/static/umap/locale/ca.json +21 -9
  62. umap/static/umap/locale/cs_CZ.js +243 -227
  63. umap/static/umap/locale/cs_CZ.json +21 -9
  64. umap/static/umap/locale/da.js +243 -227
  65. umap/static/umap/locale/da.json +21 -9
  66. umap/static/umap/locale/de.js +243 -227
  67. umap/static/umap/locale/de.json +21 -9
  68. umap/static/umap/locale/el.js +243 -227
  69. umap/static/umap/locale/el.json +21 -9
  70. umap/static/umap/locale/en.js +243 -234
  71. umap/static/umap/locale/en.json +22 -10
  72. umap/static/umap/locale/en_US.json +21 -9
  73. umap/static/umap/locale/es.js +243 -227
  74. umap/static/umap/locale/es.json +21 -9
  75. umap/static/umap/locale/et.js +243 -227
  76. umap/static/umap/locale/et.json +21 -9
  77. umap/static/umap/locale/eu.js +227 -199
  78. umap/static/umap/locale/eu.json +1 -1
  79. umap/static/umap/locale/fa_IR.js +243 -227
  80. umap/static/umap/locale/fa_IR.json +21 -9
  81. umap/static/umap/locale/fi.js +243 -227
  82. umap/static/umap/locale/fi.json +21 -9
  83. umap/static/umap/locale/fr.js +243 -234
  84. umap/static/umap/locale/fr.json +21 -9
  85. umap/static/umap/locale/gl.js +243 -227
  86. umap/static/umap/locale/gl.json +21 -9
  87. umap/static/umap/locale/he.js +243 -227
  88. umap/static/umap/locale/he.json +21 -9
  89. umap/static/umap/locale/hr.js +243 -227
  90. umap/static/umap/locale/hr.json +21 -9
  91. umap/static/umap/locale/hu.js +243 -234
  92. umap/static/umap/locale/hu.json +21 -9
  93. umap/static/umap/locale/id.js +243 -227
  94. umap/static/umap/locale/id.json +21 -9
  95. umap/static/umap/locale/is.js +243 -227
  96. umap/static/umap/locale/is.json +21 -9
  97. umap/static/umap/locale/it.js +243 -234
  98. umap/static/umap/locale/it.json +21 -9
  99. umap/static/umap/locale/ja.js +243 -227
  100. umap/static/umap/locale/ja.json +21 -9
  101. umap/static/umap/locale/ko.js +243 -227
  102. umap/static/umap/locale/ko.json +21 -9
  103. umap/static/umap/locale/lt.js +243 -227
  104. umap/static/umap/locale/lt.json +21 -9
  105. umap/static/umap/locale/ms.js +243 -234
  106. umap/static/umap/locale/ms.json +22 -10
  107. umap/static/umap/locale/nl.js +246 -230
  108. umap/static/umap/locale/nl.json +21 -9
  109. umap/static/umap/locale/no.js +243 -227
  110. umap/static/umap/locale/no.json +21 -9
  111. umap/static/umap/locale/pl.js +243 -227
  112. umap/static/umap/locale/pl.json +21 -9
  113. umap/static/umap/locale/pl_PL.json +21 -9
  114. umap/static/umap/locale/pt.js +243 -227
  115. umap/static/umap/locale/pt.json +21 -9
  116. umap/static/umap/locale/pt_BR.js +243 -227
  117. umap/static/umap/locale/pt_BR.json +21 -9
  118. umap/static/umap/locale/pt_PT.js +243 -227
  119. umap/static/umap/locale/pt_PT.json +21 -9
  120. umap/static/umap/locale/ro.js +243 -227
  121. umap/static/umap/locale/ro.json +21 -9
  122. umap/static/umap/locale/ru.js +243 -227
  123. umap/static/umap/locale/ru.json +21 -9
  124. umap/static/umap/locale/si.js +1 -1
  125. umap/static/umap/locale/si.json +1 -1
  126. umap/static/umap/locale/sk_SK.js +243 -227
  127. umap/static/umap/locale/sk_SK.json +21 -9
  128. umap/static/umap/locale/sl.js +243 -227
  129. umap/static/umap/locale/sl.json +21 -9
  130. umap/static/umap/locale/sr.js +243 -227
  131. umap/static/umap/locale/sr.json +21 -9
  132. umap/static/umap/locale/sv.js +243 -227
  133. umap/static/umap/locale/sv.json +21 -9
  134. umap/static/umap/locale/th_TH.js +243 -227
  135. umap/static/umap/locale/th_TH.json +21 -9
  136. umap/static/umap/locale/tr.js +243 -227
  137. umap/static/umap/locale/tr.json +21 -9
  138. umap/static/umap/locale/uk_UA.js +243 -227
  139. umap/static/umap/locale/uk_UA.json +21 -9
  140. umap/static/umap/locale/vi.js +243 -227
  141. umap/static/umap/locale/vi.json +21 -9
  142. umap/static/umap/locale/vi_VN.json +21 -9
  143. umap/static/umap/locale/zh.js +243 -227
  144. umap/static/umap/locale/zh.json +21 -9
  145. umap/static/umap/locale/zh_CN.json +21 -9
  146. umap/static/umap/locale/zh_TW.Big5.json +21 -9
  147. umap/static/umap/locale/zh_TW.js +243 -234
  148. umap/static/umap/locale/zh_TW.json +21 -9
  149. umap/static/umap/map.css +124 -264
  150. umap/static/umap/test/DataLayer.js +1 -1
  151. umap/static/umap/test/Feature.js +0 -226
  152. umap/static/umap/test/Map.js +0 -304
  153. umap/static/umap/test/Polygon.js +0 -256
  154. umap/static/umap/test/Polyline.js +0 -116
  155. umap/static/umap/test/TableEditor.js +10 -10
  156. umap/static/umap/test/Util.js +0 -521
  157. umap/static/umap/test/index.html +1 -5
  158. umap/static/umap/unittests/URLs.js +1 -1
  159. umap/static/umap/unittests/utils.js +610 -0
  160. umap/static/umap/vars.css +9 -0
  161. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  162. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +1 -0
  163. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  164. umap/templates/umap/css.html +2 -0
  165. umap/templates/umap/js.html +0 -1
  166. umap/templates/umap/map_detail.html +4 -0
  167. umap/templates/umap/map_table.html +12 -10
  168. umap/templatetags/umap_tags.py +5 -0
  169. umap/tests/conftest.py +9 -0
  170. umap/tests/fixtures/test_upload_data.csv +2 -1
  171. umap/tests/fixtures/test_upload_data.umap +171 -0
  172. umap/tests/fixtures/test_upload_data_osm.json +33 -0
  173. umap/tests/integration/conftest.py +16 -0
  174. umap/tests/integration/test_anonymous_owned_map.py +30 -5
  175. umap/tests/integration/test_basics.py +21 -0
  176. umap/tests/integration/test_browser.py +16 -36
  177. umap/tests/integration/test_choropleth.py +89 -0
  178. umap/tests/integration/test_collaborative_editing.py +30 -1
  179. umap/tests/integration/test_dashboard.py +10 -0
  180. umap/tests/integration/test_datalayer.py +132 -0
  181. umap/tests/integration/test_draw_polygon.py +363 -0
  182. umap/tests/integration/test_draw_polyline.py +325 -0
  183. umap/tests/integration/test_edit_datalayer.py +145 -6
  184. umap/tests/integration/test_edit_map.py +202 -0
  185. umap/tests/integration/test_edit_marker.py +120 -0
  186. umap/tests/integration/test_edit_polygon.py +122 -0
  187. umap/tests/integration/test_facets_browser.py +132 -11
  188. umap/tests/integration/test_import.py +407 -10
  189. umap/tests/integration/test_map.py +36 -54
  190. umap/tests/integration/test_map_list.py +28 -0
  191. umap/tests/integration/test_owned_map.py +24 -6
  192. umap/tests/integration/test_picto.py +25 -38
  193. umap/tests/integration/test_querystring.py +9 -15
  194. umap/tests/integration/test_slideshow.py +0 -5
  195. umap/tests/integration/test_statics.py +3 -2
  196. umap/tests/integration/test_tableeditor.py +23 -0
  197. umap/tests/integration/test_tilelayer.py +10 -0
  198. umap/tests/integration/test_view_marker.py +64 -0
  199. umap/tests/integration/test_view_polygon.py +59 -0
  200. umap/tests/integration/test_view_polyline.py +51 -0
  201. umap/tests/test_map_views.py +13 -0
  202. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/METADATA +12 -12
  203. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/RECORD +206 -187
  204. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/WHEEL +1 -1
  205. umap/static/umap/test/Choropleth.js +0 -245
  206. umap/static/umap/test/Permissions.js +0 -74
  207. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  208. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  209. umap/tests/integration/test_drawing.py +0 -243
  210. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/entry_points.txt +0 -0
  211. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,14 +1,14 @@
1
- umap/__init__.py,sha256=g3cxz98sq2sH94EJfsXt9vgetLlENXp3IEKtEY6wMyg,18
1
+ umap/__init__.py,sha256=aZAvnCRS5sYxgo1WuuhkQzyGx_DsSN_7Yk4-c1aMCzU,18
2
2
  umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
5
- umap/context_processors.py,sha256=HhRfnUElWwWCMk9vtXkyR3fpPcpagSpvRpqh8jYL8Lk,448
5
+ umap/context_processors.py,sha256=DhBi0zspPjiULRqrcY7zWk_5AE_9qL4ZrFO_cPtwPgc,489
6
6
  umap/decorators.py,sha256=ocbT65HKHy6rB8zVvuJfSYWbI7-se8wuvcuFQr-34n0,2004
7
7
  umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
8
8
  umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
9
9
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
10
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
- umap/models.py,sha256=uraqRRDec7h0DWALb2yMJxaGgYIAN4BZTv8OYnktaWc,17519
11
+ umap/models.py,sha256=vzm5lRd-juy3WP-CHW5glU2drQi9LU-anS2IOzgUEFU,17488
12
12
  umap/storage.py,sha256=bdjjdn768fZJYsyDNBxgwLvSu6rhde_Cc6yzyZZDmSg,2282
13
13
  umap/urls.py,sha256=frMCdfDQ2QB39xxqI8I12EeT-yChn5KDwDp-kQxp930,6876
14
14
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
@@ -23,7 +23,7 @@ umap/locale/ast/LC_MESSAGES/django.mo,sha256=KUDcu-q8RC_ZdxpQ6I_9cXxfA4X7sCrHddB
23
23
  umap/locale/ast/LC_MESSAGES/django.po,sha256=cb9rEL6AdZKMwXrjEDThG2Wok-fHLTdWlRReg6DUdMA,8007
24
24
  umap/locale/bg/LC_MESSAGES/django.mo,sha256=YisH_thI9rdxn7wmQ5tEHComNK7TmLxP4fcDk1QGqf4,5921
25
25
  umap/locale/bg/LC_MESSAGES/django.po,sha256=nlyZIP-psj_Jqafk4E6rO5-pEMMO_awNxYoANRXPHQA,13713
26
- umap/locale/br/LC_MESSAGES/django.mo,sha256=yMuZQojNDzsoPh0xpvJCdn1IuVzD0UtoPbpkiWBz4QE,8707
26
+ umap/locale/br/LC_MESSAGES/django.mo,sha256=6KrmnQh6oYmLucVs6ThT88--0gY9es8K7GCHA1tqpO0,9529
27
27
  umap/locale/br/LC_MESSAGES/django.po,sha256=qygsPR_EYl2JrDuCx8p0b0IHV7l99BDyAYKPDQ_Q3WY,14711
28
28
  umap/locale/ca/LC_MESSAGES/django.mo,sha256=1R7hKhSAkV1LM2HQ4lc54I9YwhGb_D8JddncpxK8Umg,7512
29
29
  umap/locale/ca/LC_MESSAGES/django.po,sha256=P5vksWA9RkuW5Xf3h9NyGQqanSNJh5c6yH5PAV4p380,13707
@@ -36,7 +36,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs
36
36
  umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
37
37
  umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
38
38
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
39
- umap/locale/en/LC_MESSAGES/django.po,sha256=D9GmEm1jBaKyYk6S5eUR3oBtw0TyscH6dsYwbODxd3M,10790
39
+ umap/locale/en/LC_MESSAGES/django.po,sha256=p8Tg5mwqZ7s2hkByQXfnwy_VLcsxLGMyojQiQqIZ-QQ,10776
40
40
  umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
41
41
  umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
42
42
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
@@ -55,13 +55,13 @@ umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMj
55
55
  umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
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=5Sgl3mI9651nDWdsd3WoKFREdFd0kTHbIAWCnlMNv34,10460
58
+ umap/locale/hu/LC_MESSAGES/django.mo,sha256=GNwKUjWvkLCpIMe44qV2v3Xzy63lNMXEfAxwncGpTlM,10551
59
59
  umap/locale/hu/LC_MESSAGES/django.po,sha256=Rxztnol_ufMta9xiC_ZqeRAXPtuBMVwAdV1beihQCek,15164
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
62
  umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
63
63
  umap/locale/is/LC_MESSAGES/django.po,sha256=tkEdFtLUQlSwn7AcpKrHJEpw__HNEHkJzqABkVk4pUk,13438
64
- umap/locale/it/LC_MESSAGES/django.mo,sha256=xJ0oc0hX21aUHPkR_8fmG8h9fH9cVL2WRcGZ7oKvhvE,10053
64
+ umap/locale/it/LC_MESSAGES/django.mo,sha256=bFSw9toYP6AwZTATVKOr79Qg5E4pkEGNrlRE70vrusc,10137
65
65
  umap/locale/it/LC_MESSAGES/django.po,sha256=F-jYT2dKOJM1TaH5DK7cQPLK7swxSlPzuZ76_cue2hE,15266
66
66
  umap/locale/ja/LC_MESSAGES/django.mo,sha256=aul0MIkp-B49WhZofKy7_gi9wqFe_Cq3Vrq7kU_z6DA,6636
67
67
  umap/locale/ja/LC_MESSAGES/django.po,sha256=YjBmabk41z6CCvwAuPhyprUYJLXKsJoCp5_njUyVIm0,13543
@@ -69,7 +69,7 @@ umap/locale/ko/LC_MESSAGES/django.mo,sha256=os9Vo9pdSyMVWMN3ToDdu19-VwM1PJtPlPG2
69
69
  umap/locale/ko/LC_MESSAGES/django.po,sha256=HBqpxmWXtrOBmjYIaPnNJmFX3QfNtvGLjl0bNZj1seA,13453
70
70
  umap/locale/lt/LC_MESSAGES/django.mo,sha256=cA9gb9IAjuYBVh9QIKuniMpDr8CmgMt_cUP99W5it5s,5922
71
71
  umap/locale/lt/LC_MESSAGES/django.po,sha256=adw4Q98CDmXZht37z7lvMTI3tzGHjHxKhbEZ3N5x_y8,13113
72
- umap/locale/ms/LC_MESSAGES/django.mo,sha256=88GIQO91aWcTDt7CK4f5ea6IR8KOLR23K6AVOAvE7eY,9874
72
+ umap/locale/ms/LC_MESSAGES/django.mo,sha256=Y3ZwA7seXuTJhxuiNMueneLo3z23X8lJnFVohymvpzo,9966
73
73
  umap/locale/ms/LC_MESSAGES/django.po,sha256=dGDEpdNNFSMcTwAOTuEbberEGqIyAT28KbYsA8gq8Nk,14661
74
74
  umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrvUq6iMAA,6056
75
75
  umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
@@ -133,23 +133,27 @@ umap/migrations/0016_pictogram_category.py,sha256=xSNApTToAXVzYSH28ZVqfZq8q0ODSI
133
133
  umap/migrations/0017_migrate_to_openstreetmap_oauth2.py,sha256=b8VTzVGK_PJCHfTsc8o8HlGiwzjklcziYKIuoZzFwYE,393
134
134
  umap/migrations/0018_datalayer_uuid.py,sha256=HukF-EgWp4BlgZyK5hWAYhCkitHxACSgDEMfFWW0CUk,1927
135
135
  umap/migrations/0019_migrate_internal_remote_datalayers.py,sha256=NZOhTwX3UJykn2MZ5x_pcSw2_gULI3Yc9TGwsZt741Q,1601
136
+ umap/migrations/0020_alter_tilelayer_url_template.py,sha256=e6DC3PNSiyyCAwS64D8d4BZiiQa3bCuyoi230L3SPH4,486
137
+ umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQayarlkbUbfW6bj_vnKGA,336
136
138
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
139
  umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,1597
138
- umap/settings/base.py,sha256=rtulVGGfqaBJoZMvXeu9QrkOg-g3QhkXYTmgSEPjSOM,9844
140
+ umap/settings/base.py,sha256=CREsol-R6r8rI6t-0BL6rNhDdR0fPZew01HFPXBI2Ds,9924
139
141
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
140
142
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
141
143
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- umap/static/umap/base.css,sha256=YQtsvzIJJe9O8F34z9lev3vIGM-JwM9lZcvMJGYqzDI,21590
144
+ umap/static/umap/base.css,sha256=qK4nE7lT07MpiH3Qv6vrptARAz57uZShSMm8MgXDgoY,18689
143
145
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
144
- umap/static/umap/content.css,sha256=PxavrwRn3prdgXnnMavSp_5bEfuokje_27Lzyu2NwHs,11688
146
+ umap/static/umap/content.css,sha256=pXtVn8r0EStDr7h9Cw5HKRtcFroBIIoffFqk16SB6Xw,11402
145
147
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
146
148
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
147
- umap/static/umap/map.css,sha256=Eu_GZWKKJ9chCTSZ62fCMcfEQgEq2YKBnke6tj6OvT8,42997
149
+ umap/static/umap/map.css,sha256=rwHf6YAGajJjN7gqEtgbfJ621pUG8ECg9vdPi2ly3sQ,39523
148
150
  umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
149
151
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
150
152
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
151
153
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
152
- umap/static/umap/vars.css,sha256=TT0jijfYX3NWbTLvy1tPBZ-2eblwHw0g_Bt7085qqZQ,387
154
+ umap/static/umap/vars.css,sha256=AYxw4HHJubB0A8Ns_3LFRQiDgZyKqJzgDT76gvWWFzM,606
155
+ umap/static/umap/css/icon.css,sha256=zUUTI_vWOEMXqbykwq-3E6RyXlLko40SL4153AfxRkg,2198
156
+ umap/static/umap/css/panel.css,sha256=DYaSN_RCRiWYtK_FkS0fVEXYrr0bezcFTb_aZwM3Hzk,3283
153
157
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
154
158
  umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
155
159
  umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
@@ -161,10 +165,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
161
165
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
162
166
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
163
167
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
164
- umap/static/umap/img/16-white.svg,sha256=zOp7SOTF5N0UixoriN-YPHcUWJ8oVTsptENVvCwEWR8,35034
165
- umap/static/umap/img/16.svg,sha256=aWuJ2C7pahh1KPV8Q8ZQnCFFlrbvDfcmP4PTldvcNi8,21424
166
- umap/static/umap/img/24-white.svg,sha256=tq2MLPvVKz4h4dHCmMp1-_brBmudqyCcMcSShhnDh24,17550
167
- umap/static/umap/img/24.svg,sha256=jpi6lDVbN89-zyH3VwNf0pOKzjOfuF9l9yPV-NpE1cI,25175
168
+ umap/static/umap/img/16-white.svg,sha256=qvCWtxEyFGjinV6Zm6SYczI3FYDG2ar-SoLCke329Qo,35880
169
+ umap/static/umap/img/16.svg,sha256=l0dWn8Cmzba-oA28X4LvENwNwV45gr5S-is-nWOOD8o,23069
170
+ umap/static/umap/img/24-white.svg,sha256=PE1gVqezV0mTFmYwmaG2r1n_HODeADkZNd-9Wb5gOCo,17592
171
+ umap/static/umap/img/24.svg,sha256=rEsLjRM1Unxqi_Lw9kc6Npy86jk5wbhWS8ZkVfM_GR0,24881
168
172
  umap/static/umap/img/edit.svg,sha256=I3YHkH3X6CQP0TkoKev-9yQD-DeKobDl6MN-bAH2ghs,554
169
173
  umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
170
174
  umap/static/umap/img/icon-delete.svg,sha256=ORwww_L88Co87ImlpKw4hj1DYG8KMbj2l5q6lxToRNg,386
@@ -181,160 +185,162 @@ umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-
181
185
  umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
182
186
  umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
183
187
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
184
- umap/static/umap/img/source/16-white.svg,sha256=sZQhsA8bf5EyxjxksJMtlmx8pyYbI-OZiFiFX4xSuj4,73381
185
- umap/static/umap/img/source/16.svg,sha256=OHwbeoiEMXfGLSzCauzOdBEkNzCr_sC4sNB1sTn5JJ0,43293
186
- umap/static/umap/img/source/24-white.svg,sha256=31n0rwyxcoJ69Mm2hvSAifQV0x00px0z-Jkf__UetnA,29369
187
- umap/static/umap/img/source/24.svg,sha256=rocP2xyMQdigy8noiipCM8hJNOc9tvF4uoXUPFBAjxY,38901
188
- umap/static/umap/js/umap.autocomplete.js,sha256=h3Ap9towVTChGSSZaMCrhWjQUPCrGcvW6fD46dD3pTs,7740
189
- umap/static/umap/js/umap.controls.js,sha256=LnfUQ4bGc5NojBx9o-BzAjPCvCE_8NuJ_RZYs7hQjxA,43967
190
- umap/static/umap/js/umap.core.js,sha256=aiTfkNI8Z13OiblpYEis6YrRNOObhVn70uikgBkkCIc,26116
191
- umap/static/umap/js/umap.datalayer.permissions.js,sha256=kpGb7sZKdcSj0QhmGZ56LFtubysc68S48e3YzeXQNNs,1947
192
- umap/static/umap/js/umap.features.js,sha256=S6WYoRy63H5cvDpxOESWu6xkGksWpSYGbYyOXkWNuUQ,34677
193
- umap/static/umap/js/umap.forms.js,sha256=KOtUkqVA7rmwi7O5PPqj_t3QusCqkRRbEbc2lcIENY0,26940
194
- umap/static/umap/js/umap.icon.js,sha256=woRRVru2jSOl0Ah5DAl2vZCTg3rsPeNSoTt57IIcUOg,7546
195
- umap/static/umap/js/umap.importer.js,sha256=B4kzV0VWrQK7ovIb2LDDdyaDK6tY7Q6TQejXtR8IakM,5305
196
- umap/static/umap/js/umap.js,sha256=TjWMc3Ardf7wjr895lKM7ZmvoVG8F78_FhtF8VC2rt0,55950
197
- umap/static/umap/js/umap.layer.js,sha256=nvAihcDr6XFIZ-eSWgKkqXM5GJWmOeuKZBJnL28lkS4,47423
198
- umap/static/umap/js/umap.permissions.js,sha256=d7M3aoQ4QliSD7lFnCWgoUN4pHax1-6JnerH8BjvubY,6097
199
- umap/static/umap/js/umap.popup.js,sha256=jZzwRbH3iIJlq35XiZa5Ugnw3KkplWckEgJmW7CAOWY,10108
200
- umap/static/umap/js/umap.share.js,sha256=36IjZW9Gd_b-1OMD95-hJaKc2etPazILCDNS4iZJqCA,7774
188
+ umap/static/umap/img/source/16-white.svg,sha256=MS_S0U-3bjOlo4hKslp-cPdbBOlUtWC4JlSH7Os1FpY,68449
189
+ umap/static/umap/img/source/16.svg,sha256=iGpWSmNqLIddgToMXby2b4EBBMCtW1ezUfOWGF26KIw,45350
190
+ umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
191
+ umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
192
+ umap/static/umap/js/umap.autocomplete.js,sha256=yKkkO2U34lwgy37RfuMSv9npLfmvacWbRjDnc96M2wU,7942
193
+ umap/static/umap/js/umap.controls.js,sha256=ieY9Bv92JPi2x9q35VdwzpEN2EA_iaJJ1X7BJPu5bGU,39938
194
+ umap/static/umap/js/umap.core.js,sha256=FvHCMgQ_55IzUDxFZ66aWYOu1rDtk9WTvmNuamBmAnc,17918
195
+ umap/static/umap/js/umap.datalayer.permissions.js,sha256=_wqTme7S7AvMOXSWecLm_iJBCV65V_KUH9ABKJg1H-8,1948
196
+ umap/static/umap/js/umap.features.js,sha256=2FySm3Ks0VWDpYnDnIGNcLsYnDdTbMVHQm5VK3ZeCyI,35300
197
+ umap/static/umap/js/umap.forms.js,sha256=_83UJB8IYTTeTtJN0iuKumoHTzT2b_Llu2mHzaoQuEU,29262
198
+ umap/static/umap/js/umap.icon.js,sha256=8dzfEN5fgP2jXYTbN6B-xjrB94A6nXHCXO2RKoTC0S0,7594
199
+ umap/static/umap/js/umap.importer.js,sha256=8WodN0j0cS0Zc9Q96G7q6Ahlmv-C9NAgUyCyp1o1DOM,5704
200
+ umap/static/umap/js/umap.js,sha256=MoWi16moyhB3gr2yf0lYRRbsH0XaYA-5GAFe0ESyWyc,56446
201
+ umap/static/umap/js/umap.layer.js,sha256=UZXVOwvKmy-nNC90pIGCFbwoZL9YxwAjEmhKZiwBAko,48944
202
+ umap/static/umap/js/umap.permissions.js,sha256=u5OoAaMNF5b055NzxshvG1XHzEt-ji7lcrn7USKzCU4,6168
203
+ umap/static/umap/js/umap.popup.js,sha256=zjvY4ZtSdsKi1VJXg20Ka6dLOR5VmhhAR9Zb4Yp8YjA,9759
204
+ umap/static/umap/js/umap.share.js,sha256=nUM4r1QZSw6s9lIxgXvMMcG-udsauGWFOrayC9_uEa4,7766
201
205
  umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
202
- umap/static/umap/js/umap.tableeditor.js,sha256=GP5fYBTRAw7hLVB_k2H2KvECOBU6DLQF-MIZhsY3UAo,4075
203
- umap/static/umap/js/umap.ui.js,sha256=xHj0owBiDTgahLsj6fKq3ur0JgNwJFu9BtT4uzbDQag,7699
206
+ umap/static/umap/js/umap.tableeditor.js,sha256=eZucKKD_KwlVEcIBVyAUxK1H_hiTk3t6RP0r-6Qn2DY,3934
207
+ umap/static/umap/js/umap.ui.js,sha256=2VJYOmKF7ZvyOePF89LSG3W_O7zA15Kf1X1BRujpdek,6072
204
208
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
205
- umap/static/umap/js/modules/browser.js,sha256=-RPyTmnd8_d9FhkmL4wP3DlQHkaoA9QIAdkCwoEptpA,5477
206
- umap/static/umap/js/modules/global.js,sha256=tp8tCmAqKlSVNPi7w3n9wiMTb5Wh-DVh_XedZz_Lo60,454
207
- umap/static/umap/js/modules/i18n.js,sha256=5EmqVuxda24BvXPZb8uOXNc21vHs7Rx8RF9fVZsnTR8,1207
209
+ umap/static/umap/js/modules/browser.js,sha256=XLw6WgHtQh6kOUTa-_zFuwA2Do4X90G86tXrWMagm6s,6597
210
+ umap/static/umap/js/modules/dompurify.js,sha256=KszkEmBlua9zMXQ0XSytpGJTm7dU6V7ishF1VSyRwTA,340
211
+ umap/static/umap/js/modules/facets.js,sha256=IV0txICm4dnTlv0lzor3yTb7gofBfaEAXp5rV3KPXJk,4130
212
+ umap/static/umap/js/modules/global.js,sha256=xmgPwJ5bZg7HYFe3P2eGdF9AOQ2vj1L7S8AdMq4tUPc,643
213
+ umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
208
214
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
209
- umap/static/umap/js/modules/request.js,sha256=v10pLYqFcKeQeMTcjC1Vm9wlp5ehRFKQ65HfT7VrYLY,4007
210
- umap/static/umap/js/modules/schema.js,sha256=vP60-MU4rRowRrRQzWRQbT9vu4Klrp5sRTAy_ZgYyxQ,8926
211
- umap/static/umap/js/modules/urls.js,sha256=isqV_dslYuNQIErzf5Wgq-oZqORRK4as6e78sfQgaUo,1308
212
- umap/static/umap/js/modules/utils.js,sha256=sjCXiF3fb86evhDDJBDSRHjXTYTcKtjeC7SoNpFl680,558
213
- umap/static/umap/locale/am_ET.js,sha256=R2dGebdXkPi_3vzW3U40Zjy5Ana-m6oyTino4HNMAqM,29438
214
- umap/static/umap/locale/am_ET.json,sha256=FAeJw-0Nt0v44WZbe-m0YHs5fxxv0TDQGfeAAkqyFHs,29174
215
- umap/static/umap/locale/ar.js,sha256=0D0cJse2maPMVyopcm61ukZWRyuJIEL98ksy7pFfj3g,25652
216
- umap/static/umap/locale/ar.json,sha256=mvh_BZ5Tx9SQlsX9u5ny9Y4pKgvOCNnMLm27zH8uiT8,25404
217
- umap/static/umap/locale/ast.js,sha256=V5WwvlePQkSUvdymO1bYukMnJ1IdDDrrD0wmcn_vk-M,25205
218
- umap/static/umap/locale/ast.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
219
- umap/static/umap/locale/bg.js,sha256=sJWZLRHAuLh_rF86Nn5Vy9A-YGA7rQ_05ESOR5MOraE,28526
220
- umap/static/umap/locale/bg.json,sha256=_74XZ1wE2xge9OYHpdHHNY0KiVtje58zpGwGI5Qw6VY,28218
221
- umap/static/umap/locale/br.js,sha256=fHb5s_xD4nwtiIFohwxOdlYmwzk9_qGHm48ieJkn2DY,26641
222
- umap/static/umap/locale/br.json,sha256=hKG8CeUaHPHHahIYjaG18C6QPAC3AJyZMwAhCaZW3M0,26494
223
- umap/static/umap/locale/ca.js,sha256=F6E1BZVeyKZoVYDpaGZGJm_cJRx9d5SKwkyoTnXEZDo,26165
224
- umap/static/umap/locale/ca.json,sha256=CFIqPaIdJ74jSCK9WAt8G2rFg3xLyMtA0RLJ7XjLLyA,25871
225
- umap/static/umap/locale/cs_CZ.js,sha256=8p4aHku0L8UexAAIxe59m-GM_NMPkeEdsfZ1L5lpgII,27351
226
- umap/static/umap/locale/cs_CZ.json,sha256=VnLNA9EGT9vheBBEdwA92kN4yfHQD9lRWzw10RU55YA,27022
227
- umap/static/umap/locale/da.js,sha256=G-9tV7CvP9BG9Nvj42dRiMk5We_31VytoW8b5WkxHbA,25551
228
- umap/static/umap/locale/da.json,sha256=BUGdBaNro91txQwp3GA2Kz2G7j72xCKYadUaWD2uPV4,25311
229
- umap/static/umap/locale/de.js,sha256=WEaOHb7VkbdKZz-EHTqGqqaAU2k2z71Kl1Ua__iOnig,27402
230
- umap/static/umap/locale/de.json,sha256=cZZGVzS3_MyEdj6l8lcBhXlZJAPiQiSOR5w9xR1o-vI,27114
231
- umap/static/umap/locale/el.js,sha256=DXRcmeIJwqcTl4LcvzkRjR8Cdy7N9raadJnPw7yZIjc,37100
232
- umap/static/umap/locale/el.json,sha256=dDDPh-md8Oqu3Lp-Dqzy3X3j0TvPS0-5liRpTltxvMc,36620
233
- umap/static/umap/locale/en.js,sha256=rRomN53Qe340ZyCG4RhrOA1ruWxbJyye-bRHGsF_-gU,25541
234
- umap/static/umap/locale/en.json,sha256=5Nd3kMsFRFOfzUa-hlQg6SQGk0w3rjrna0aGjHbzlCU,24955
235
- umap/static/umap/locale/en_US.json,sha256=xH78ShS9hu3lzvkxNFXj5qx2aoEPAIY37OskYy5u9_U,24683
236
- umap/static/umap/locale/es.js,sha256=qQ7B2hoW6HKrli79N6L9WPflGGl3CTV4v-RifXIB8ic,27697
237
- umap/static/umap/locale/es.json,sha256=_yQgQB7q6UFOVtSEIzcus71PGpc8BKUmjbKWdIXNFsM,27361
238
- umap/static/umap/locale/et.js,sha256=2eBK_7KST4Rqr9ThuiFlKSLJ7d1cbE9-rMsKXf4PdHI,25406
239
- umap/static/umap/locale/et.json,sha256=gBGLZ5A1aNoR5g4SwOxW-mfyne4ZQZrEbP1wmGNgoZo,25160
240
- umap/static/umap/locale/eu.js,sha256=NZYhxkWnzd5Kx14p5nSpNt9wNOsQvTGGrYrrxQ321Vs,24242
241
- umap/static/umap/locale/eu.json,sha256=YDyhJQajJOZPDZyKmt-UzISm15skFbLKKyv28d_nWTQ,24997
242
- umap/static/umap/locale/fa_IR.js,sha256=wq38Vjc5Gh5TieJ4WBY25q7F-UfqouQ5_9v_-tKZk6k,31737
243
- umap/static/umap/locale/fa_IR.json,sha256=X2tuw3MbZXmIvlbZrsOcbhUNtKqs6A3FWw2kNaahulU,31454
244
- umap/static/umap/locale/fi.js,sha256=mI8uosJq5dP5PRnP619y9n_DxEMz6GX8vumeX1wMhaE,26143
245
- umap/static/umap/locale/fi.json,sha256=fOfdlDIEspEM0g9YDDvNK3ULr-X_7Az0BzOGs8tvjk4,25900
246
- umap/static/umap/locale/fr.js,sha256=bHl3tqbu4SlgGK3RUgaDZ2XZbDs6etF-K9QjTFQOo_E,27867
247
- umap/static/umap/locale/fr.json,sha256=E4Tl_-99a0zA-9-tNjeaXl3jZ8EBFbSaST9c4rcFMH0,27238
248
- umap/static/umap/locale/gl.js,sha256=ZNlvs7owimN92VIZKkH4kmw7ZJg6HbMBIpgUyboKAlY,26740
249
- umap/static/umap/locale/gl.json,sha256=YaS7IIBB8Zrtpqwa4IYt6XqXN3ZBJJes6q4qcCwL7Xk,26477
250
- umap/static/umap/locale/he.js,sha256=u3L4N4j7J5RtsPfyzwPeYAP2SOnJ8A45uwcf5xelCz4,28978
251
- umap/static/umap/locale/he.json,sha256=d_sVS9j5jEsel27ALqXaXwDYGCev4eKoR_x3wIUiuTU,28705
252
- umap/static/umap/locale/hr.js,sha256=jilQQ05T1V7co7oV1lBBwQtqM6LBd12YyOaZllwKT8A,25374
253
- umap/static/umap/locale/hr.json,sha256=HobNY7AcW7XbYbKwyqSQfskEUAp_LUzeEZzRuO9Cfnk,25123
254
- umap/static/umap/locale/hu.js,sha256=m7yVzgOUAkkv_Btj-JHCfjbSynbixG9RhSNDlEtiulI,29219
255
- umap/static/umap/locale/hu.json,sha256=-HbsptPL3eeKmtZ5aoas5f6eFflQ9rWnhQuXRf-06vA,28495
256
- umap/static/umap/locale/id.js,sha256=UwzRW3fspX3vZChWNpjPl5HSfsjaDYu_FJsgMkbJUkk,25203
257
- umap/static/umap/locale/id.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
258
- umap/static/umap/locale/is.js,sha256=7-VEx4F0KKFdzKHJ0B8eoAShgVVsjHFHn0WGw0C84I4,26617
259
- umap/static/umap/locale/is.json,sha256=f5y3JrUS23A8qT0sHInX1Ww37a3R4U6dMxP20vJu6GE,26366
260
- umap/static/umap/locale/it.js,sha256=-4mQd1LF8UrZeDG1swHsUI5r54I0aqj_Kk5aReVp1eg,28155
261
- umap/static/umap/locale/it.json,sha256=Zw8FTpMk4pc_oNfhu6bfFZwsK6Mwcmx8EcdCfBuFNOI,27503
262
- umap/static/umap/locale/ja.js,sha256=CBsGd76-rbyFvPXI1de-bWDYm5UXYaVRZ6f7bmHjzUE,27965
263
- umap/static/umap/locale/ja.json,sha256=EAo1B18lw9bC0SLpv2ZA_KKsFRmKCRbZreTLnHGJuOU,27714
264
- umap/static/umap/locale/ko.js,sha256=-Yg9efr5w5qkMA1DADUMzJsgwz-3Q5qNZ9IXn96i0lk,25401
265
- umap/static/umap/locale/ko.json,sha256=T7NBtIHUYfzfSOfeYhureXdnTg-QKJl35RZT6cSUEzc,25147
266
- umap/static/umap/locale/lt.js,sha256=XvsY46ZBA4JzLedS23QeKmlD7TFc6lBuPpRKpwVN--E,26089
267
- umap/static/umap/locale/lt.json,sha256=XIqRe8me0SFPiq9ReTPBW_eYtG1WcG4kd8TUBIVZ4kk,25840
268
- umap/static/umap/locale/ms.js,sha256=QgCnrQMnMvwElkR9Kiz9EmW6dLci8wnSvTmanjVYCr0,26887
269
- umap/static/umap/locale/ms.json,sha256=OhaTlnDNXZero7HzbeEQJPLZjrIieL372RyR4NuouPw,26234
270
- umap/static/umap/locale/nl.js,sha256=R-quA21bvjq5eqR1w9u3AoRvHqXFa_tZWJt8KIMuAhk,26569
271
- umap/static/umap/locale/nl.json,sha256=wv-sCa0y0SUHJSo6n2Ypd2q_6cNWoRmvPMlqpJ0uc-I,26809
272
- umap/static/umap/locale/no.js,sha256=-Dg-4LTQgSGrPnfP1bUwQBWZbdoKz4KnEyLu7Yg40-M,25434
273
- umap/static/umap/locale/no.json,sha256=6cNwOM-QDsrrJfxjNKkx_quFRXovTUW7iR5tMeEXD7U,25174
274
- umap/static/umap/locale/pl.js,sha256=GowzfcPXHVAmx9vHqVoht9BGTCGpd-8LbjmRcS1UIoQ,26785
275
- umap/static/umap/locale/pl.json,sha256=CrLdiyPO6b1NjzKM244_AWjgNCpiW2QDMnxNYNLF6OA,26536
276
- umap/static/umap/locale/pl_PL.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
277
- umap/static/umap/locale/pt.js,sha256=V0LaTvnRYj1LZfteaq5Yh0_URQxNghLPjFWl8PLk8CA,26710
278
- umap/static/umap/locale/pt.json,sha256=cawNkpM20Lju4ESf02qAMFRF5KKia8VXP8ymrZ0h2EQ,26455
279
- umap/static/umap/locale/pt_BR.js,sha256=9KoAKP-GT5_WEUP3_nKrQkty9U_Kxp18zXIHCx0mQV4,26704
280
- umap/static/umap/locale/pt_BR.json,sha256=NSFmlgcpZM7txD-aJ7j8EmhR6aaPjdAGkhz1VDTHaRo,26443
281
- umap/static/umap/locale/pt_PT.js,sha256=8g9JZuXVxR-lnTEdxKJgqqQxWkSOtw2x7H-3pnERM4Y,26716
282
- umap/static/umap/locale/pt_PT.json,sha256=XO38XfaaEL0LmPC6DlZf0OYa6J_qyly_sx4vDdE6Hns,26455
283
- umap/static/umap/locale/ro.js,sha256=r1eT8-Ba-_jXbE-ZoIueAscTpv4NyZ9LW5uU3vwNLb8,25240
284
- umap/static/umap/locale/ro.json,sha256=UtHbK6tQETxV33H90lr8IosBdFFlq1zDo7IzX7bzEco,24989
285
- umap/static/umap/locale/ru.js,sha256=2CXoohBqIX7nAvfuNsG3LT0uvrYH605YOBoV-vy1KLM,33059
286
- umap/static/umap/locale/ru.json,sha256=lkZBJZ1BSglqKk6eI3yM5Ga17qBU0_6pm-7wYidTzfM,32775
287
- umap/static/umap/locale/si.js,sha256=_Wa9_18OzdnqGUvqbq0PDKC0pTGH6FhAw0vEZrkoxEQ,25799
288
- umap/static/umap/locale/si.json,sha256=nXKIS9TV2eY76aWr5ylKIXQHaTzikUu8i4qmSV7SnJQ,25734
289
- umap/static/umap/locale/sk_SK.js,sha256=zQWat-2j6ojtCS_y41bXJ7c0J7PFHMdl-Z4Wat4U-u4,26577
290
- umap/static/umap/locale/sk_SK.json,sha256=6gyuvsBgiFF1VLHTJWd-3N7wpqDjsE3XnMAmEMYxaV8,26313
291
- umap/static/umap/locale/sl.js,sha256=As0WZpGsGjHicUGTt0bnG43R6hQ--CNA4kLkMFvJ9yE,26442
292
- umap/static/umap/locale/sl.json,sha256=hgl0XfwkNUeHoqSQTQZLkgfqaxV28MOArH9e9iMvbRw,26187
293
- umap/static/umap/locale/sr.js,sha256=lTfRKiPbTy3IwaC81-uyWScJECfw3epapgqqdF-RLiM,29563
294
- umap/static/umap/locale/sr.json,sha256=93YkdPc_pxz97WBGMKVBSDnRQBSp9KaMnqgm8x2rPu8,29307
295
- umap/static/umap/locale/sv.js,sha256=w9MARWmnt4zLVOB22McCy6nRJsePHLKpOFG4mjVVMDo,26382
296
- umap/static/umap/locale/sv.json,sha256=SIApcsDCBTreGTen3kfGsWktwxXUXT7kyNNOStLoJu8,26134
297
- umap/static/umap/locale/th_TH.js,sha256=flGVlWxz0NJNqGr1MBqVX3UJ2c4Q0DF4cw_mv7kKIc0,25209
298
- umap/static/umap/locale/th_TH.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
299
- umap/static/umap/locale/tr.js,sha256=v27IF41EAZFxAvAESonyeknkVKQ23iQxzn6B815aYeM,26912
300
- umap/static/umap/locale/tr.json,sha256=WMDkxHwEIqhEFdgk_53IpmJjR2aZl5MqRbf6lz0ctZk,26666
301
- umap/static/umap/locale/uk_UA.js,sha256=kxeSva_IcguADvqpa_CUfPCk0lAVlkZiuO6p3i8DqaU,32683
302
- umap/static/umap/locale/uk_UA.json,sha256=ggBlpkD_ASIq3xfWISJex9qX1Q3yNrW37YE0Cd0-F90,32394
303
- umap/static/umap/locale/vi.js,sha256=fk4osIWPJNpQF5Qr_mlyXyBFtP_451lHEDCfyH-2BrA,25489
304
- umap/static/umap/locale/vi.json,sha256=4SUSXlzt-6bH2NP0WUGtK3J1g6BBM0HLe2kFZE5Jvy8,25244
305
- umap/static/umap/locale/vi_VN.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
306
- umap/static/umap/locale/zh.js,sha256=_PHC2e8UTxzF3EmhaKwowteSLqN0A7xS0nwW1MRh0Gk,24870
307
- umap/static/umap/locale/zh.json,sha256=x0PfT47wGbRHrGbGOE-KfArLS6IBQ_shYz_UprOq0uE,24629
308
- umap/static/umap/locale/zh_CN.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
309
- umap/static/umap/locale/zh_TW.Big5.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
310
- umap/static/umap/locale/zh_TW.js,sha256=ulTuzsMAtFe44WMJEzyhnza0Q0qU00_gEl4xSYEhk-A,25141
311
- umap/static/umap/locale/zh_TW.json,sha256=yBJE01xj58EXPwVZXndmH4lJOae6sbiJZoh5-LdUqOc,24580
215
+ umap/static/umap/js/modules/orderable.js,sha256=FSeQrluyoXaxvlPMV8sGG7LTxxrw-MCIALydOOWJlrw,2519
216
+ umap/static/umap/js/modules/panel.js,sha256=mYt0slkw_UtN_Wo6hCXCxzncS24F9jtRNgRcnGBEynI,2552
217
+ umap/static/umap/js/modules/request.js,sha256=X8RklmGBV-aXSlT3jS2Gnr54YTq36nDL94irAJtXQ-Q,3978
218
+ umap/static/umap/js/modules/schema.js,sha256=dwSIn4QkUSOABh_gqEwOPG1y44qBoYwW0FfIq3RIz6g,10977
219
+ umap/static/umap/js/modules/urls.js,sha256=eejKsadgXGE1yoNy_S6xT9LCfQroezRgs_ChnKqdg10,853
220
+ umap/static/umap/js/modules/utils.js,sha256=H6PMJMoayQPmNU0WS7jHFB3CXN_gzCuWHHuqBTSQR3I,10393
221
+ umap/static/umap/locale/am_ET.js,sha256=JRaGjw-xX53mhQ5rnV0ypiajwdfiiWVYnPhIG4kvMfk,30088
222
+ umap/static/umap/locale/am_ET.json,sha256=ON9ciE0TMUkov35yQVw7lt1zid5MMP3f11x8nJn7FdQ,30017
223
+ umap/static/umap/locale/ar.js,sha256=ntT4xNpvZJlf0LOYS1voiHrzVZ0oS-nv4nlAri6MXdA,26357
224
+ umap/static/umap/locale/ar.json,sha256=fNwJCUfaT3SOCA-gzBdzybObSZPxbuasxRNthEJVoHw,26292
225
+ umap/static/umap/locale/ast.js,sha256=spjOTbQfnouDImZkFjJ-UAGV1wiCP2BavWEjltzIZAs,25907
226
+ umap/static/umap/locale/ast.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
227
+ umap/static/umap/locale/bg.js,sha256=dc5yluvfrBPGdFf0FywzB2-EE7R17qIjW_kpHuHlcxE,29098
228
+ umap/static/umap/locale/bg.json,sha256=7m5v3NIkttYHDZVi8ZWd8Z_-3WUHX0IWCWw5nYLcaJQ,29033
229
+ umap/static/umap/locale/br.js,sha256=m0OZhuqV9VymvA7Ya7EKJMw1-o0Dz8To9EqKCVC9wMU,27528
230
+ umap/static/umap/locale/br.json,sha256=PLcbHM7egmDf87xr9T8Axk_shhFyWXAOSMfH1CTKamw,27463
231
+ umap/static/umap/locale/ca.js,sha256=XnwfWIoYrsVgW4YtjD25PIGk-H0WbHQo0A4SAL_Rbnc,26804
232
+ umap/static/umap/locale/ca.json,sha256=zUb_jnLtEGktJUqQDOGn6OE4R0fObkN6N-y3pJgLyNk,26739
233
+ umap/static/umap/locale/cs_CZ.js,sha256=CnwE8Dg2610SRe304NAWw_DjAOra34XLtOlNhw_-ZUc,27900
234
+ umap/static/umap/locale/cs_CZ.json,sha256=f5mUocFISnIxqXJeAMrD9WJ0IwxRTtUyKGLPkNm4WWw,27829
235
+ umap/static/umap/locale/da.js,sha256=W04os8GzNXnx1NGOBbNDlPJ76BaeDYoJ2fGfD2fJJWY,26266
236
+ umap/static/umap/locale/da.json,sha256=5xzXaPVD49oHvPfdI7-Hv_WdwVdSPBEv1Bv9pqjIBYs,26201
237
+ umap/static/umap/locale/de.js,sha256=CVPkpQ1GbofliZ0xilmpIfz_0FVur7VYsIiucsU-ECQ,28028
238
+ umap/static/umap/locale/de.json,sha256=MLwbJlqyIWoP5iGvzBMxFehoCztuLGTAiHFnNXeU4A0,27963
239
+ umap/static/umap/locale/el.js,sha256=kFE9q8XwYbV2iWJWzFVb4BFZ_MeSF0khdBhbn3k2RF0,37406
240
+ umap/static/umap/locale/el.json,sha256=2sho2mSreTD0oF1VVd4qfffMx73zCeY4nSU73WIjR4M,37341
241
+ umap/static/umap/locale/en.js,sha256=5XhEqWYbCfaVwEKC-sCGK_jxmNoJqvdh2pnRZ4Ih938,25907
242
+ umap/static/umap/locale/en.json,sha256=QCWFQHgVXVxL0bt3wmPTs7YGJEUSw8oZVcyRlaT0-bU,25842
243
+ umap/static/umap/locale/en_US.json,sha256=ZGKkVF4af3Z_Y7GVwIblgtUdY4qCWTXL71_IrGkLCL4,25576
244
+ umap/static/umap/locale/es.js,sha256=WbCu9tkIqU9lp-7Bolg9UZvbM-R1NvfPayTu8_rsbrs,28243
245
+ umap/static/umap/locale/es.json,sha256=AXuOmworrFo20sLqtQYwoU__MaDlhGBprs7074RA7Cg,28178
246
+ umap/static/umap/locale/et.js,sha256=h0U8PV2DbjRyRgpmO_HhEbM5BiIklu0mXBoN8P9fF8k,26104
247
+ umap/static/umap/locale/et.json,sha256=nTje563iRsA_4ELeWBBKc3jLizJ3BdqkBZwsgIw6i8w,26039
248
+ umap/static/umap/locale/eu.js,sha256=qduwhJoibXw9Pcuusp631e3RzIeRcQGMQvYM_WOEIPg,25052
249
+ umap/static/umap/locale/eu.json,sha256=6jZcbsBPi8Hh-lyvdHI4FiOz1MygERPxiJ4pG6IvTAo,24987
250
+ umap/static/umap/locale/fa_IR.js,sha256=HM-fuSjqicD6nyzEyn8WALs2fyycD0URlHhYmnkr878,32303
251
+ umap/static/umap/locale/fa_IR.json,sha256=RnUWkBeaSWZ_wQMLCWguyh1gOigJktILpQBCJO85o8s,32232
252
+ umap/static/umap/locale/fi.js,sha256=X1pyPvKXMNBlMJExFfS0877jWrGzE49vPW-jvBIQwIg,26835
253
+ umap/static/umap/locale/fi.json,sha256=ra3XKH4d_T9ykfA1kAk-IS2Ie-YjbXqai5w37FfF4f0,26770
254
+ umap/static/umap/locale/fr.js,sha256=CWAvlfAwXv-dc7ATEk69Y49BNbzznloLYf0FJcttJBY,28275
255
+ umap/static/umap/locale/fr.json,sha256=_VVg-Rtk2bwFq6ZL7dIWHj1M_05US8WRGZLmlJCntXs,28210
256
+ umap/static/umap/locale/gl.js,sha256=IBji2MX0VZ75MYfR8rv66vakUv5Ys9s4Y8ZQW_Sx7xs,27412
257
+ umap/static/umap/locale/gl.json,sha256=_r4piXmB9wdr8_vSSeiKJiJMvjgPTnlKwnmH1b2RMso,27347
258
+ umap/static/umap/locale/he.js,sha256=kshdY8TkAXvF3ZLKtuodT6U3bgBF8Jej8gihJHdUx3Y,29595
259
+ umap/static/umap/locale/he.json,sha256=K2AQeExFOTiCZ0e3Pcnkqowen5rBhA5mC9aVik3wfic,29530
260
+ umap/static/umap/locale/hr.js,sha256=KEBlt_MynivWcPqWmrrlXtKKdmsl3WZU_sagYcgEBOg,26067
261
+ umap/static/umap/locale/hr.json,sha256=kVxRWAlcWBWPEs1IWJby-y4JSliyq2Zzv7TDH05F2rQ,26002
262
+ umap/static/umap/locale/hu.js,sha256=f1MLY3WFVzasEGYuRyg9dXqloSlrzYTvIVvxX1djbUQ,29293
263
+ umap/static/umap/locale/hu.json,sha256=Zl50nmzAbQH-stzi7Jyg0I75AFAdZjRPFeECR7aiqSI,29228
264
+ umap/static/umap/locale/id.js,sha256=sk2SCIwWrusXmCT1RHrbHBsHE0LJMwVfNAH-WnR3lMo,25905
265
+ umap/static/umap/locale/id.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
266
+ umap/static/umap/locale/is.js,sha256=9-EX9EqouK-ebYeNaKZJDEIT5Ji94PBts9fJxsyX4k0,27300
267
+ umap/static/umap/locale/is.json,sha256=ltX2kGOXDCiWPGbrEr3DUJvCbupQigy9PdoOZPUZGUE,27235
268
+ umap/static/umap/locale/it.js,sha256=wPIGB_kfny7sLw6Yl5arX7-dSyMIkvgzOoLJ3GjezWg,28349
269
+ umap/static/umap/locale/it.json,sha256=_Oj8OHPvMBsZ7oTjgt6-kcayzAAXcSpxGjasjR78z6g,28284
270
+ umap/static/umap/locale/ja.js,sha256=A0PzmMXU94SQsh2ov4m5va41rJb4xenn3kEc51bwoRQ,28622
271
+ umap/static/umap/locale/ja.json,sha256=zVEZRHudyPqjzFmE9amx12ZAwsgRMFjwsyo_mI8XWJA,28557
272
+ umap/static/umap/locale/ko.js,sha256=c42Ng1xweiUB96xa63m8-2p43dAfjrChqx6NA9ROXN0,26100
273
+ umap/static/umap/locale/ko.json,sha256=1kDfQ6KCA2vR6u8LqQqqBmhQ1_MpDVGkrT7b5Bz2p0o,26035
274
+ umap/static/umap/locale/lt.js,sha256=2Q5xlBG6HrhNA6G8bFT7OYzgYMc68ujZ70f1PQEG1z8,26768
275
+ umap/static/umap/locale/lt.json,sha256=f_9T14dPappdgD1WKeOuRm9lMl7QEXq5hus-1L5Qoz8,26703
276
+ umap/static/umap/locale/ms.js,sha256=gdp_0L1tLZK_X18FGnlh-Lf4ChvW3Y1D1WKgauVXFEU,27158
277
+ umap/static/umap/locale/ms.json,sha256=3XF_LTnZIHpZvWOk0pW5gZF1wAV5NSDErgWjw-RXzNY,27093
278
+ umap/static/umap/locale/nl.js,sha256=CNADHUuN5zqZHp6memoJmdkLUpJF6JwQcald6q4TRlI,27688
279
+ umap/static/umap/locale/nl.json,sha256=Csw2P0A0I20ppkzsyLJF8QukC7Vl4af-7MtG8ru_R88,27623
280
+ umap/static/umap/locale/no.js,sha256=_VFKpJ9yPU6BMy3LkjSobTMKHrFGnbycblKz9zPQRGQ,26123
281
+ umap/static/umap/locale/no.json,sha256=eLvdx_-OxjeygntZT4F5DCq_bROHCsPKXyV7-5_l1Os,26058
282
+ umap/static/umap/locale/pl.js,sha256=D0AQAqGtg2RKy3V8gbEYmYv7pf_iLQYqCtrDaB0yqd8,27456
283
+ umap/static/umap/locale/pl.json,sha256=SkiKMLycUAljLi1x5m0eJ0mPiPZZ1Y8TX-uZvOKHJbs,27391
284
+ umap/static/umap/locale/pl_PL.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
285
+ umap/static/umap/locale/pt.js,sha256=aqmzNqbmSiiXLZFAjDjchxj_R919b5wfr5sX4hPYpO8,27390
286
+ umap/static/umap/locale/pt.json,sha256=BbXAFpCF5_g6zvFLhyjxbrM59RBjEcq-zwTQYzo5jpc,27325
287
+ umap/static/umap/locale/pt_BR.js,sha256=zO3MFKrAOXXMnr2TUB1V086mfR4zTSzPf4i2VAjiOgo,27384
288
+ umap/static/umap/locale/pt_BR.json,sha256=HttmEoJ_Ney0WeM_e6clPWU0ZoDscluL8UzZTVKMCqI,27313
289
+ umap/static/umap/locale/pt_PT.js,sha256=1g_tSg1hYsXbzdO42ZfGu_KP8J24ohA4OoXUp_AHByg,27396
290
+ umap/static/umap/locale/pt_PT.json,sha256=SYJ9iooMIbfOATvU0gRKuOb7oWT-isxrAzcn9IisQxI,27325
291
+ umap/static/umap/locale/ro.js,sha256=By34LA1ZdtuPFD1QuILWM4xMrBsfyeZ04aaI47Frdh4,25942
292
+ umap/static/umap/locale/ro.json,sha256=3k5amwSRBpNCcopw9SObku5i8gA_L3CYjaIAy5M9-wo,25877
293
+ umap/static/umap/locale/ru.js,sha256=kCAj61MZ82UxpDU3MaCm3Sy4oY8L-ab72pupLL-a1bs,33628
294
+ umap/static/umap/locale/ru.json,sha256=vlF2rQSEs9yvDCL6XBnD7Gcm1UedBJ8zqfrohcisUsI,33563
295
+ umap/static/umap/locale/si.js,sha256=EY1tQyUHOxZd8ZS6VBXcCGDiiLy5bJrdUC7_sKAoezc,25789
296
+ umap/static/umap/locale/si.json,sha256=-UTnxE3xYozk5A_eFj4pxVgEHMWXSr8ZRu5i5rej0mc,25724
297
+ umap/static/umap/locale/sk_SK.js,sha256=F2twJN8ZmzeOAOWGaNcPp7h_Q7SLCP0MoxrS96rhMnI,27250
298
+ umap/static/umap/locale/sk_SK.json,sha256=TPVQ0l57VuWGRwcCVEjD6-99cXs3C8dee2OabB6zV-s,27179
299
+ umap/static/umap/locale/sl.js,sha256=8v59ITIShdWt8uIlU6Cn2mMY2csX12hYdLGuHkCmgks,27127
300
+ umap/static/umap/locale/sl.json,sha256=ro1bjdiID_qFbLDW_nGhJ63UBD5AA4Hkw7dObD4S_0A,27062
301
+ umap/static/umap/locale/sr.js,sha256=qgDSND3ysQ1B7KibLdQcmcY4TB78REgKyoowm3O6sTg,30198
302
+ umap/static/umap/locale/sr.json,sha256=e1NO4oLEw6il167dYUqnY7tq2a2ubc8Xe-7l0RwLoEs,30133
303
+ umap/static/umap/locale/sv.js,sha256=JyhTbFdfzpWg_8xOAroWf2SZgIh-Mz0UyTf5wB9QEuo,27077
304
+ umap/static/umap/locale/sv.json,sha256=LPSXJcTmTJZyIWxRmXGd5i_StnMfOpDHJ50iFGzNwZ4,27012
305
+ umap/static/umap/locale/th_TH.js,sha256=D7DSQ_Mjea1ZC_JY8FsYGB3Yufk1SJCUuR5RxrMPK0o,25911
306
+ umap/static/umap/locale/th_TH.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
307
+ umap/static/umap/locale/tr.js,sha256=7nlcjZ3eTQFo3YaRuIeh_n_lfMdQ9tzu8p6eGH43-04,27590
308
+ umap/static/umap/locale/tr.json,sha256=hNaL5nLQVc9TtJiJfophJ5Tb3Sxb3ganvdMfynoV5iM,27525
309
+ umap/static/umap/locale/uk_UA.js,sha256=5HWHhtR4Twu7d9SVmnn-xrlb0nEB_u2NuUCB6w-jEXQ,33254
310
+ umap/static/umap/locale/uk_UA.json,sha256=a6z9MM2-sIrxpE0_lM7cJzzlvR4_69BXU0qzEWlgE34,33183
311
+ umap/static/umap/locale/vi.js,sha256=DbR8ZK8aSjovRLyJ04ruGeBljKnaX1nFPx_m2jBvOLM,26177
312
+ umap/static/umap/locale/vi.json,sha256=BlUbkHINzxIe3gbdooO1YEOeG00eUWy2gDUZD6O-guo,26112
313
+ umap/static/umap/locale/vi_VN.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
314
+ umap/static/umap/locale/zh.js,sha256=tQgTqJit0lKlxxatr5OTO1oh3jiGkY2tZO5GlFHX8BA,25578
315
+ umap/static/umap/locale/zh.json,sha256=nITQJvMgeM9lm6w_1deOg-mRReH7vya0qfigqsRyucg,25513
316
+ umap/static/umap/locale/zh_CN.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
317
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=9dJxk_nCZw9wb4BNE8hF88P_7hVlbJod-2vz9wgYElg,25840
318
+ umap/static/umap/locale/zh_TW.js,sha256=0dDaRxxWZRPnUQURZHxGE-E5A0I-7MvEVMnvRT2dgIw,25520
319
+ umap/static/umap/locale/zh_TW.json,sha256=eQQyznS1wU07aRRhq1VsUr5zmnX469xHO3ejO50JPnU,25449
312
320
  umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
313
- umap/static/umap/test/Choropleth.js,sha256=3iTkpcmaXhfSQzf3A4wZTKITOVBBkpXEHve0aGObV8U,5266
314
- umap/static/umap/test/DataLayer.js,sha256=8dOWcOAg1N-Q7ppN9PatFxk43NbdSB1vXAF8CBgSSdM,14224
315
- umap/static/umap/test/Feature.js,sha256=NIW3FD156wwo6UZHbKf56lQfQ3dG9fHBWGPc1DN_XAE,11766
316
- umap/static/umap/test/Map.js,sha256=7VrgxQ_0uS7kLQe5TsCn7qSDwwDKJ_zYsE7Y_7xwOKc,17448
321
+ umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
322
+ umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
323
+ umap/static/umap/test/Map.js,sha256=LWCyIKxgUXBM61i3QIPkDubTXGlRhy6N2NdlAnaM_mQ,919
317
324
  umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
318
- umap/static/umap/test/Permissions.js,sha256=D2zw97L1bqIwZSG30r0NnbS1YLxGiCNQIKWmRuYuSGM,2239
319
- umap/static/umap/test/Polygon.js,sha256=3g0pdU05ITImNb7PrS6v1ZorwG-pT7AQEbE_82inaEI,12094
320
- umap/static/umap/test/Polyline.js,sha256=P3NNlyHYv2wvhreSfI7TWawetPMgiBqA3l1iRQf-FJM,13964
321
- umap/static/umap/test/TableEditor.js,sha256=NXjGGNzVa5A6SQHuY_uhvu1_EqAFEftFp4cODBSJhMo,3192
322
- umap/static/umap/test/Util.js,sha256=yhcmnlugm-D7ECvyw_RVdsn7sFdnR1XHnMgNiNCZ-XI,17972
325
+ umap/static/umap/test/Polygon.js,sha256=Jrflfe76wmfu8_E3bDLMGG11w-iUmrgL9Oiv4CcCsb8,2320
326
+ umap/static/umap/test/Polyline.js,sha256=5VxRW-b6bnNgyIzDsHM6g5lPci-Td1wY5VPg_umpId0,9374
327
+ umap/static/umap/test/TableEditor.js,sha256=EJyIp90_tKb4aR3jNn2aRmmnbOLixTCUDouYxBRZAIE,3150
328
+ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ,1096
323
329
  umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
324
- umap/static/umap/test/index.html,sha256=24lW8t4Trr1T33bKKmSVivckJ2NxKni4qphlT5BMWCQ,6803
325
- umap/static/umap/unittests/URLs.js,sha256=IOifAKSNuCTtmEGdfV6lHBkg6CT0LftgxWlXWLa5_1U,1886
330
+ umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
331
+ umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
332
+ umap/static/umap/unittests/utils.js,sha256=XcNKpMY6zJqW9Ji_pE0VRSH6Bo3MsKGnHMTkuz8xHLs,20200
326
333
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
327
334
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
328
335
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
329
336
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=GCr5ZQawzxqZysqyxDTH6oUqP-KHxYTsG5xRt28--Zw,15029
330
- umap/static/umap/vendors/dompurify/purify.min.js,sha256=OO3w-WHBzLKHiAuI8S83B3X8ZbLigifu4hXoSc2-m7w,20860
331
- umap/static/umap/vendors/dompurify/purify.min.js.map,sha256=lvLQ4oJliucO2YsWy1ZZcpP2CmqQdFCUbk2mbwKo3FE,90567
337
+ umap/static/umap/vendors/dompurify/purify.es.mjs,sha256=xQ5F7cRncvKwJeqAUc3jt5zQdJNPbtwNoOV8Av2t1_I,63018
332
338
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
333
339
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
334
340
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
335
341
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
336
342
  umap/static/umap/vendors/editinosm/edit-in-osm.png,sha256=xsQrWBc8olICRKg-bt7auEoceoCoWWZxm5OmAHSE2PM,3340
337
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=KInWXlcLx6ANiQT5luvf8_d25IPRkYP4Rc-0L6KOR_c,12414
343
+ umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=VWWlTpbYKtCpZ4eRru9DzIAnW0N8xF_1b0Mo0j1_Wao,12451
338
344
  umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js,sha256=_VGiFGzaidNadoKY4_8zFXP_OqGdajjpB-0vNHRz33o,5041
339
345
  umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js,sha256=RQN1bmEq_28pzVG8Csu34O677VNj5_1xl1wUGyDjMuo,3654
340
346
  umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
@@ -346,7 +352,7 @@ umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOh
346
352
  umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
347
353
  umap/static/umap/vendors/iconlayers/check.png,sha256=2KEJy_Q7K5Jy_514NoHXWdLk5MSrx5Bdp3IMQS-rpZ0,2945
348
354
  umap/static/umap/vendors/iconlayers/iconLayers.css,sha256=fUnXSp72SLBi2zm_98OhBipn6jl53eLpMAqU9kVXu3Q,2099
349
- umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=VcHNxU0KrRKk8fQ_biK4GNZcKj8gmMWG52irE0yY4xY,11789
355
+ umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=F-TE2E0zFS-ZSt2JfTloeDUIuBpKPwFUA0EaJc8lbOg,11791
350
356
  umap/static/umap/vendors/iconlayers/transparent-pixel.png,sha256=wmsrONlpwU7Z-Y-1QYMxjQg-h-BumQw4A89vuT55IYg,2792
351
357
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
352
358
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
@@ -403,18 +409,18 @@ umap/templates/umap/about_summary.html,sha256=i1M3rNgQi912dr0_Jr2xoBSERm3WgEQTNp
403
409
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
404
410
  umap/templates/umap/content.html,sha256=L2JRYlXWX9ot3Mc7JCi2Sl5PY6crBTD1PKkf1E61QeA,2255
405
411
  umap/templates/umap/content_footer.html,sha256=Lq9CK37V2iFxqOdgGWRsJcoQs8e3Ih5VlENbQ-izX84,724
406
- umap/templates/umap/css.html,sha256=Bp7pnglIp9E8IaABO0uMVPx3-gV6zMRDxI12rygIx50,1548
412
+ umap/templates/umap/css.html,sha256=RBLqTvnha7Ccemg3RytCB6b07mBTnUONf_D1d_oEIeM,1681
407
413
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
408
414
  umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
415
  umap/templates/umap/home.html,sha256=A0tMpiJ8MmLciD7A2SMNoYn5K60MN6PLrRfMahKXh8c,670
410
- umap/templates/umap/js.html,sha256=x0AAPBOo1kXt6pePzRmmy8Ugypj8_YImeKRzyPkGH0c,3920
416
+ umap/templates/umap/js.html,sha256=vs4tfLFZ-MrlaDsTMQnsAvEd-4gUCf2OqKOuntSavkI,3838
411
417
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
412
418
  umap/templates/umap/login_popup_end.html,sha256=b6csbAW1-qZZYgF1RkwfNsGpqhYzzg3wRGbntTadj2U,571
413
- umap/templates/umap/map_detail.html,sha256=i7853I2IMBHx6rULPp9e8DgSrBuhU0KTlRuIfif7Pkg,877
419
+ umap/templates/umap/map_detail.html,sha256=2TA1VwH0jAo9yyj7f3XVqPvFOY0EXmzxZJjZJI2l4jY,1143
414
420
  umap/templates/umap/map_fragment.html,sha256=hog_2ufpF7wQlYq3PUj4ZoOY6R8_ztNZ4KHaHS-KQxY,150
415
421
  umap/templates/umap/map_init.html,sha256=AFGiWxYQ9foyVwF5mndt_l_r4atz-GHnpV7Z--tno5A,485
416
422
  umap/templates/umap/map_list.html,sha256=IArhrUe_2ILTpbI2sfmR89oqbqN5_7X2uFKtoqUwNGU,626
417
- umap/templates/umap/map_table.html,sha256=KzEDKxGXRaDSSeqioNYP7i17Xw2Zw1wfL2LAxr_ATuA,5389
423
+ umap/templates/umap/map_table.html,sha256=eNsjkmXYBURJp_wzsCDxrtQqJgsVtCj6aCdkI2tJP0I,5490
418
424
  umap/templates/umap/messages.html,sha256=z2nSbxpXeZOXxVB1xq-lYTxm1Ynj-0zGQbGDc61Y2pE,287
419
425
  umap/templates/umap/navigation.html,sha256=T7alkzJrOggve0oWO_GgHGypemwcXcShMPuRwmPK5OY,1265
420
426
  umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
@@ -424,16 +430,16 @@ umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERz
424
430
  umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
425
431
  umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl9ZfM4vbF1w,2691
426
432
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
427
- umap/templatetags/umap_tags.py,sha256=2eOMT_6lGHRNSarfUpVTXggg6E0SN_rjrJKDCt__gF8,1671
433
+ umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
428
434
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
435
  umap/tests/base.py,sha256=WcrRnmgcTvx9hHekIJsGyVhFwvyNrgT7PYQ6DPwuAZU,4200
430
- umap/tests/conftest.py,sha256=hlUPzNq7JakJnT2k5LOp7a8CKhHBWhz3v9EwioPOVUg,1367
436
+ umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
431
437
  umap/tests/settings.py,sha256=qzKYcWzVXUVYxNdv8m7lLV-xkNrV8A8-LWliTJagHOE,716
432
438
  umap/tests/test_datalayer.py,sha256=HJYSQ11LVQe47nnsXdFeX5Ny4WMDPUYg3frnM5G1IzQ,6888
433
439
  umap/tests/test_datalayer_views.py,sha256=AJ-0YBorAgKZaKGd8rSYDguqy8acrz54EaQdfkNOH48,22111
434
440
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
435
441
  umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
436
- umap/tests/test_map_views.py,sha256=6EW0jqDepS8y117sfCbDwmhnhu0vHup3GXE57IrkAnI,31350
442
+ umap/tests/test_map_views.py,sha256=w3YG5ExH_fw18402bdR3hKxRl3DpAeCs8oy8RYee05o,31886
437
443
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
438
444
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
439
445
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
@@ -442,38 +448,51 @@ umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm
442
448
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
443
449
  umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
444
450
  umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
445
- umap/tests/fixtures/test_upload_data.csv,sha256=b4RQw68ixs9UMj8TlTucV5YSfbactWhLLuE1yCKUTAY,109
451
+ umap/tests/fixtures/test_upload_data.csv,sha256=KZOO-DcXhdTgx2FrIYZz_ZNZAKOp8zpN_jCyfDw3PcQ,186
446
452
  umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
447
453
  umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-Vtg8eBmHfQ4KQ,5650
448
454
  umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY5LfXnChBaP8,1102
455
+ umap/tests/fixtures/test_upload_data.umap,sha256=WUmcwcQ4o5_rYw0SOqjnszbk2TOzfynrK3psyApSWsk,5463
456
+ umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVepdMsBqr7k51pVaCbA,916
449
457
  umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
450
458
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
451
459
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
452
460
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
453
- umap/tests/integration/conftest.py,sha256=XuOKbABI1ugTJyPlJzjSK-6L-_vSs3NaQJdYJbyU-6k,607
454
- umap/tests/integration/test_anonymous_owned_map.py,sha256=dfx4SQ-K7Un98H1fyeSvv4T573VKgh5gP2Oyvk1ZIIQ,8415
455
- umap/tests/integration/test_basics.py,sha256=1FesSkjNBWi5pEqN0MQlC3kIXTFZzuILq7A5ac9L-3g,1598
456
- umap/tests/integration/test_browser.py,sha256=p1MvBuojYRh2k2sqVPGEiVKHxo5CbG1PE-ZcALc4Et4,14076
457
- umap/tests/integration/test_collaborative_editing.py,sha256=KsGmfVt4bkTc5uCOibnXIWlxIudn7wUYE_hy9v8Kiik,9493
458
- umap/tests/integration/test_dashboard.py,sha256=k--MGBZsek4ebjCoHbUyv-XNkPbc55aOwxH6a7WuIL0,1173
459
- umap/tests/integration/test_drawing.py,sha256=tgtUcvHEwbSbC1Up9OtkVguJYmQKZMxXH3CgZmz8jBQ,8825
460
- umap/tests/integration/test_edit_datalayer.py,sha256=TouE4gFzUuA3tMLSi5tUpvtz0kpGyHXf_feD4UdKQI4,1621
461
+ umap/tests/integration/conftest.py,sha256=hL2SKmJ3kJwlpQ2Y09VYP_Zw6B9TjzY1jyOF-btJL_8,1052
462
+ umap/tests/integration/test_anonymous_owned_map.py,sha256=aDg_q_2Y1eDyRMd3YqEYVpxPQTybuBfi4B3wKSt4FGc,9487
463
+ umap/tests/integration/test_basics.py,sha256=dOb5zZ4YNJlkJc6rVt5HIrf4nmy0Bxw5S0Nn94Yi1Qo,2616
464
+ umap/tests/integration/test_browser.py,sha256=YBOfAFXo1oZPNe9-Ovl0yx-hwNvq2icD3QovhV_Ryyo,13236
465
+ umap/tests/integration/test_choropleth.py,sha256=dNOJq71ZwRTUyas7Ode2YUgoj50IVLxz_FMP7-pkzQs,3791
466
+ umap/tests/integration/test_collaborative_editing.py,sha256=auvyoGbUJ-xe3HpITrQoCby_X_OZC5tQKUsXASJwtqc,10959
467
+ umap/tests/integration/test_dashboard.py,sha256=KKHZkkpljsXF0h-c0U1v7KIQVSJNcBOoUdMSLGK60A8,1522
468
+ umap/tests/integration/test_datalayer.py,sha256=EUvPBPleu-XutVw-u2qpq9-4US5dmyJH7pZNX2Zul1s,5244
469
+ umap/tests/integration/test_draw_polygon.py,sha256=sL4sOpNAs1h09W455NY8UunVHQHDogS_eGWWfHqOT9s,14335
470
+ umap/tests/integration/test_draw_polyline.py,sha256=FNMXL4a67Qo-Yhr1V0XCGl6kWsiAJLsoFlJJAg7mOxE,12426
471
+ umap/tests/integration/test_edit_datalayer.py,sha256=zypo6PqUm_SRZocd5qnp2bRGpEnOvG9arj2ouqutTA0,8159
472
+ umap/tests/integration/test_edit_map.py,sha256=I83spfsG7_Fji6W0_sCn0xD5OS7QbccZFI6oXW2p8GU,7173
473
+ umap/tests/integration/test_edit_marker.py,sha256=TJBZDpfrYMaKpZTdktGu2jhCX5YLfQLnSsP5Wu84MnQ,4832
474
+ umap/tests/integration/test_edit_polygon.py,sha256=x1SFqOI2EhwPR9mRms8avtI63QeS3ay-YWhrBa2qiys,4878
461
475
  umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
462
- umap/tests/integration/test_facets_browser.py,sha256=wRh5h2kQg-ORfHqZKoumeNJ-JSC8CtgNZG7EvJW5SLc,2670
476
+ umap/tests/integration/test_facets_browser.py,sha256=zjYK7AAu1BLIG_HBOIOcr0_qtRgJnJtZ2hgw8pKksGw,7151
463
477
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
464
- umap/tests/integration/test_import.py,sha256=ufbJl0M5rqGVGmHBZjMhioI9uVETSajevtpnQNJCFOI,2005
465
- umap/tests/integration/test_map.py,sha256=IY7J47cDhPSylaEh35k9LPx_K8U2Tll_J1JXtyBQPJs,8764
478
+ umap/tests/integration/test_import.py,sha256=-UJBDyQvh-ZiVXM78C3_DL4tB98Dcb3R6V3J4BJJg_c,17740
479
+ umap/tests/integration/test_map.py,sha256=wajd31jL-aYlk3Figf4kzFtUXP5j3T69piBxCiaSbBQ,8323
480
+ umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
466
481
  umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
467
- umap/tests/integration/test_owned_map.py,sha256=3Ls3vnHgYtHVsUkeWuS71GtuQCD7nA_12hncWSn5n4A,9029
468
- umap/tests/integration/test_picto.py,sha256=PKZ7R0XQnNzJodNtmx2R7iDqq0xD2ArHRV8eD6o96k0,9348
469
- umap/tests/integration/test_querystring.py,sha256=zTEs6S01G7t4MYrxmMyZqS7G8LmDoUAjmkhYeSV32h8,2649
482
+ umap/tests/integration/test_owned_map.py,sha256=51Py-D5xiRqbLhVCwfk3ZnAj8_k8HS4kT67w54QGMLA,9883
483
+ umap/tests/integration/test_picto.py,sha256=dr5rRTHURDAdnIiVcLBHtmnXxbWhC9GmRSCcID7lVcM,9040
484
+ umap/tests/integration/test_querystring.py,sha256=Q9W1TOr5I-FkqIlDGXah9vs7GW-MTYdGNWkSb-uyUd4,2466
470
485
  umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
471
- umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
486
+ umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
472
487
  umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
473
- umap/tests/integration/test_statics.py,sha256=UqaN2O56yHwn1tEE9I8B1lGnyztDLC0p7_rG6J7vLIs,1494
474
- umap/tests/integration/test_tilelayer.py,sha256=3Jn1KdOM39DuDkLG-P3heDrsCiYvD6_FEnt0EKGjj5g,4141
475
- umap_project-2.1.2.dist-info/METADATA,sha256=pEqfRBAX0YjxA4wm2SBm7eYsska6n0IjIwwjU0GnoKQ,2559
476
- umap_project-2.1.2.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
477
- umap_project-2.1.2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
478
- umap_project-2.1.2.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
479
- umap_project-2.1.2.dist-info/RECORD,,
488
+ umap/tests/integration/test_statics.py,sha256=SIwLs0ZwXFu734o5WWYxaBarHrEUw2nCOi3s9aGJwQk,1526
489
+ umap/tests/integration/test_tableeditor.py,sha256=C4C5qj6b77XSNso7B634r0uaIzpO6Gkos7il6VGiSd8,1058
490
+ umap/tests/integration/test_tilelayer.py,sha256=nQIhU3GIxxCXrelNWgSsm4iT3Su52rW8ENWtKfiqjWk,4607
491
+ umap/tests/integration/test_view_marker.py,sha256=PNDYjkcSAUIgXmyzbWYWJ2NDReSrmeT48wujHWNEhb4,2177
492
+ umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
493
+ umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
494
+ umap_project-2.2.0.dist-info/METADATA,sha256=0qa64SU4lcM8iYIxHkPz3DLC37l8DR3UMFk9eZ5qccQ,2561
495
+ umap_project-2.2.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
496
+ umap_project-2.2.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
497
+ umap_project-2.2.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
498
+ umap_project-2.2.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.21.0
2
+ Generator: hatchling 1.24.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any