umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__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 (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,4 @@
1
- umap/__init__.py,sha256=iRn7oSM5zuYOn6O8w_uEqbRXp6A5C0KKjzAhJbidq2M,21
1
+ umap/__init__.py,sha256=NCfTDzZjloDO31YGPxGzMcjEyi19Z-I6p0KNW5VSdBk,21
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
@@ -134,6 +134,182 @@ umap/settings/__init__.py,sha256=bWfNzX2GIt602j8HdF2nDtpKbisq8ARS6B9jVd2QN6k,177
134
134
  umap/settings/base.py,sha256=FOAhOTpDQ1PgMY6JD9Vr0kSzGHMyYSPj3kNzHjA0rfM,9751
135
135
  umap/settings/dev.py,sha256=iGroLwlJM2EeqZ4HUC3DviUOgJy-SoULN1WB5AD4xFM,385
136
136
  umap/settings/local.py.sample,sha256=a9VuVI85Fa4MCN85q_IRkOr3CFsmRqn5mAO9xpeUAR4,3143
137
+ umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
+ umap/static/umap/base.css,sha256=PXuosvit7knQBS2EH4ekaHcz8mS3G4wyO5m7WdW9w9s,21275
139
+ umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
140
+ umap/static/umap/content.css,sha256=e62IvDE-kYedHBN-SkFIKFcJ0YaM48hkNthtm29_znQ,7296
141
+ umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
142
+ umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
143
+ umap/static/umap/map.css,sha256=acVBJ2WTobJLDiigEwk5Q9b2FPKVEFBjKU9YENrCLiQ,42689
144
+ umap/static/umap/nav.css,sha256=R4cFMZkgHmNHodyW1rEZmtopgkGboghd6Ut7ebQmihk,1514
145
+ umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
146
+ umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
147
+ umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
148
+ umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
149
+ umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
150
+ umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
151
+ umap/static/umap/favicons/icon-512.png,sha256=h_VHiNf_wJWK6mQEQsx_FMMPj3DG7W65iBylCQrcTto,7516
152
+ umap/static/umap/favicons/icon.svg,sha256=SBXqk0YbFuGazMGBQyxRuYv1XLnqKUSBwf48TBM1qU0,390
153
+ umap/static/umap/font/FiraSans-Light.woff,sha256=BpuM9rShca7idiLmGAsWZhXcJcuyVULgOmR2uORNOY8,182984
154
+ umap/static/umap/font/FiraSans-Light.woff2,sha256=b9P588hmLKGEFmHzEJ5NQsTOlaSpFfFf8XhK7pfNt_o,129180
155
+ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c1Eo7s0X2IUzVkugeQY,191400
156
+ umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
157
+ umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
158
+ umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
159
+ umap/static/umap/img/16-white.svg,sha256=zOp7SOTF5N0UixoriN-YPHcUWJ8oVTsptENVvCwEWR8,35034
160
+ umap/static/umap/img/16.svg,sha256=aWuJ2C7pahh1KPV8Q8ZQnCFFlrbvDfcmP4PTldvcNi8,21424
161
+ umap/static/umap/img/24-white.svg,sha256=tq2MLPvVKz4h4dHCmMp1-_brBmudqyCcMcSShhnDh24,17550
162
+ umap/static/umap/img/24.svg,sha256=jpi6lDVbN89-zyH3VwNf0pOKzjOfuF9l9yPV-NpE1cI,25175
163
+ umap/static/umap/img/edit.svg,sha256=iePt4pB5hJacTvqNyXxAYyGLvXlShm8JKykH8M6ZTTg,554
164
+ umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
165
+ umap/static/umap/img/logo.svg,sha256=pKBl4OK5JAWZLcwzXsIRFP4I6X6Op-bGzSBCbdUWDXU,327
166
+ umap/static/umap/img/logo_filigree.png,sha256=Io-aPHqkEZi5z_WM-XialFGSHn7U6Oxwqb1pc0o5c1Y,5537
167
+ umap/static/umap/img/logo_small.svg,sha256=xZ6RAthvT5QBi94OLobgmdMsbzSUCog_ReURXGJ8Ovw,2465
168
+ umap/static/umap/img/marker.png,sha256=0DYKyg5h8swIh80zYGOXcjP3QwFthMeHIO4AJv5V3VE,375
169
+ umap/static/umap/img/opensource.svg,sha256=hXEQkvJX_vxw2lZ5TU70vOomK_kJcW--WfYdlfvrWq0,473
170
+ umap/static/umap/img/osm.svg,sha256=v676T5hpZhLAFt-pK06jcnzAs9mvdHWtCx6iRvmaGbc,1997
171
+ umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
172
+ umap/static/umap/img/source/16-white.svg,sha256=sZQhsA8bf5EyxjxksJMtlmx8pyYbI-OZiFiFX4xSuj4,73381
173
+ umap/static/umap/img/source/16.svg,sha256=OHwbeoiEMXfGLSzCauzOdBEkNzCr_sC4sNB1sTn5JJ0,43293
174
+ umap/static/umap/img/source/24-white.svg,sha256=31n0rwyxcoJ69Mm2hvSAifQV0x00px0z-Jkf__UetnA,29369
175
+ umap/static/umap/img/source/24.svg,sha256=rocP2xyMQdigy8noiipCM8hJNOc9tvF4uoXUPFBAjxY,38901
176
+ umap/static/umap/js/umap.autocomplete.js,sha256=BwFdzOAzl_61JJMIM8CW2x2v78oxRvZZ7XQY8f53QVk,7937
177
+ umap/static/umap/js/umap.browser.js,sha256=xkjGC0YNW5B8p24qkKLrD26xFy3PuBb1S1GP5BJ0AWo,4764
178
+ umap/static/umap/js/umap.controls.js,sha256=PkX7x4p6MJNj3hWiUsMxEyYpGhpSlVp6i8GpoWJgD50,43818
179
+ umap/static/umap/js/umap.core.js,sha256=sarFAs61B883B3-wPf8OAnuSVJrs7vWOaA4fM3TAkUo,25600
180
+ umap/static/umap/js/umap.datalayer.permissions.js,sha256=nfDFq7O1QEbox23jgUZ8P5Pf_ahQSG889cVmJx0VxOU,1939
181
+ umap/static/umap/js/umap.features.js,sha256=3YNU0kPLfGQlRyb6cAEor7jmGkxBK2_mxVQVqVeIrdk,34379
182
+ umap/static/umap/js/umap.forms.js,sha256=e9K85tgmM_kgcz-dzpdKHkEL8lq6ddm9KxGm4rlGuKQ,32404
183
+ umap/static/umap/js/umap.icon.js,sha256=cxyXzFb8fPehVkabeY-E7dV7zIJ7kwsjNrIDiuS896M,7270
184
+ umap/static/umap/js/umap.importer.js,sha256=kQvcKWj2E8zls8i7Fq298P16IEslUXPekjGCVXb5nqA,5233
185
+ umap/static/umap/js/umap.js,sha256=ukFvx4Q3QgMjZVgPHp_p3Dha9Qd905Hg5jhPXa-4ZvM,59323
186
+ umap/static/umap/js/umap.layer.js,sha256=aWBqvy41uAExLo3a60DuudHPyI2cngZmKT8NIgZd5Ow,46248
187
+ umap/static/umap/js/umap.permissions.js,sha256=zzX90BkNveYPZeCVpMYY-LO_dLX2DxPxkHB4YcRju9g,6097
188
+ umap/static/umap/js/umap.popup.js,sha256=AFqruVQBUu5VHAucc_pxlWj8OKtxQerEp5lKNXdvAak,9951
189
+ umap/static/umap/js/umap.share.js,sha256=WWILz_qv8cl27hgWz46QyuEQZiW1HwZyfwyuXGz6t3Q,7726
190
+ umap/static/umap/js/umap.slideshow.js,sha256=P5zByJfMJXROMmFLdSbVqATP0Mf6AGx4QtYpiCvhV-4,4421
191
+ umap/static/umap/js/umap.tableeditor.js,sha256=6TSj9u7NsVKR0LSyQanFUB0XifG7P0GQYzSe8SOeV0k,4081
192
+ umap/static/umap/js/umap.ui.js,sha256=IugsUwlg2vDoRCAgKcRvH0GuiPj0Szht7kBpAxxhgt4,7701
193
+ umap/static/umap/js/umap.xhr.js,sha256=-HEti2JnTSExIfy2agAdoUGOvE7t3CzPHU9dPjEKYA4,8981
194
+ umap/static/umap/js/components/fragment.js,sha256=Fdftnu4RIbqUT9--67tLn2k2vly7dc6cK4eQJap7cw4,343
195
+ umap/static/umap/js/modules/global.js,sha256=w9JoQuubHC-YmdMiZjPQ6-sIAGD--l1N1mIS3N2kPRM,319
196
+ umap/static/umap/js/modules/urls.js,sha256=QhDajzML5O3TmuGW7AyaWVKCHKJBTF3658rH3O1Rb4k,884
197
+ umap/static/umap/locale/am_ET.js,sha256=xj25bPmQJSLZPZC3Cw5WT3fOBM6Ojq3kvHK_gS5ENAY,30157
198
+ umap/static/umap/locale/am_ET.json,sha256=Kqzsb7Q_jtpEl6kPuzUHYiEEWpfCNDb3NdwFcwZLAZg,30086
199
+ umap/static/umap/locale/ar.js,sha256=IUGD-MwFskdrlFTjashzjxDOl4tFZeGxs3UA3o9bJDE,26285
200
+ umap/static/umap/locale/ar.json,sha256=uoz2eKqGT547Xje_VQIFw4YbIBG17Ld8ukRjZri9wcA,26220
201
+ umap/static/umap/locale/ast.js,sha256=_UQWSVby33CumU9pv8ZWQY3cvIoonU1wF_YzxYY8BbM,25841
202
+ umap/static/umap/locale/ast.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
203
+ umap/static/umap/locale/bg.js,sha256=7ay6sjWHnybiVRzZwGSoqNbJw2eH9gg-ix0Rs5Mpl_o,29232
204
+ umap/static/umap/locale/bg.json,sha256=v7LRZmN_ATGw2CbLxYHapb3tZyHBZhpiGxiq9vM9CA8,29167
205
+ umap/static/umap/locale/br.js,sha256=LJaxw5KQvHObh2KK1caQ3rZe2ZkGVzteQHZpj8SXmvw,27357
206
+ umap/static/umap/locale/br.json,sha256=JSQXfUIHYoKjJpwXCCVIXbTvTJfS_jb43F_Dz70pBWU,27292
207
+ umap/static/umap/locale/ca.js,sha256=3GR1pjtCfrcMbjGPVc2SPD10ByqI-HBcO-Q65kMW5f0,26827
208
+ umap/static/umap/locale/ca.json,sha256=pTpV4vlwo9OjkNBvUdxTLSAL6gw3KqjedBqaA9lOe88,26762
209
+ umap/static/umap/locale/cs_CZ.js,sha256=20cck9frc3qmZZ1SCA0cQYer20LKp9mJcyI8t1Gffl8,28013
210
+ umap/static/umap/locale/cs_CZ.json,sha256=v55-JRl-ToBkVaYw1EShPIbbvxhI21vf66L1Je4P5zw,27942
211
+ umap/static/umap/locale/da.js,sha256=5DEQdimLAcj55SVsHJfLQItuVUFSyK_Ptgo4hPQAndo,26177
212
+ umap/static/umap/locale/da.json,sha256=xgq6u8pg6OXjFtMNMAcsdEIhDd0I-CExwMOyv1ozHKw,26112
213
+ umap/static/umap/locale/de.js,sha256=rIcF37YSGWlMoDBQHFhDZixEKdc_2ZGlNyuhWEkZFzw,28076
214
+ umap/static/umap/locale/de.json,sha256=8XgXftvrr3QiADcH39I9dqVgxNQ9Vf9ZDa0FUh0gNtg,28011
215
+ umap/static/umap/locale/el.js,sha256=TKkPu-nWe4WL6xyzDsyyTluSX__AgIPVr65LrvoY988,37923
216
+ umap/static/umap/locale/el.json,sha256=J5wWsKZG_zdAl1r3dSCjJ1BIfz-wAkOyriz2UwLOnvI,37858
217
+ umap/static/umap/locale/en.js,sha256=a71Yp9P8cMDbuQtZWh3zDDiYilWZa4BujugGc4rYF5A,25841
218
+ umap/static/umap/locale/en.json,sha256=yaZghzqVVCgj43KmvAo8yBA2LsOojlhhfQYbpqILQtA,25776
219
+ umap/static/umap/locale/en_US.json,sha256=v0POu4owEVhBxiZZ_cx7GtxIxsSYPa4JZGj3Ocj4l-A,25496
220
+ umap/static/umap/locale/es.js,sha256=YpWyQs_W5xm6BZN6OOVug0Xz4RLDVKnw5TlY5MY0gtg,28353
221
+ umap/static/umap/locale/es.json,sha256=fl1URlTx3ErJibcfm1377o2Zdarll767QdqWepMhLoY,28288
222
+ umap/static/umap/locale/et.js,sha256=Ywgmyjs9hIByrBt-08qrcWgJFefsDhTmYjHFJGyP9eo,26040
223
+ umap/static/umap/locale/et.json,sha256=Lq5RspVQmsk904HnPKGyRWRw74wPX9mS-veKu1tuqVM,25975
224
+ umap/static/umap/locale/eu.js,sha256=NZYhxkWnzd5Kx14p5nSpNt9wNOsQvTGGrYrrxQ321Vs,24242
225
+ umap/static/umap/locale/eu.json,sha256=7ZbrluA4I-_HLGUqOLMABfAp_ZmDQJVsmmd4V6PlQMQ,24177
226
+ umap/static/umap/locale/fa_IR.js,sha256=1ZukCBcK9wfV0723llvLpXPlxdAifnnm8y9C7qe_2R0,32463
227
+ umap/static/umap/locale/fa_IR.json,sha256=oqZdHimFsqj5J4PDyl795JF2-tLOX19Gg-dnSh-LJWQ,32392
228
+ umap/static/umap/locale/fi.js,sha256=RIoFuqRfkob0jLaWsbkN2AesISVIPIak6Rl-nhCdABE,26789
229
+ umap/static/umap/locale/fi.json,sha256=Q2XS68FRwkZ-0iwU5IXh3A_3IC0XD11USuYhvCnNOA8,26724
230
+ umap/static/umap/locale/fr.js,sha256=Kq38tu71As4bQxDn7ytXTT-TFCNca1_UNwrdXcgeb44,28199
231
+ umap/static/umap/locale/fr.json,sha256=nq8bNIDyb5T_UW1lCMaIboc-6GHBVKMztU140X5l-Ow,28134
232
+ umap/static/umap/locale/gl.js,sha256=alLzZxIN3YhYNkb_do4SZyvdQYlAORf1s3gdO1wAPU0,27376
233
+ umap/static/umap/locale/gl.json,sha256=Gos5mB7VA4-3-8He-T_YOieqxAwKP6EDqrInHYv8i5s,27311
234
+ umap/static/umap/locale/he.js,sha256=50n6M-b69TRB8QdbrstaK-IeE-6bMKo2QK_QEYQyrIg,29634
235
+ umap/static/umap/locale/he.json,sha256=Jv0o551uTyPGusaY6jnf3eT3nPpRlmty1c3ks2ouPrQ,29569
236
+ umap/static/umap/locale/hr.js,sha256=IS2LFr3iPY9XrcRMVikFK60FUDBo-utuxTiXiC0v5jc,26017
237
+ umap/static/umap/locale/hr.json,sha256=gq4jt2fESFLxVzePFTpyf886d22sNTR5RHsH1KU5hrY,25952
238
+ umap/static/umap/locale/hu.js,sha256=zjXHT8G1sUsv5qB20WB1fLWfkF0YsBJgurjOeM1F2g0,29588
239
+ umap/static/umap/locale/hu.json,sha256=ix2PbCrtWku92oHgu9TUOAmGLk2Cy2Be3CMRtrCDCcQ,29523
240
+ umap/static/umap/locale/id.js,sha256=HepHFD0pVv7nJ-7kQrXrlG9KhNrPMeKoNbZkoFPPdbo,25839
241
+ umap/static/umap/locale/id.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
242
+ umap/static/umap/locale/is.js,sha256=YlKmndnl4imWw0LCAD6wsf5SBOruJ9RGTkIDhdhfdyA,27258
243
+ umap/static/umap/locale/is.json,sha256=GpBX-2NRTQWhCkO1XVDXdU4dCa4cNgwLCn0RVTRUOaI,27193
244
+ umap/static/umap/locale/it.js,sha256=j1py9LFtTBpWm1NLIoNOltAGTuUkZiFS9qZOMYOOSag,28292
245
+ umap/static/umap/locale/it.json,sha256=phnyTuWiaAHUbHmZLCT8pT-TqGKMELi838JW9v-1SnY,28227
246
+ umap/static/umap/locale/ja.js,sha256=I6nJ2VH9Q8ZvEn6Ph8uXHxCdYSBWf030uIeQ-ThCn2Y,28681
247
+ umap/static/umap/locale/ja.json,sha256=rtOrZZr2xJ69QFIEA8sQU1_88gLrOWGci13PvDTe8Hg,28616
248
+ umap/static/umap/locale/ko.js,sha256=ZL60ERrJseRE2xfv_ZawhSe3pNxnSzJKSdlC9VbiKxw,26081
249
+ umap/static/umap/locale/ko.json,sha256=01JOCLmYP6GHL72emib3j8rCmsiNZx0aTszx8DThNiQ,26016
250
+ umap/static/umap/locale/lt.js,sha256=4bHCAJ9jyhY1bPjLISkJKzgs0RP8yD6x-L8f8zVP-fg,26720
251
+ umap/static/umap/locale/lt.json,sha256=wFwWj77kWTSWffr_C-jNZ5_MMrsDv3mlcnnBVqJUkhs,26655
252
+ umap/static/umap/locale/ms.js,sha256=9fVCmMTdHKVGR7w0MLBiD1o_0f7ktkpuofaTX5xQllc,27148
253
+ umap/static/umap/locale/ms.json,sha256=tJbptKybFLUzkB3cwndc38Vcf3tBL65H31YwhmZXl_k,27083
254
+ umap/static/umap/locale/nl.js,sha256=2crd0X4ATdU_HAkvgkMA0klI6M-3UcbVXtOWdrevPuk,27271
255
+ umap/static/umap/locale/nl.json,sha256=EdivZvsaCLi7dr1rUeUT8kky9-SlHydTAD9edZUxid8,27206
256
+ umap/static/umap/locale/no.js,sha256=-VkHkEb1DuXL85ldFuPPryXUksEb_RRBhfuhrTe7s9E,26078
257
+ umap/static/umap/locale/no.json,sha256=_kOcAkcK-4c3iQxwcKhHD7Qp01TQO5fAgf0DRMM9RL8,26013
258
+ umap/static/umap/locale/pl.js,sha256=PVIBx0R17PeZKvfzq6ekAoGywOhwDG7RGsN2KaD9-LU,27428
259
+ umap/static/umap/locale/pl.json,sha256=Chz8YEXEs6oh4WeKN0ZoY1DtRE5RBYahdpCNoqCllSc,27363
260
+ umap/static/umap/locale/pl_PL.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
261
+ umap/static/umap/locale/pt.js,sha256=41-KfOXn2dsw5mB2bi6TMaTwA_HFrkt6BYZ_0SlVa4I,27348
262
+ umap/static/umap/locale/pt.json,sha256=85UGbCEVf5su-mdUwoApxQwY07uxozgKEciD2TsTZPc,27283
263
+ umap/static/umap/locale/pt_BR.js,sha256=C7gxcZvFmjBDHg2vK5Ljef-WwkIF9PHmXl1XnibgyEE,27342
264
+ umap/static/umap/locale/pt_BR.json,sha256=1Jpzndg03cHvMFdVCY6VFof_l1ix1ta7nzzXdJN_3Eo,27271
265
+ umap/static/umap/locale/pt_PT.js,sha256=iaS_S7nrLak-dXjSMmi6lRBKKCTgQgQoo7zy1rFOKjQ,27354
266
+ umap/static/umap/locale/pt_PT.json,sha256=iF3GmersaypsMikazok5yGu6ynzjrcOU3UwiWk1aoD0,27283
267
+ umap/static/umap/locale/ro.js,sha256=DGxFMsv554Vj7g09oD2OUfAPQpZqLUOVRoj4k_Tt-UY,25876
268
+ umap/static/umap/locale/ro.json,sha256=qeg-3sPYFaAi1FFz1eAeSmbiiXmkcpWJwotMrYw00eg,25811
269
+ umap/static/umap/locale/ru.js,sha256=vwIkoM-tNBkk1HxddyIUI1-IB4IXEj9zXSZO_aHG8YU,33799
270
+ umap/static/umap/locale/ru.json,sha256=YvHpwetIU0PxNIr_I8e46jFJWfuu3KDqGUQuMYrVD1Y,33734
271
+ umap/static/umap/locale/si.js,sha256=_Wa9_18OzdnqGUvqbq0PDKC0pTGH6FhAw0vEZrkoxEQ,25799
272
+ umap/static/umap/locale/si.json,sha256=nXKIS9TV2eY76aWr5ylKIXQHaTzikUu8i4qmSV7SnJQ,25734
273
+ umap/static/umap/locale/sk_SK.js,sha256=SE73sbmXUsV4VO_10j2EP8P2H6Zh4m2P315ioY8oE_Q,27226
274
+ umap/static/umap/locale/sk_SK.json,sha256=3hqugwTiQqJr7oJpCvVGnMrE4uZNtF330WI2JDaoNTU,27155
275
+ umap/static/umap/locale/sl.js,sha256=WIUlS3_IdSu3i2M2kkJ9CkxJFVvPYJLPlXiyooZjAw8,27084
276
+ umap/static/umap/locale/sl.json,sha256=YG0MjzfDpr8QFUrhfwPYXfpSKtnmcuzQT4bgqrQwCuY,27019
277
+ umap/static/umap/locale/sr.js,sha256=PgaGoOBOqEc5UNn0fzCNr-S5-BzifX1bQ3Q1UII4gAw,30276
278
+ umap/static/umap/locale/sr.json,sha256=D1d5BWlr6n3Qpw9iRISbeFykTeajgvjdQg4WZ_GWDK4,30211
279
+ umap/static/umap/locale/sv.js,sha256=BcPHcBkKg3iWwwuGTpex9sUx4aS8VkUYy_lZnLF_3SU,27025
280
+ umap/static/umap/locale/sv.json,sha256=amsLJ54-y1nZTuqjPlao8Kse43du7NZ13HxpvCXpYkI,26960
281
+ umap/static/umap/locale/th_TH.js,sha256=oNWZzh01iEYDJ2dtZUHHRD8lLcpt_cnhMJPE4iGGuBs,25845
282
+ umap/static/umap/locale/th_TH.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
283
+ umap/static/umap/locale/tr.js,sha256=8QCSRY2Prb5wMnxuKQYj2tbo1_TrTdCjrjAFsrJKzUQ,27539
284
+ umap/static/umap/locale/tr.json,sha256=y4MF9rETzrpGYAmRQxLSELgMQUg6F-RizD_U1rLNlmo,27474
285
+ umap/static/umap/locale/uk_UA.js,sha256=8sdY0wIcK1iLGHSrsoCO1D8X-4TF7CuN96kjXVVlijk,33428
286
+ umap/static/umap/locale/uk_UA.json,sha256=zvza66VHdMqfLeKe3Vv8czpJzvflsm9rLsnWFkBLAq0,33357
287
+ umap/static/umap/locale/vi.js,sha256=ZSPSxXr9HHDoVBscncOa1t8jJUEaoR1eDyNdNq-YjrI,26149
288
+ umap/static/umap/locale/vi.json,sha256=PpcCsRpxT5c4tSDl-Jsxd33uQXxVDucUIZWtlkoXVfY,26084
289
+ umap/static/umap/locale/vi_VN.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
290
+ umap/static/umap/locale/zh.js,sha256=QGRtkUvQfJXMZaInEg7sGAN6VuM51aG7I5ZwhNoJags,25480
291
+ umap/static/umap/locale/zh.json,sha256=_hgBDOu0AbNWj3RRBlXDq4lWQvt60Y6-lFC1Nq0_jcg,25415
292
+ umap/static/umap/locale/zh_CN.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
293
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=UjNkQNth3wl8-go8hr0ZzFGU_VOcoQvXVDfL3YSNvRk,25774
294
+ umap/static/umap/locale/zh_TW.js,sha256=BWvfnL03xW_rH5KVd3IsEmZf_MsSyfyaPchx91LgAg0,25437
295
+ umap/static/umap/locale/zh_TW.json,sha256=DI4QghHGMGPtRYe4ryPdnHg9R4v0d16K_0vFgnt1Az4,25366
296
+ umap/static/umap/test/.eslintrc,sha256=zxYJhhVZ0wLRZ5qxM3yYJTGq_c134VHa8J2hplugqQ0,464
297
+ umap/static/umap/test/Choropleth.js,sha256=_4SMYFErWeuEjswt28GjseByotonFQ8zuHYiyqmlkuI,5340
298
+ umap/static/umap/test/Controls.js,sha256=cfLfIzCWawKaVRRFmyFS5pUDySDIDoJSR6tQ4eH3hEw,3516
299
+ umap/static/umap/test/DataLayer.js,sha256=dhsYY_ey_BsyW9RCRONenCt3yrgV5Ahk79bjM_cR5zA,15736
300
+ umap/static/umap/test/Feature.js,sha256=D9AiFKCsVCJwqp280i-LhPAhFqfL_Ov8XJE3qivVOFo,12472
301
+ umap/static/umap/test/Map.Export.js,sha256=4a4LTunh7bZNBtJXeh6WyS4CXkc6ZRRfAwHRvxNE9MQ,5104
302
+ umap/static/umap/test/Map.Init.js,sha256=g-u-0Oe8ucGL9ihZXBBT_S-ji5AG8Wwm4XeqqcniWyg,1589
303
+ umap/static/umap/test/Map.js,sha256=fkyT_XIIh8LsZcyFDPTOUW9IB84j7sqT1WuX4UM6HQE,17727
304
+ umap/static/umap/test/Marker.js,sha256=cuMzi2s6yJ4v_kWsn5vOnCfnWiFip__0RE3G-JqJuQ4,4179
305
+ umap/static/umap/test/Permissions.js,sha256=D2zw97L1bqIwZSG30r0NnbS1YLxGiCNQIKWmRuYuSGM,2239
306
+ umap/static/umap/test/Polygon.js,sha256=4XHWiJO-n9Ng8aRUYGT1JUsAoQV7TbD9j9Zx-fNSnKs,12618
307
+ umap/static/umap/test/Polyline.js,sha256=VF4Rf3sIbKwb1CEZ8bWKsJzovV9_rnCEkLedFwgQipM,14026
308
+ umap/static/umap/test/TableEditor.js,sha256=t0TJvhMLAu4g1lfereKWODz0G8rK4KspZn7xTWZIKFk,3216
309
+ umap/static/umap/test/URLs.js,sha256=FKXn6UsVMjeuXnGL2lcfuVQRTFWfMg1JKivHn5T9yoo,1793
310
+ umap/static/umap/test/Util.js,sha256=yhcmnlugm-D7ECvyw_RVdsn7sFdnR1XHnMgNiNCZ-XI,17972
311
+ umap/static/umap/test/_pre.js,sha256=JZ3NtZlyt4hrOR5_VOeK1qcaL9a7odofAqVpPc_yDmw,13095
312
+ umap/static/umap/test/index.html,sha256=cGaCGOA704N8PM_FcT-N32kuCPtsCDbzQJiIT-O8z8w,6491
137
313
  umap/static/umap/vendors/choropleth/choropleth.js,sha256=gayHzV6SB_MNdm48-ZANMOcAFkXw_rqaDUYkOWW0EkI,57721
138
314
  umap/static/umap/vendors/chroma/chroma.min.js,sha256=oZqg3zt5dAKHJLJmbYMRoias7cZakJR8e8Vu7LmjZ60,46174
139
315
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
@@ -284,8 +460,8 @@ umap/tests/integration/test_picto.py,sha256=RUZDIfS9m8-cQUs4_ZUIJDCn_QplUHgRc644
284
460
  umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
285
461
  umap/tests/integration/test_statics.py,sha256=8pPmFSnMhIBLzQvHb-rUzptk4goJzdPSXQwxj4rekT0,1353
286
462
  umap/tests/integration/test_tilelayer.py,sha256=S84Q7xsvKQcDAr05dpBog7qRCljqrSZCUu4x2WgTGCg,4139
287
- umap_project-1.14.0a1.dist-info/METADATA,sha256=nlILs5elyDfwh5PH6NZGGr4YrCe8YwWVL7CYrygck4w,2596
288
- umap_project-1.14.0a1.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
289
- umap_project-1.14.0a1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
290
- umap_project-1.14.0a1.dist-info/licenses/LICENSE,sha256=BtMQT5EWvEua8jhXIrm2qfP8dmRFsMqCrJtq4k9Pb34,482
291
- umap_project-1.14.0a1.dist-info/RECORD,,
463
+ umap_project-1.14.0a2.dist-info/METADATA,sha256=I6dclyHcdrgf7dCbtaN_jxOp0wi4kiBLFjflfGHrmtA,2596
464
+ umap_project-1.14.0a2.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
465
+ umap_project-1.14.0a2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
466
+ umap_project-1.14.0a2.dist-info/licenses/LICENSE,sha256=BtMQT5EWvEua8jhXIrm2qfP8dmRFsMqCrJtq4k9Pb34,482
467
+ umap_project-1.14.0a2.dist-info/RECORD,,