localcosmos-app-kit 0.2.1__tar.gz

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.
Files changed (1634) hide show
  1. localcosmos_app_kit-0.2.1/LICENCE +9 -0
  2. localcosmos_app_kit-0.2.1/MANIFEST.in +24 -0
  3. localcosmos_app_kit-0.2.1/PKG-INFO +34 -0
  4. localcosmos_app_kit-0.2.1/README.md +3 -0
  5. localcosmos_app_kit-0.2.1/app_kit/__init__.py +1 -0
  6. localcosmos_app_kit-0.2.1/app_kit/admin.py +8 -0
  7. localcosmos_app_kit-0.2.1/app_kit/admin_urls.py +110 -0
  8. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/__init__.py +1 -0
  9. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/admin.py +14 -0
  10. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/apps.py +5 -0
  11. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/migrations/0001_initial.py +48 -0
  12. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/migrations/__init__.py +0 -0
  13. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/models.py +80 -0
  14. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/permissions.py +14 -0
  15. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/serializers.py +109 -0
  16. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/tests/mixins.py +39 -0
  17. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/tests/test_serializers.py +249 -0
  18. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/tests/test_views.py +141 -0
  19. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/urls.py +19 -0
  20. localcosmos_app_kit-0.2.1/app_kit/app_kit_api/views.py +236 -0
  21. localcosmos_app_kit-0.2.1/app_kit/appbuilder/AppBuilderBase.py +752 -0
  22. localcosmos_app_kit-0.2.1/app_kit/appbuilder/AppPreviewBuilder.py +149 -0
  23. localcosmos_app_kit-0.2.1/app_kit/appbuilder/AppReleaseBuilder.py +2724 -0
  24. localcosmos_app_kit-0.2.1/app_kit/appbuilder/ContentImageBuilder.py +224 -0
  25. localcosmos_app_kit-0.2.1/app_kit/appbuilder/GBIFlib.py +42 -0
  26. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/BackboneTaxonomyJSONBuilder.py +236 -0
  27. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/ButtonMatrixJSONBuilder.py +85 -0
  28. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/FrontendJSONBuilder.py +77 -0
  29. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/GenericFormJSONBuilder.py +182 -0
  30. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/GlossaryJSONBuilder.py +421 -0
  31. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/JSONBuilder.py +205 -0
  32. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/MapJSONBuilder.py +90 -0
  33. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/NatureGuideJSONBuilder.py +684 -0
  34. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/TaxonProfilesJSONBuilder.py +722 -0
  35. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/TemplateContentJSONBuilder.py +138 -0
  36. localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/__init__.py +0 -0
  37. localcosmos_app_kit-0.2.1/app_kit/appbuilder/__init__.py +3 -0
  38. localcosmos_app_kit-0.2.1/app_kit/appbuilder/precompile_fulltree.py +64 -0
  39. localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/__init__.py +0 -0
  40. localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_ContentImageBuilder.py +366 -0
  41. localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_builder.py +86 -0
  42. localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_builder_base.py +459 -0
  43. localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_preview_builder.py +101 -0
  44. localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_release_builder.py +853 -0
  45. localcosmos_app_kit-0.2.1/app_kit/apps.py +5 -0
  46. localcosmos_app_kit-0.2.1/app_kit/context_processors.py +12 -0
  47. localcosmos_app_kit-0.2.1/app_kit/definitions.py +5 -0
  48. localcosmos_app_kit-0.2.1/app_kit/features/__init__.py +0 -0
  49. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/__init__.py +0 -0
  50. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/admin.py +3 -0
  51. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/apps.py +5 -0
  52. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/forms.py +51 -0
  53. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/migrations/0001_initial.py +54 -0
  54. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/migrations/__init__.py +0 -0
  55. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/models.py +147 -0
  56. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/add_taxon_form.html +45 -0
  57. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/manage_backbone_taxa_form.html +54 -0
  58. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/manage_backbonetaxonomy.html +125 -0
  59. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/manage_fulltree_form.html +20 -0
  60. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/remove_backbone_taxon.html +31 -0
  61. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/taxonlist.html +73 -0
  62. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/widgets/backbone_taxon_autocomplete_widget.html +51 -0
  63. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/widgets/backbone_taxon_autocomplete_widget_search_only.html +30 -0
  64. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/tests/test_forms.py +55 -0
  65. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/tests/test_models.py +208 -0
  66. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/tests/test_views.py +365 -0
  67. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/urls.py +17 -0
  68. localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/views.py +318 -0
  69. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/__init__.py +0 -0
  70. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/admin.py +3 -0
  71. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/apps.py +5 -0
  72. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/forms.py +225 -0
  73. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/models.py +259 -0
  74. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/ajax/generic_form_exposed_field_options.html +3 -0
  75. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/buttonmatrix_button.html +27 -0
  76. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/delete_buttonmatrix_element.html +36 -0
  77. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/manage_button.html +33 -0
  78. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/manage_buttonmatrix.html +88 -0
  79. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templatetags/__init__.py +0 -0
  80. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templatetags/buttonmatrix_tags.py +38 -0
  81. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/tests.py +3 -0
  82. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/urls.py +15 -0
  83. localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/views.py +233 -0
  84. localcosmos_app_kit-0.2.1/app_kit/features/frontend/PrivateFrontendImporter.py +228 -0
  85. localcosmos_app_kit-0.2.1/app_kit/features/frontend/__init__.py +0 -0
  86. localcosmos_app_kit-0.2.1/app_kit/features/frontend/admin.py +3 -0
  87. localcosmos_app_kit-0.2.1/app_kit/features/frontend/apps.py +5 -0
  88. localcosmos_app_kit-0.2.1/app_kit/features/frontend/forms.py +188 -0
  89. localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/0001_initial.py +53 -0
  90. localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/0002_frontend_configuration.py +18 -0
  91. localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/0003_alter_frontendtext_unique_together.py +17 -0
  92. localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/__init__.py +0 -0
  93. localcosmos_app_kit-0.2.1/app_kit/features/frontend/models.py +139 -0
  94. localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/change_frontend.html +29 -0
  95. localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/install_private_frontend.html +31 -0
  96. localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/manage_frontend_settings.html +47 -0
  97. localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/upload_private_frontend.html +39 -0
  98. localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/manage_frontend.html +51 -0
  99. localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/mixins.py +43 -0
  100. localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_PrivateFrontendImporter.py +447 -0
  101. localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_forms.py +57 -0
  102. localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_models.py +78 -0
  103. localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_views.py +574 -0
  104. localcosmos_app_kit-0.2.1/app_kit/features/frontend/urls.py +15 -0
  105. localcosmos_app_kit-0.2.1/app_kit/features/frontend/views.py +296 -0
  106. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/__init__.py +0 -0
  107. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/admin.py +3 -0
  108. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/apps.py +5 -0
  109. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/definitions.py +9 -0
  110. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/fields.py +6 -0
  111. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/forms.py +382 -0
  112. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/migrations/0001_initial.py +88 -0
  113. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/migrations/__init__.py +0 -0
  114. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/models.py +387 -0
  115. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/static/generic_forms/datePicker.js +468 -0
  116. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/static/generic_forms/genericforms.css +25 -0
  117. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/static/generic_forms/genericforms.css~ +13 -0
  118. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/delete_generic_field.html +33 -0
  119. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/delete_generic_value.html +38 -0
  120. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/manage_generic_field.html +123 -0
  121. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/manage_generic_field_choices.html +99 -0
  122. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/generic_field.html +16 -0
  123. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/generic_field_modify.html +28 -0
  124. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/manage_generic_form.html +185 -0
  125. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templatetags/__init__.py +0 -0
  126. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templatetags/genericforms.py +45 -0
  127. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/__init__.py +0 -0
  128. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_forms.py +473 -0
  129. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_models.py +516 -0
  130. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_templatetags_old.py +302 -0
  131. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_views.py +1260 -0
  132. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/urls.py +25 -0
  133. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/views.py +395 -0
  134. localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/widgets.py +2 -0
  135. localcosmos_app_kit-0.2.1/app_kit/features/glossary/__init__.py +0 -0
  136. localcosmos_app_kit-0.2.1/app_kit/features/glossary/admin.py +3 -0
  137. localcosmos_app_kit-0.2.1/app_kit/features/glossary/apps.py +5 -0
  138. localcosmos_app_kit-0.2.1/app_kit/features/glossary/forms.py +54 -0
  139. localcosmos_app_kit-0.2.1/app_kit/features/glossary/migrations/0001_initial.py +58 -0
  140. localcosmos_app_kit-0.2.1/app_kit/features/glossary/migrations/0002_auto_20201207_1328.py +27 -0
  141. localcosmos_app_kit-0.2.1/app_kit/features/glossary/migrations/__init__.py +0 -0
  142. localcosmos_app_kit-0.2.1/app_kit/features/glossary/models.py +104 -0
  143. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/add_glossary_entry.html +45 -0
  144. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/add_glossary_entry_form.html +22 -0
  145. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/delete_glossary_entry.html +8 -0
  146. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/glossary_entries.html +28 -0
  147. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/glossary_entry.html +28 -0
  148. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/manage_glossary_entry.html +37 -0
  149. localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/manage_glossary.html +22 -0
  150. localcosmos_app_kit-0.2.1/app_kit/features/glossary/tests/test_forms.py +29 -0
  151. localcosmos_app_kit-0.2.1/app_kit/features/glossary/tests/test_models.py +126 -0
  152. localcosmos_app_kit-0.2.1/app_kit/features/glossary/tests/test_views.py +338 -0
  153. localcosmos_app_kit-0.2.1/app_kit/features/glossary/urls.py +17 -0
  154. localcosmos_app_kit-0.2.1/app_kit/features/glossary/views.py +201 -0
  155. localcosmos_app_kit-0.2.1/app_kit/features/glossary/zip_import.py +236 -0
  156. localcosmos_app_kit-0.2.1/app_kit/features/maps/__init__.py +0 -0
  157. localcosmos_app_kit-0.2.1/app_kit/features/maps/admin.py +3 -0
  158. localcosmos_app_kit-0.2.1/app_kit/features/maps/apps.py +5 -0
  159. localcosmos_app_kit-0.2.1/app_kit/features/maps/forms.py +79 -0
  160. localcosmos_app_kit-0.2.1/app_kit/features/maps/migrations/0001_initial.py +47 -0
  161. localcosmos_app_kit-0.2.1/app_kit/features/maps/migrations/0002_maptaxonomicfilter_filtertaxon.py +42 -0
  162. localcosmos_app_kit-0.2.1/app_kit/features/maps/migrations/__init__.py +0 -0
  163. localcosmos_app_kit-0.2.1/app_kit/features/maps/models.py +91 -0
  164. localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/delete_filter_taxon.html +12 -0
  165. localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/manage_project_area.html +308 -0
  166. localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/manage_taxonomic_filter.html +52 -0
  167. localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/taxonomic_filters.html +45 -0
  168. localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/manage_maps.html +248 -0
  169. localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/mixins.py +49 -0
  170. localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/test_forms.py +192 -0
  171. localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/test_models.py +165 -0
  172. localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/test_views.py +585 -0
  173. localcosmos_app_kit-0.2.1/app_kit/features/maps/urls.py +19 -0
  174. localcosmos_app_kit-0.2.1/app_kit/features/maps/views.py +256 -0
  175. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/__init__.py +0 -0
  176. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/admin.py +3 -0
  177. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/apps.py +5 -0
  178. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/definitions.py +28 -0
  179. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/fields.py +84 -0
  180. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/forms.py +385 -0
  181. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/matrix_filter_forms.py +188 -0
  182. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/matrix_filter_space_forms.py +83 -0
  183. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/matrix_filters.py +1533 -0
  184. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0001_initial.py +204 -0
  185. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0002_auto_20201013_0901.py +24 -0
  186. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0003_matrixfilterrestriction.py +24 -0
  187. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0004_auto_20210616_1315.py +17 -0
  188. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0005_metanode_settings.py +18 -0
  189. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0006_auto_20220503_0747.py +18 -0
  190. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0007_auto_20221110_0613.py +23 -0
  191. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0008_meta_node_description.py +18 -0
  192. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0009_meta_node_morphotype.py +18 -0
  193. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0010_matrix_filter_additional_data.py +18 -0
  194. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/__init__.py +0 -0
  195. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/models.py +1584 -0
  196. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/add_existing_nodes.html +153 -0
  197. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/add_existing_nodes_page.html +19 -0
  198. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/add_keynodes_menu.html +19 -0
  199. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/copy_tree_branch.html +87 -0
  200. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_additional_matrix_filter_space_image.html +6 -0
  201. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_matrix_filter_value.html +9 -0
  202. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_nodelink.html +9 -0
  203. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_overview_image.html +13 -0
  204. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_additional_matrix_filter_space_image.html +11 -0
  205. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_color_filter_space.html +130 -0
  206. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_matrix_filter.html +36 -0
  207. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_matrix_filter_restrictions.html +52 -0
  208. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_matrix_filter_space.html +157 -0
  209. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_nodelink_form.html +97 -0
  210. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_overview_image.html +18 -0
  211. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/matrix_filters.html +264 -0
  212. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/move_natureguide_node.html +52 -0
  213. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/natureguide_node.html +44 -0
  214. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/natureguide_node_small.html +38 -0
  215. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/node_loader.html +25 -0
  216. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/node_management_menu.html +21 -0
  217. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/nodelist.html +16 -0
  218. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/reload_matrix_filters.html +6 -0
  219. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/manage_nature_guide.html +199 -0
  220. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/manage_node.html +17 -0
  221. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/node_analysis.html +61 -0
  222. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/nodemenu_loader.html +22 -0
  223. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_colors_widget.html +25 -0
  224. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_description_widget.html +20 -0
  225. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_numbers_widget.html +18 -0
  226. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_range_widget.html +25 -0
  227. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_text_description_widget.html +17 -0
  228. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/grid_choices.html +98 -0
  229. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/horizontal_choices.html +91 -0
  230. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/range.html +68 -0
  231. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_colors.html +15 -0
  232. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_numbers.html +18 -0
  233. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_patterns.html +21 -0
  234. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_taxonfilters.html +13 -0
  235. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_texts.html +18 -0
  236. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_colors.html +15 -0
  237. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_numbers.html +12 -0
  238. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_patterns.html +1 -0
  239. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_taxonfilters.html +7 -0
  240. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_texts.html +12 -0
  241. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/common.py +225 -0
  242. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_forms.py +610 -0
  243. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_matrix_filters.py +2664 -0
  244. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_models.py +2406 -0
  245. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_views.py +4040 -0
  246. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/urls.py +80 -0
  247. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/views.py +1640 -0
  248. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/widgets.py +239 -0
  249. localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/zip_import.py +1157 -0
  250. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/__init__.py +0 -0
  251. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/admin.py +3 -0
  252. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/apps.py +5 -0
  253. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/forms.py +191 -0
  254. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0001_initial.py +80 -0
  255. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0002_taxontext_long_text.py +18 -0
  256. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0003_auto_20221021_0746.py +18 -0
  257. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0004_alter_taxontexttype_options.py +17 -0
  258. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0005_taxonprofile_tags.py +20 -0
  259. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0006_taxonprofile_publication_status.py +18 -0
  260. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0007_alter_taxonprofile_unique_together.py +17 -0
  261. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/__init__.py +0 -0
  262. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/models.py +211 -0
  263. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/batch_change_taxon_profiles_publication_status.html +26 -0
  264. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/change_taxon_profile_publication_status.html +26 -0
  265. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/collected_taxon_images.html +66 -0
  266. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/collected_taxon_traits.html +57 -0
  267. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/create_taxon_profile.html +38 -0
  268. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/delete_taxon_profile.html +16 -0
  269. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/delete_taxon_profile_image.html +12 -0
  270. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/delete_taxon_text_type.html +10 -0
  271. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_taxon_profile_form.html +76 -0
  272. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_taxon_profile_image.html +34 -0
  273. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_text_type.html +36 -0
  274. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_text_types_order.html +81 -0
  275. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/nature_guide_taxonlist.html +46 -0
  276. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/non_nature_guide_taxonlist.html +18 -0
  277. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/taxonlist.html +24 -0
  278. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/manage_taxon_profile.html +160 -0
  279. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/manage_taxon_profiles.html +156 -0
  280. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/manage_taxon_texts.html +59 -0
  281. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templatetags/__init__.py +0 -0
  282. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templatetags/taxon_profile_tags.py +24 -0
  283. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/tests/test_forms.py +162 -0
  284. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/tests/test_models.py +291 -0
  285. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/tests/test_views.py +1203 -0
  286. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/urls.py +47 -0
  287. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/views.py +744 -0
  288. localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/zip_import.py +225 -0
  289. localcosmos_app_kit-0.2.1/app_kit/forms.py +427 -0
  290. localcosmos_app_kit-0.2.1/app_kit/generic.py +191 -0
  291. localcosmos_app_kit-0.2.1/app_kit/generic_content_validation.py +37 -0
  292. localcosmos_app_kit-0.2.1/app_kit/generic_content_zip_import.py +468 -0
  293. localcosmos_app_kit-0.2.1/app_kit/global_urls.py +41 -0
  294. localcosmos_app_kit-0.2.1/app_kit/locale/de/LC_MESSAGES/django.mo +0 -0
  295. localcosmos_app_kit-0.2.1/app_kit/locale/de/LC_MESSAGES/django.po +3623 -0
  296. localcosmos_app_kit-0.2.1/app_kit/locale/en/LC_MESSAGES/django.mo +0 -0
  297. localcosmos_app_kit-0.2.1/app_kit/locale/en/LC_MESSAGES/django.po +3007 -0
  298. localcosmos_app_kit-0.2.1/app_kit/management/__init__.py +0 -0
  299. localcosmos_app_kit-0.2.1/app_kit/middleware.py +39 -0
  300. localcosmos_app_kit-0.2.1/app_kit/migrations/0001_initial.py +123 -0
  301. localcosmos_app_kit-0.2.1/app_kit/migrations/0002_contentimage_features.py +18 -0
  302. localcosmos_app_kit-0.2.1/app_kit/migrations/0003_auto_20220520_0640.py +26 -0
  303. localcosmos_app_kit-0.2.1/app_kit/migrations/0004_auto_20220608_0717.py +33 -0
  304. localcosmos_app_kit-0.2.1/app_kit/migrations/0005_metaappgenericcontent_position.py +18 -0
  305. localcosmos_app_kit-0.2.1/app_kit/migrations/__init__.py +0 -0
  306. localcosmos_app_kit-0.2.1/app_kit/models.py +1124 -0
  307. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/__init__.py +0 -0
  308. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/admin.py +8 -0
  309. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/apps.py +5 -0
  310. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/forms.py +30 -0
  311. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/management/__init__.py +0 -0
  312. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/management/commands/__init__.py +0 -0
  313. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/management/commands/fix_staging_domains.py +60 -0
  314. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/middleware.py +77 -0
  315. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/migrations/0001_initial.py +57 -0
  316. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/migrations/__init__.py +0 -0
  317. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/models.py +110 -0
  318. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/public_schema_urls.py +45 -0
  319. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/setup_forms.py +18 -0
  320. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/setup_urls.py +11 -0
  321. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/setup_views.py +131 -0
  322. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/contact_us.html +31 -0
  323. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/delete_account.html +34 -0
  324. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/edit_account.html +31 -0
  325. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/my_account.html +50 -0
  326. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/setup/setup_initial_appkit.html +63 -0
  327. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/multi_tenancy/list_app_kits.html +191 -0
  328. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/tenant_schema_urls.py +24 -0
  329. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/tests.py +3 -0
  330. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/utils.py +42 -0
  331. localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/views.py +98 -0
  332. localcosmos_app_kit-0.2.1/app_kit/permission_rules.py +24 -0
  333. localcosmos_app_kit-0.2.1/app_kit/server_side_cursors.py +67 -0
  334. localcosmos_app_kit-0.2.1/app_kit/settings.py +3 -0
  335. localcosmos_app_kit-0.2.1/app_kit/static/anycluster/openlayers/anycluster-openlayers.js +20502 -0
  336. localcosmos_app_kit-0.2.1/app_kit/static/anycluster/openlayers/anycluster-openlayers.js.map +1 -0
  337. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ButtonMatrix.js +143 -0
  338. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.css +3719 -0
  339. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.css.map +1 -0
  340. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css +7 -0
  341. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css.map +1 -0
  342. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.css +331 -0
  343. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.css.map +1 -0
  344. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css +8 -0
  345. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css.map +1 -0
  346. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.css +10038 -0
  347. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.css.map +1 -0
  348. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.min.css +7 -0
  349. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.min.css.map +1 -0
  350. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.js +7013 -0
  351. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.js.map +1 -0
  352. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js +7 -0
  353. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js.map +1 -0
  354. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.js +4435 -0
  355. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.js.map +1 -0
  356. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.min.js +7 -0
  357. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.min.js.map +1 -0
  358. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/Alphabetfilter.svg +67 -0
  359. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/album.svg +102 -0
  360. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/camera.svg +79 -0
  361. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/observation.svg +98 -0
  362. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/occurrence.svg +139 -0
  363. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxon_detail.svg +227 -0
  364. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Amphibia.svg +90 -0
  365. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Animalia.svg +134 -0
  366. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Anura.svg +76 -0
  367. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Arachnida.svg +368 -0
  368. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Arthropoda.svg +585 -0
  369. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Aves.svg +76 -0
  370. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Chordata.svg +153 -0
  371. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Coleoptera.svg +252 -0
  372. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Customfilter.svg +67 -0
  373. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Fungi.svg +89 -0
  374. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Holocephali,Elasmobranchii,Sarcopterygii,Actinopterygii.svg +76 -0
  375. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Insecta.svg +366 -0
  376. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Lepidoptera.svg +99 -0
  377. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Mammalia.svg +90 -0
  378. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Mollusca.svg +87 -0
  379. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Odonata.svg +83 -0
  380. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Plantae.svg +76 -0
  381. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/no_filter.svg +108 -0
  382. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/wikipedia_button.svg +73 -0
  383. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/LICENSE.md +49 -0
  384. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/README.md +68 -0
  385. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/ckeditor.js +6 -0
  386. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/ckeditor.js.map +1 -0
  387. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/af.js +1 -0
  388. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ar.js +1 -0
  389. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ast.js +1 -0
  390. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/az.js +1 -0
  391. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/bg.js +1 -0
  392. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ca.js +1 -0
  393. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/cs.js +1 -0
  394. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/da.js +1 -0
  395. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/de-ch.js +1 -0
  396. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/de.js +1 -0
  397. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/el.js +1 -0
  398. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/en-au.js +1 -0
  399. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/en-gb.js +1 -0
  400. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/eo.js +1 -0
  401. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/es.js +1 -0
  402. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/et.js +1 -0
  403. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/eu.js +1 -0
  404. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/fa.js +1 -0
  405. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/fi.js +1 -0
  406. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/fr.js +1 -0
  407. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/gl.js +1 -0
  408. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/gu.js +1 -0
  409. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/he.js +1 -0
  410. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/hi.js +1 -0
  411. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/hr.js +1 -0
  412. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/hu.js +1 -0
  413. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/id.js +1 -0
  414. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/it.js +1 -0
  415. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ja.js +1 -0
  416. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/km.js +1 -0
  417. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/kn.js +1 -0
  418. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ko.js +1 -0
  419. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ku.js +1 -0
  420. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/lt.js +1 -0
  421. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/lv.js +1 -0
  422. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/nb.js +1 -0
  423. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ne.js +1 -0
  424. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/nl.js +1 -0
  425. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/no.js +1 -0
  426. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/oc.js +1 -0
  427. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/pl.js +1 -0
  428. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/pt-br.js +1 -0
  429. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/pt.js +1 -0
  430. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ro.js +1 -0
  431. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ru.js +1 -0
  432. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/si.js +1 -0
  433. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sk.js +1 -0
  434. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sl.js +1 -0
  435. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sq.js +1 -0
  436. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sr-latn.js +1 -0
  437. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sr.js +1 -0
  438. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sv.js +1 -0
  439. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/th.js +1 -0
  440. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/tk.js +1 -0
  441. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/tr.js +1 -0
  442. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/tt.js +1 -0
  443. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ug.js +1 -0
  444. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/uk.js +1 -0
  445. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/vi.js +1 -0
  446. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/zh-cn.js +1 -0
  447. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/zh.js +1 -0
  448. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/package.json +30 -0
  449. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/sample/index.html +116 -0
  450. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/sample/styles.css +456 -0
  451. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/src/ckeditor.js +27 -0
  452. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/webpack.config.js +96 -0
  453. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/css/app.css +33 -0
  454. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/css/app_kit.css +1008 -0
  455. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/handlebars-v4.0.10.js +4840 -0
  456. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/horizontal-slide/horizontal-slide.css +157 -0
  457. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/horizontal-slide/horizontal-slide.js +50 -0
  458. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/add_element.png +0 -0
  459. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/auditory.svg +109 -0
  460. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/burger.png +0 -0
  461. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/checkbox-off.svg +66 -0
  462. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/checkbox-on.svg +67 -0
  463. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/close.png +0 -0
  464. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/BackboneTaxonomy.svg +153 -0
  465. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/FactSheets.svg +175 -0
  466. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/Frontend.svg +261 -0
  467. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/GenericForm.svg +98 -0
  468. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/Glossary.svg +144 -0
  469. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/Map.svg +139 -0
  470. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/NatureGuide.svg +108 -0
  471. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/TaxonProfiles.svg +227 -0
  472. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/template_content.svg +81 -0
  473. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/forward-arrow.svg +159 -0
  474. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/gear.gif +0 -0
  475. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/gustatory.svg +108 -0
  476. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/lclogo32.png +0 -0
  477. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/microscope.svg +88 -0
  478. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/olfactory.svg +94 -0
  479. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/scalpel.svg +134 -0
  480. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/spinner.gif +0 -0
  481. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/spinner_huge.gif +0 -0
  482. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/spinner_old.gif +0 -0
  483. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/tactile.svg +94 -0
  484. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/visual.svg +104 -0
  485. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/hammer.js +2643 -0
  486. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/jquery-3.3.1.min.js +2 -0
  487. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/observatory_admin.js +346 -0
  488. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/polyfills.js +15 -0
  489. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/popper.min.js +5 -0
  490. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Control.Draw.js +118 -0
  491. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Leaflet.Draw.Event.js +177 -0
  492. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Leaflet.draw.js +189 -0
  493. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Toolbar.js +334 -0
  494. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Tooltip.js +118 -0
  495. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/copyright.js +7 -0
  496. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/DrawToolbar.js +110 -0
  497. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Circle.js +83 -0
  498. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.CircleMarker.js +42 -0
  499. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Feature.js +104 -0
  500. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Marker.js +127 -0
  501. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Polygon.js +129 -0
  502. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Polyline.js +592 -0
  503. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Rectangle.js +98 -0
  504. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.SimpleShape.js +119 -0
  505. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/EditToolbar.js +194 -0
  506. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Circle.js +57 -0
  507. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.CircleMarker.js +53 -0
  508. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Marker.js +84 -0
  509. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Poly.js +520 -0
  510. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Rectangle.js +125 -0
  511. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.SimpleShape.js +229 -0
  512. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/EditToolbar.Delete.js +161 -0
  513. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/EditToolbar.Edit.js +290 -0
  514. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/GeometryUtil.js +165 -0
  515. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/LatLngUtil.js +28 -0
  516. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/LineUtil.Intersect.js +22 -0
  517. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/Polygon.Intersect.js +33 -0
  518. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/Polyline.Intersect.js +106 -0
  519. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/TouchEvents.js +272 -0
  520. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/images/spritesheet-2x.png +0 -0
  521. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/images/spritesheet.png +0 -0
  522. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/images/spritesheet.svg +155 -0
  523. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/leaflet.draw.css +325 -0
  524. localcosmos_app_kit-0.2.1/app_kit/static/app_kit/sortable/Sortable.min.js +2 -0
  525. localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/IdentificationMatrix.js +1920 -0
  526. localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/IdentificationMatrix_beta.js +1599 -0
  527. localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/crosslink.svg +209 -0
  528. localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/jquery-searchfornode-autocomplete.js +59 -0
  529. localcosmos_app_kit-0.2.1/app_kit/static/noimage.png +0 -0
  530. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/AssertionError.d.ts +23 -0
  531. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/AssertionError.d.ts.map +1 -0
  532. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/AssertionError.js +101 -0
  533. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Collection.d.ts +194 -0
  534. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Collection.d.ts.map +1 -0
  535. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Collection.js +329 -0
  536. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/CollectionEventType.d.ts +6 -0
  537. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/CollectionEventType.d.ts.map +1 -0
  538. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/CollectionEventType.js +21 -0
  539. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/DataTile.d.ts +114 -0
  540. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/DataTile.d.ts.map +1 -0
  541. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/DataTile.js +191 -0
  542. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Disposable.d.ts +26 -0
  543. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Disposable.d.ts.map +1 -0
  544. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Disposable.js +36 -0
  545. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Feature.d.ts +225 -0
  546. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Feature.d.ts.map +1 -0
  547. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Feature.js +334 -0
  548. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Geolocation.d.ts +254 -0
  549. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Geolocation.d.ts.map +1 -0
  550. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Geolocation.js +417 -0
  551. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Image.d.ts +103 -0
  552. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Image.d.ts.map +1 -0
  553. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Image.js +225 -0
  554. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageBase.d.ts +65 -0
  555. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageBase.d.ts.map +1 -0
  556. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageBase.js +98 -0
  557. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageCanvas.d.ts +60 -0
  558. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageCanvas.d.ts.map +1 -0
  559. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageCanvas.js +92 -0
  560. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageState.d.ts +9 -0
  561. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageState.d.ts.map +1 -0
  562. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageState.js +14 -0
  563. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageTile.d.ts +70 -0
  564. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageTile.d.ts.map +1 -0
  565. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageTile.js +188 -0
  566. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Kinetic.d.ts +71 -0
  567. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Kinetic.d.ts.map +1 -0
  568. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Kinetic.js +126 -0
  569. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/LICENSE.md +25 -0
  570. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Map.d.ts +852 -0
  571. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Map.d.ts.map +1 -0
  572. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Map.js +1840 -0
  573. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEvent.d.ts +64 -0
  574. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEvent.d.ts.map +1 -0
  575. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEvent.js +115 -0
  576. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventHandler.d.ts +140 -0
  577. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventHandler.d.ts.map +1 -0
  578. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventHandler.js +414 -0
  579. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventType.d.ts +20 -0
  580. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventType.d.ts.map +1 -0
  581. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventType.js +59 -0
  582. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEvent.d.ts +28 -0
  583. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEvent.d.ts.map +1 -0
  584. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEvent.js +36 -0
  585. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEventType.d.ts +13 -0
  586. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEventType.d.ts.map +1 -0
  587. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEventType.js +47 -0
  588. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapProperty.d.ts +8 -0
  589. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapProperty.d.ts.map +1 -0
  590. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapProperty.js +13 -0
  591. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Object.d.ts +178 -0
  592. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Object.d.ts.map +1 -0
  593. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Object.js +265 -0
  594. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ObjectEventType.d.ts +6 -0
  595. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ObjectEventType.d.ts.map +1 -0
  596. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ObjectEventType.js +19 -0
  597. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Observable.d.ts +96 -0
  598. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Observable.d.ts.map +1 -0
  599. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Observable.js +191 -0
  600. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Overlay.d.ts +339 -0
  601. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Overlay.d.ts.map +1 -0
  602. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Overlay.js +582 -0
  603. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/README.md +118 -0
  604. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Tile.d.ts +243 -0
  605. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Tile.d.ts.map +1 -0
  606. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Tile.js +322 -0
  607. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileCache.d.ts +16 -0
  608. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileCache.d.ts.map +1 -0
  609. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileCache.js +48 -0
  610. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileQueue.d.ts +59 -0
  611. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileQueue.d.ts.map +1 -0
  612. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileQueue.js +164 -0
  613. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileRange.d.ts +85 -0
  614. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileRange.d.ts.map +1 -0
  615. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileRange.js +153 -0
  616. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileState.d.ts +9 -0
  617. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileState.d.ts.map +1 -0
  618. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileState.js +18 -0
  619. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorRenderTile.d.ts +121 -0
  620. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorRenderTile.d.ts.map +1 -0
  621. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorRenderTile.js +166 -0
  622. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorTile.d.ts +89 -0
  623. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorTile.d.ts.map +1 -0
  624. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorTile.js +138 -0
  625. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/View.d.ts +1070 -0
  626. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/View.d.ts.map +1 -0
  627. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/View.js +2153 -0
  628. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewHint.d.ts +6 -0
  629. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewHint.d.ts.map +1 -0
  630. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewHint.js +11 -0
  631. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewProperty.d.ts +7 -0
  632. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewProperty.d.ts.map +1 -0
  633. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewProperty.js +12 -0
  634. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/array.d.ts +97 -0
  635. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/array.d.ts.map +1 -0
  636. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/array.js +213 -0
  637. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/asserts.d.ts +6 -0
  638. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/asserts.d.ts.map +1 -0
  639. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/asserts.js +14 -0
  640. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/centerconstraint.d.ts +18 -0
  641. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/centerconstraint.d.ts.map +1 -0
  642. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/centerconstraint.js +79 -0
  643. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/color.d.ts +44 -0
  644. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/color.d.ts.map +1 -0
  645. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/color.js +226 -0
  646. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/colorlike.d.ts +27 -0
  647. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/colorlike.d.ts.map +1 -0
  648. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/colorlike.js +28 -0
  649. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/console.d.ts +13 -0
  650. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/console.d.ts.map +1 -0
  651. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/console.js +54 -0
  652. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Attribution.d.ts +198 -0
  653. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Attribution.d.ts.map +1 -0
  654. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Attribution.js +335 -0
  655. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Control.d.ts +114 -0
  656. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Control.d.ts.map +1 -0
  657. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Control.js +161 -0
  658. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/FullScreen.d.ts +191 -0
  659. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/FullScreen.d.ts.map +1 -0
  660. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/FullScreen.js +396 -0
  661. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/MousePosition.d.ts +183 -0
  662. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/MousePosition.d.ts.map +1 -0
  663. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/MousePosition.js +308 -0
  664. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/OverviewMap.d.ts +253 -0
  665. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/OverviewMap.d.ts.map +1 -0
  666. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/OverviewMap.js +679 -0
  667. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Rotate.d.ts +105 -0
  668. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Rotate.d.ts.map +1 -0
  669. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Rotate.js +182 -0
  670. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ScaleLine.d.ts +235 -0
  671. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ScaleLine.d.ts.map +1 -0
  672. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ScaleLine.js +482 -0
  673. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Zoom.d.ts +94 -0
  674. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Zoom.d.ts.map +1 -0
  675. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Zoom.js +160 -0
  676. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomSlider.d.ts +174 -0
  677. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomSlider.d.ts.map +1 -0
  678. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomSlider.js +388 -0
  679. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomToExtent.d.ts +66 -0
  680. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomToExtent.d.ts.map +1 -0
  681. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomToExtent.js +94 -0
  682. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/defaults.d.ts +60 -0
  683. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/defaults.d.ts.map +1 -0
  684. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/defaults.js +60 -0
  685. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control.d.ts +12 -0
  686. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control.d.ts.map +1 -0
  687. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control.js +14 -0
  688. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/coordinate.d.ts +265 -0
  689. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/coordinate.d.ts.map +1 -0
  690. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/coordinate.js +438 -0
  691. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/css.d.ts +88 -0
  692. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/css.d.ts.map +1 -0
  693. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/css.js +116 -0
  694. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dist/ol.js +4 -0
  695. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dist/ol.js.map +1 -0
  696. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dom.d.ts +58 -0
  697. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dom.d.ts.map +1 -0
  698. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dom.js +149 -0
  699. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/easing.d.ts +41 -0
  700. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/easing.d.ts.map +1 -0
  701. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/easing.js +58 -0
  702. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Event.d.ts +60 -0
  703. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Event.d.ts.map +1 -0
  704. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Event.js +77 -0
  705. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/EventType.d.ts +21 -0
  706. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/EventType.d.ts.map +1 -0
  707. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/EventType.js +39 -0
  708. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/KeyCode.d.ts +8 -0
  709. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/KeyCode.d.ts.map +1 -0
  710. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/KeyCode.js +14 -0
  711. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Target.d.ts +83 -0
  712. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Target.d.ts.map +1 -0
  713. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Target.js +188 -0
  714. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/condition.d.ts +53 -0
  715. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/condition.d.ts.map +1 -0
  716. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/condition.js +328 -0
  717. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events.d.ts +99 -0
  718. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events.d.ts.map +1 -0
  719. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events.js +105 -0
  720. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent/Relationship.d.ts +10 -0
  721. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent/Relationship.d.ts.map +1 -0
  722. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent/Relationship.js +16 -0
  723. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent.d.ts +387 -0
  724. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent.d.ts.map +1 -0
  725. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent.js +918 -0
  726. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/featureloader.d.ts +90 -0
  727. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/featureloader.d.ts.map +1 -0
  728. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/featureloader.js +178 -0
  729. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/EsriJSON.d.ts +92 -0
  730. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/EsriJSON.d.ts.map +1 -0
  731. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/EsriJSON.js +571 -0
  732. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Feature.d.ts +230 -0
  733. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Feature.d.ts.map +1 -0
  734. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Feature.js +299 -0
  735. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML.d.ts +14 -0
  736. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML.d.ts.map +1 -0
  737. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML.js +40 -0
  738. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML2.d.ts +238 -0
  739. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML2.d.ts.map +1 -0
  740. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML2.js +784 -0
  741. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML3.d.ts +425 -0
  742. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML3.d.ts.map +1 -0
  743. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML3.js +1283 -0
  744. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML32.d.ts +10 -0
  745. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML32.d.ts.map +1 -0
  746. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML32.js +356 -0
  747. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GMLBase.d.ts +350 -0
  748. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GMLBase.d.ts.map +1 -0
  749. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GMLBase.js +685 -0
  750. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GPX.d.ts +75 -0
  751. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GPX.d.ts.map +1 -0
  752. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GPX.js +939 -0
  753. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GeoJSON.d.ts +126 -0
  754. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GeoJSON.d.ts.map +1 -0
  755. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GeoJSON.js +564 -0
  756. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IGC.d.ts +44 -0
  757. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IGC.d.ts.map +1 -0
  758. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IGC.js +174 -0
  759. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IIIFInfo.d.ts +132 -0
  760. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IIIFInfo.d.ts.map +1 -0
  761. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IIIFInfo.js +484 -0
  762. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/JSONFeature.d.ts +120 -0
  763. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/JSONFeature.d.ts.map +1 -0
  764. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/JSONFeature.js +209 -0
  765. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/KML.d.ts +257 -0
  766. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/KML.d.ts.map +1 -0
  767. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/KML.js +3352 -0
  768. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/MVT.d.ts +125 -0
  769. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/MVT.d.ts.map +1 -0
  770. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/MVT.js +433 -0
  771. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OSMXML.d.ts +16 -0
  772. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OSMXML.d.ts.map +1 -0
  773. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OSMXML.js +196 -0
  774. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OWS.d.ts +5 -0
  775. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OWS.d.ts.map +1 -0
  776. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OWS.js +325 -0
  777. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Polyline.d.ts +162 -0
  778. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Polyline.d.ts.map +1 -0
  779. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Polyline.js +351 -0
  780. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TextFeature.d.ts +112 -0
  781. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TextFeature.d.ts.map +1 -0
  782. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TextFeature.js +206 -0
  783. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TopoJSON.d.ts +103 -0
  784. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TopoJSON.d.ts.map +1 -0
  785. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TopoJSON.js +446 -0
  786. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WFS.d.ts +314 -0
  787. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WFS.d.ts.map +1 -0
  788. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WFS.js +1369 -0
  789. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKB.d.ts +105 -0
  790. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKB.d.ts.map +1 -0
  791. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKB.js +924 -0
  792. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKT.d.ts +51 -0
  793. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKT.d.ts.map +1 -0
  794. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKT.js +868 -0
  795. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSCapabilities.d.ts +15 -0
  796. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSCapabilities.d.ts.map +1 -0
  797. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSCapabilities.js +625 -0
  798. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSGetFeatureInfo.d.ts +52 -0
  799. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSGetFeatureInfo.d.ts.map +1 -0
  800. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSGetFeatureInfo.js +165 -0
  801. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMTSCapabilities.d.ts +16 -0
  802. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMTSCapabilities.d.ts.map +1 -0
  803. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMTSCapabilities.js +380 -0
  804. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XML.d.ts +29 -0
  805. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XML.d.ts.map +1 -0
  806. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XML.js +53 -0
  807. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XMLFeature.d.ts +141 -0
  808. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XMLFeature.d.ts.map +1 -0
  809. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XMLFeature.js +279 -0
  810. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/And.d.ts +15 -0
  811. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/And.d.ts.map +1 -0
  812. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/And.js +21 -0
  813. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Bbox.d.ts +31 -0
  814. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Bbox.d.ts.map +1 -0
  815. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Bbox.js +45 -0
  816. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Comparison.d.ts +21 -0
  817. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Comparison.d.ts.map +1 -0
  818. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Comparison.js +28 -0
  819. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ComparisonBinary.d.ts +27 -0
  820. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ComparisonBinary.d.ts.map +1 -0
  821. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ComparisonBinary.js +35 -0
  822. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Contains.d.ts +18 -0
  823. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Contains.d.ts.map +1 -0
  824. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Contains.js +24 -0
  825. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/DWithin.d.ts +30 -0
  826. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/DWithin.d.ts.map +1 -0
  827. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/DWithin.js +38 -0
  828. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Disjoint.d.ts +18 -0
  829. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Disjoint.d.ts.map +1 -0
  830. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Disjoint.js +24 -0
  831. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/During.d.ts +24 -0
  832. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/During.d.ts.map +1 -0
  833. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/During.js +32 -0
  834. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/EqualTo.d.ts +16 -0
  835. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/EqualTo.d.ts.map +1 -0
  836. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/EqualTo.js +22 -0
  837. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Filter.d.ts +28 -0
  838. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Filter.d.ts.map +1 -0
  839. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Filter.js +33 -0
  840. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThan.d.ts +15 -0
  841. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThan.d.ts.map +1 -0
  842. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThan.js +21 -0
  843. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThanOrEqualTo.d.ts +15 -0
  844. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThanOrEqualTo.d.ts.map +1 -0
  845. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThanOrEqualTo.js +21 -0
  846. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Intersects.d.ts +18 -0
  847. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Intersects.d.ts.map +1 -0
  848. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Intersects.js +24 -0
  849. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsBetween.d.ts +24 -0
  850. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsBetween.d.ts.map +1 -0
  851. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsBetween.js +32 -0
  852. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsLike.d.ts +43 -0
  853. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsLike.d.ts.map +1 -0
  854. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsLike.js +61 -0
  855. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsNull.d.ts +14 -0
  856. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsNull.d.ts.map +1 -0
  857. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsNull.js +20 -0
  858. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThan.d.ts +15 -0
  859. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThan.d.ts.map +1 -0
  860. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThan.js +21 -0
  861. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThanOrEqualTo.d.ts +15 -0
  862. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThanOrEqualTo.d.ts.map +1 -0
  863. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThanOrEqualTo.js +21 -0
  864. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LogicalNary.d.ts +21 -0
  865. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LogicalNary.d.ts.map +1 -0
  866. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LogicalNary.js +30 -0
  867. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Not.d.ts +18 -0
  868. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Not.d.ts.map +1 -0
  869. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Not.js +25 -0
  870. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/NotEqualTo.d.ts +16 -0
  871. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/NotEqualTo.d.ts.map +1 -0
  872. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/NotEqualTo.js +22 -0
  873. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Or.d.ts +14 -0
  874. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Or.d.ts.map +1 -0
  875. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Or.js +20 -0
  876. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ResourceId.d.ts +14 -0
  877. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ResourceId.d.ts.map +1 -0
  878. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ResourceId.js +25 -0
  879. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Spatial.d.ts +33 -0
  880. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Spatial.d.ts.map +1 -0
  881. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Spatial.js +42 -0
  882. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Within.d.ts +18 -0
  883. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Within.d.ts.map +1 -0
  884. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Within.js +24 -0
  885. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter.d.ts +223 -0
  886. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter.d.ts.map +1 -0
  887. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter.js +301 -0
  888. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/readme.md +133 -0
  889. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xlink.d.ts +6 -0
  890. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xlink.d.ts.map +1 -0
  891. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xlink.js +17 -0
  892. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xsd.d.ts +71 -0
  893. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xsd.d.ts.map +1 -0
  894. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xsd.js +151 -0
  895. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format.d.ts +18 -0
  896. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format.d.ts.map +1 -0
  897. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format.js +21 -0
  898. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/functions.d.ts +33 -0
  899. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/functions.d.ts.map +1 -0
  900. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/functions.js +81 -0
  901. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Circle.d.ts +65 -0
  902. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Circle.d.ts.map +1 -0
  903. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Circle.js +281 -0
  904. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Geometry.d.ts +205 -0
  905. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Geometry.d.ts.map +1 -0
  906. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Geometry.js +347 -0
  907. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/GeometryCollection.d.ts +72 -0
  908. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/GeometryCollection.d.ts.map +1 -0
  909. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/GeometryCollection.js +343 -0
  910. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LineString.d.ts +116 -0
  911. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LineString.d.ts.map +1 -0
  912. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LineString.js +311 -0
  913. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LinearRing.d.ts +59 -0
  914. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LinearRing.d.ts.map +1 -0
  915. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LinearRing.js +188 -0
  916. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiLineString.d.ts +110 -0
  917. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiLineString.d.ts.map +1 -0
  918. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiLineString.js +350 -0
  919. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPoint.d.ts +56 -0
  920. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPoint.d.ts.map +1 -0
  921. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPoint.js +203 -0
  922. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPolygon.d.ts +132 -0
  923. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPolygon.d.ts.map +1 -0
  924. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPolygon.js +471 -0
  925. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Point.d.ts +28 -0
  926. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Point.d.ts.map +1 -0
  927. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Point.js +119 -0
  928. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Polygon.d.ts +188 -0
  929. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Polygon.d.ts.map +1 -0
  930. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Polygon.js +509 -0
  931. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/SimpleGeometry.d.ts +101 -0
  932. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/SimpleGeometry.d.ts.map +1 -0
  933. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/SimpleGeometry.js +349 -0
  934. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/area.d.ts +28 -0
  935. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/area.d.ts.map +1 -0
  936. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/area.js +58 -0
  937. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/center.d.ts +9 -0
  938. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/center.d.ts.map +1 -0
  939. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/center.js +28 -0
  940. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/closest.d.ts +75 -0
  941. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/closest.d.ts.map +1 -0
  942. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/closest.js +336 -0
  943. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/contains.d.ts +40 -0
  944. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/contains.d.ts.map +1 -0
  945. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/contains.js +145 -0
  946. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/deflate.d.ts +38 -0
  947. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/deflate.d.ts.map +1 -0
  948. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/deflate.js +105 -0
  949. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/flip.d.ts +14 -0
  950. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/flip.d.ts.map +1 -0
  951. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/flip.js +33 -0
  952. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/geodesic.d.ts +32 -0
  953. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/geodesic.d.ts.map +1 -0
  954. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/geodesic.js +184 -0
  955. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/inflate.d.ts +32 -0
  956. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/inflate.d.ts.map +1 -0
  957. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/inflate.js +95 -0
  958. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interiorpoint.d.ts +25 -0
  959. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interiorpoint.d.ts.map +1 -0
  960. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interiorpoint.js +110 -0
  961. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interpolate.d.ts +33 -0
  962. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interpolate.d.ts.map +1 -0
  963. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interpolate.js +206 -0
  964. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/intersectsextent.d.ts +46 -0
  965. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/intersectsextent.d.ts.map +1 -0
  966. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/intersectsextent.js +232 -0
  967. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/length.d.ts +20 -0
  968. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/length.d.ts.map +1 -0
  969. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/length.js +39 -0
  970. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/linechunk.d.ts +11 -0
  971. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/linechunk.d.ts.map +1 -0
  972. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/linechunk.js +57 -0
  973. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/orient.d.ts +76 -0
  974. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/orient.d.ts.map +1 -0
  975. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/orient.js +206 -0
  976. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/reverse.d.ts +11 -0
  977. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/reverse.d.ts.map +1 -0
  978. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/reverse.js +21 -0
  979. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/segments.d.ts +18 -0
  980. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/segments.d.ts.map +1 -0
  981. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/segments.js +31 -0
  982. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/simplify.d.ts +115 -0
  983. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/simplify.d.ts.map +1 -0
  984. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/simplify.js +476 -0
  985. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/straightchunk.d.ts +14 -0
  986. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/straightchunk.d.ts.map +1 -0
  987. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/straightchunk.js +50 -0
  988. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/textpath.d.ts +22 -0
  989. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/textpath.d.ts.map +1 -0
  990. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/textpath.js +154 -0
  991. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/topology.d.ts +10 -0
  992. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/topology.d.ts.map +1 -0
  993. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/topology.js +24 -0
  994. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/transform.d.ts +49 -0
  995. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/transform.d.ts.map +1 -0
  996. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/transform.js +149 -0
  997. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom.d.ts +12 -0
  998. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom.d.ts.map +1 -0
  999. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom.js +15 -0
  1000. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/has.d.ts +49 -0
  1001. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/has.d.ts.map +1 -0
  1002. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/has.js +88 -0
  1003. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/index.d.ts +27 -0
  1004. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/index.d.ts.map +1 -0
  1005. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/index.js +31 -0
  1006. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DoubleClickZoom.d.ts +39 -0
  1007. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DoubleClickZoom.d.ts.map +1 -0
  1008. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DoubleClickZoom.js +64 -0
  1009. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragAndDrop.d.ts +169 -0
  1010. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragAndDrop.d.ts.map +1 -0
  1011. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragAndDrop.js +324 -0
  1012. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragBox.d.ts +153 -0
  1013. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragBox.d.ts.map +1 -0
  1014. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragBox.js +274 -0
  1015. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragPan.d.ts +67 -0
  1016. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragPan.d.ts.map +1 -0
  1017. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragPan.js +188 -0
  1018. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotate.d.ts +54 -0
  1019. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotate.d.ts.map +1 -0
  1020. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotate.js +124 -0
  1021. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotateAndZoom.d.ts +66 -0
  1022. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotateAndZoom.d.ts.map +1 -0
  1023. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotateAndZoom.js +136 -0
  1024. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragZoom.d.ts +69 -0
  1025. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragZoom.d.ts.map +1 -0
  1026. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragZoom.js +84 -0
  1027. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Draw.d.ts +635 -0
  1028. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Draw.d.ts.map +1 -0
  1029. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Draw.js +1962 -0
  1030. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Extent.d.ts +201 -0
  1031. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Extent.d.ts.map +1 -0
  1032. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Extent.js +549 -0
  1033. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Interaction.d.ts +121 -0
  1034. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Interaction.d.ts.map +1 -0
  1035. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Interaction.js +170 -0
  1036. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardPan.d.ts +73 -0
  1037. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardPan.d.ts.map +1 -0
  1038. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardPan.js +124 -0
  1039. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardZoom.d.ts +63 -0
  1040. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardZoom.d.ts.map +1 -0
  1041. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardZoom.js +89 -0
  1042. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Link.d.ts +128 -0
  1043. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Link.d.ts.map +1 -0
  1044. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Link.js +389 -0
  1045. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Modify.d.ts +523 -0
  1046. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Modify.d.ts.map +1 -0
  1047. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Modify.js +1657 -0
  1048. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/MouseWheelZoom.d.ts +166 -0
  1049. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/MouseWheelZoom.d.ts.map +1 -0
  1050. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/MouseWheelZoom.js +296 -0
  1051. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchRotate.d.ts +62 -0
  1052. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchRotate.d.ts.map +1 -0
  1053. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchRotate.js +159 -0
  1054. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchZoom.d.ts +45 -0
  1055. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchZoom.d.ts.map +1 -0
  1056. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchZoom.js +135 -0
  1057. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Pointer.d.ts +146 -0
  1058. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Pointer.d.ts.map +1 -0
  1059. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Pointer.js +206 -0
  1060. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Property.d.ts +5 -0
  1061. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Property.d.ts.map +1 -0
  1062. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Property.js +10 -0
  1063. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Select.d.ts +361 -0
  1064. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Select.d.ts.map +1 -0
  1065. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Select.js +590 -0
  1066. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Snap.d.ts +240 -0
  1067. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Snap.d.ts.map +1 -0
  1068. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Snap.js +648 -0
  1069. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Translate.d.ts +243 -0
  1070. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Translate.d.ts.map +1 -0
  1071. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Translate.js +419 -0
  1072. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/defaults.d.ts +101 -0
  1073. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/defaults.d.ts.map +1 -0
  1074. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/defaults.js +148 -0
  1075. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction.d.ts +23 -0
  1076. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction.d.ts.map +1 -0
  1077. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction.js +25 -0
  1078. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Base.d.ts +312 -0
  1079. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Base.d.ts.map +1 -0
  1080. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Base.js +397 -0
  1081. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseImage.d.ts +112 -0
  1082. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseImage.d.ts.map +1 -0
  1083. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseImage.js +57 -0
  1084. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseTile.d.ts +177 -0
  1085. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseTile.d.ts.map +1 -0
  1086. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseTile.js +160 -0
  1087. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseVector.d.ts +226 -0
  1088. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseVector.d.ts.map +1 -0
  1089. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseVector.js +304 -0
  1090. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Graticule.d.ts +592 -0
  1091. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Graticule.d.ts.map +1 -0
  1092. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Graticule.js +1258 -0
  1093. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Group.d.ts +169 -0
  1094. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Group.d.ts.map +1 -0
  1095. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Group.js +348 -0
  1096. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Heatmap.d.ts +150 -0
  1097. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Heatmap.d.ts.map +1 -0
  1098. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Heatmap.js +334 -0
  1099. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Image.d.ts +23 -0
  1100. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Image.d.ts.map +1 -0
  1101. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Image.js +51 -0
  1102. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Layer.d.ts +359 -0
  1103. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Layer.d.ts.map +1 -0
  1104. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Layer.js +504 -0
  1105. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/MapboxVector.d.ts +272 -0
  1106. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/MapboxVector.d.ts.map +1 -0
  1107. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/MapboxVector.js +199 -0
  1108. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Property.d.ts +14 -0
  1109. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Property.d.ts.map +1 -0
  1110. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Property.js +19 -0
  1111. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Tile.d.ts +23 -0
  1112. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Tile.d.ts.map +1 -0
  1113. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Tile.js +32 -0
  1114. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/TileProperty.d.ts +6 -0
  1115. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/TileProperty.d.ts.map +1 -0
  1116. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/TileProperty.js +11 -0
  1117. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Vector.d.ts +25 -0
  1118. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Vector.d.ts.map +1 -0
  1119. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Vector.js +35 -0
  1120. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorImage.d.ts +168 -0
  1121. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorImage.d.ts.map +1 -0
  1122. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorImage.js +95 -0
  1123. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorTile.d.ts +284 -0
  1124. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorTile.d.ts.map +1 -0
  1125. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorTile.js +236 -0
  1126. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLPoints.d.ts +163 -0
  1127. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLPoints.d.ts.map +1 -0
  1128. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLPoints.js +127 -0
  1129. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLTile.d.ts +242 -0
  1130. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLTile.d.ts.map +1 -0
  1131. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLTile.js +528 -0
  1132. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer.d.ts +13 -0
  1133. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer.d.ts.map +1 -0
  1134. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer.js +16 -0
  1135. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/loadingstrategy.d.ts +25 -0
  1136. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/loadingstrategy.d.ts.map +1 -0
  1137. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/loadingstrategy.js +74 -0
  1138. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/math.d.ts +104 -0
  1139. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/math.d.ts.map +1 -0
  1140. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/math.js +199 -0
  1141. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/net.d.ts +46 -0
  1142. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/net.d.ts.map +1 -0
  1143. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/net.js +150 -0
  1144. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/obj.d.ts +15 -0
  1145. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/obj.d.ts.map +1 -0
  1146. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/obj.js +26 -0
  1147. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ol.css +345 -0
  1148. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/package.json +41 -0
  1149. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pixel.d.ts +16 -0
  1150. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pixel.d.ts.map +1 -0
  1151. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pixel.js +12 -0
  1152. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pointer/EventType.d.ts +12 -0
  1153. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pointer/EventType.d.ts.map +1 -0
  1154. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pointer/EventType.js +18 -0
  1155. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Projection.d.ts +245 -0
  1156. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Projection.d.ts.map +1 -0
  1157. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Projection.js +271 -0
  1158. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Units.d.ts +47 -0
  1159. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Units.d.ts.map +1 -0
  1160. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Units.js +52 -0
  1161. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg3857.d.ts +54 -0
  1162. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg3857.d.ts.map +1 -0
  1163. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg3857.js +133 -0
  1164. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg4326.d.ts +27 -0
  1165. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg4326.d.ts.map +1 -0
  1166. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg4326.js +68 -0
  1167. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/proj4.d.ts +53 -0
  1168. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/proj4.d.ts.map +1 -0
  1169. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/proj4.js +158 -0
  1170. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/projections.d.ts +17 -0
  1171. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/projections.d.ts.map +1 -0
  1172. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/projections.js +37 -0
  1173. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/transforms.d.ts +31 -0
  1174. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/transforms.d.ts.map +1 -0
  1175. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/transforms.js +68 -0
  1176. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj.d.ts +321 -0
  1177. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj.d.ts.map +1 -0
  1178. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj.js +750 -0
  1179. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Box.d.ts +55 -0
  1180. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Box.d.ts.map +1 -0
  1181. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Box.js +132 -0
  1182. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Event.d.ts +34 -0
  1183. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Event.d.ts.map +1 -0
  1184. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Event.js +44 -0
  1185. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/EventType.d.ts +11 -0
  1186. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/EventType.d.ts.map +1 -0
  1187. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/EventType.js +57 -0
  1188. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Feature.d.ts +187 -0
  1189. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Feature.d.ts.map +1 -0
  1190. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Feature.js +398 -0
  1191. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/VectorContext.d.ts +103 -0
  1192. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/VectorContext.d.ts.map +1 -0
  1193. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/VectorContext.js +115 -0
  1194. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Builder.d.ts +162 -0
  1195. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Builder.d.ts.map +1 -0
  1196. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Builder.js +651 -0
  1197. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/BuilderGroup.d.ts +48 -0
  1198. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/BuilderGroup.d.ts.map +1 -0
  1199. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/BuilderGroup.js +105 -0
  1200. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Executor.d.ts +271 -0
  1201. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Executor.d.ts.map +1 -0
  1202. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Executor.js +1256 -0
  1203. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ExecutorGroup.d.ts +114 -0
  1204. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ExecutorGroup.d.ts.map +1 -0
  1205. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ExecutorGroup.js +424 -0
  1206. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ImageBuilder.d.ts +86 -0
  1207. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ImageBuilder.d.ts.map +1 -0
  1208. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ImageBuilder.js +271 -0
  1209. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Immediate.d.ts +331 -0
  1210. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Immediate.d.ts.map +1 -0
  1211. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Immediate.js +1170 -0
  1212. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Instruction.d.ts +34 -0
  1213. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Instruction.d.ts.map +1 -0
  1214. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Instruction.js +44 -0
  1215. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/LineStringBuilder.d.ts +14 -0
  1216. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/LineStringBuilder.d.ts.map +1 -0
  1217. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/LineStringBuilder.js +163 -0
  1218. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/PolygonBuilder.d.ts +18 -0
  1219. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/PolygonBuilder.d.ts.map +1 -0
  1220. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/PolygonBuilder.js +257 -0
  1221. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/TextBuilder.d.ts +118 -0
  1222. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/TextBuilder.d.ts.map +1 -0
  1223. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/TextBuilder.js +653 -0
  1224. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/hitdetect.d.ts +28 -0
  1225. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/hitdetect.d.ts.map +1 -0
  1226. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/hitdetect.js +196 -0
  1227. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas.d.ts +399 -0
  1228. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas.d.ts.map +1 -0
  1229. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas.js +503 -0
  1230. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/BatchRenderer.d.ts +92 -0
  1231. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/BatchRenderer.d.ts.map +1 -0
  1232. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/BatchRenderer.js +200 -0
  1233. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/LineStringBatchRenderer.d.ts +27 -0
  1234. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/LineStringBatchRenderer.d.ts.map +1 -0
  1235. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/LineStringBatchRenderer.js +114 -0
  1236. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/MixedGeometryBatch.d.ts +306 -0
  1237. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/MixedGeometryBatch.d.ts.map +1 -0
  1238. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/MixedGeometryBatch.js +364 -0
  1239. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PointBatchRenderer.d.ts +26 -0
  1240. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PointBatchRenderer.d.ts.map +1 -0
  1241. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PointBatchRenderer.js +95 -0
  1242. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PolygonBatchRenderer.d.ts +25 -0
  1243. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PolygonBatchRenderer.d.ts.map +1 -0
  1244. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PolygonBatchRenderer.js +115 -0
  1245. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/constants.d.ts +43 -0
  1246. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/constants.d.ts.map +1 -0
  1247. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/constants.js +27 -0
  1248. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/utils.d.ts +76 -0
  1249. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/utils.d.ts.map +1 -0
  1250. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/utils.js +351 -0
  1251. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render.d.ts +119 -0
  1252. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render.d.ts.map +1 -0
  1253. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render.js +141 -0
  1254. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Composite.d.ts +29 -0
  1255. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Composite.d.ts.map +1 -0
  1256. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Composite.js +154 -0
  1257. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Layer.d.ts +118 -0
  1258. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Layer.d.ts.map +1 -0
  1259. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Layer.js +198 -0
  1260. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Map.d.ts +104 -0
  1261. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Map.d.ts.map +1 -0
  1262. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Map.js +243 -0
  1263. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/ImageLayer.d.ts +28 -0
  1264. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/ImageLayer.d.ts.map +1 -0
  1265. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/ImageLayer.js +266 -0
  1266. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/Layer.d.ts +121 -0
  1267. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/Layer.d.ts.map +1 -0
  1268. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/Layer.js +325 -0
  1269. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/TileLayer.d.ts +138 -0
  1270. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/TileLayer.d.ts.map +1 -0
  1271. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/TileLayer.js +770 -0
  1272. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorImageLayer.d.ts +49 -0
  1273. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorImageLayer.d.ts.map +1 -0
  1274. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorImageLayer.js +226 -0
  1275. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorLayer.d.ts +131 -0
  1276. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorLayer.d.ts.map +1 -0
  1277. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorLayer.js +794 -0
  1278. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorTileLayer.d.ts +95 -0
  1279. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorTileLayer.d.ts.map +1 -0
  1280. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorTileLayer.js +855 -0
  1281. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/vector.d.ts +38 -0
  1282. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/vector.d.ts.map +1 -0
  1283. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/vector.js +484 -0
  1284. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/Layer.d.ts +140 -0
  1285. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/Layer.d.ts.map +1 -0
  1286. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/Layer.js +262 -0
  1287. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/PointsLayer.d.ts +327 -0
  1288. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/PointsLayer.d.ts.map +1 -0
  1289. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/PointsLayer.js +766 -0
  1290. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/TileLayer.d.ts +198 -0
  1291. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/TileLayer.d.ts.map +1 -0
  1292. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/TileLayer.js +911 -0
  1293. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/VectorLayer.d.ts +142 -0
  1294. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/VectorLayer.d.ts.map +1 -0
  1295. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/VectorLayer.js +409 -0
  1296. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/shaders.d.ts +43 -0
  1297. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/shaders.d.ts.map +1 -0
  1298. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/shaders.js +198 -0
  1299. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/DataTile.d.ts +156 -0
  1300. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/DataTile.d.ts.map +1 -0
  1301. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/DataTile.js +496 -0
  1302. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Image.d.ts +91 -0
  1303. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Image.d.ts.map +1 -0
  1304. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Image.js +244 -0
  1305. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Tile.d.ts +99 -0
  1306. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Tile.d.ts.map +1 -0
  1307. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Tile.js +364 -0
  1308. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Triangulation.d.ts +121 -0
  1309. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Triangulation.d.ts.map +1 -0
  1310. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Triangulation.js +502 -0
  1311. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/common.d.ts +10 -0
  1312. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/common.d.ts.map +1 -0
  1313. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/common.js +10 -0
  1314. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj.d.ts +64 -0
  1315. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj.d.ts.map +1 -0
  1316. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj.js +441 -0
  1317. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/resolutionconstraint.d.ts +29 -0
  1318. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/resolutionconstraint.d.ts.map +1 -0
  1319. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/resolutionconstraint.js +241 -0
  1320. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/rotationconstraint.d.ts +25 -0
  1321. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/rotationconstraint.d.ts.map +1 -0
  1322. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/rotationconstraint.js +84 -0
  1323. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/size.d.ts +45 -0
  1324. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/size.d.ts.map +1 -0
  1325. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/size.js +72 -0
  1326. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/BingMaps.d.ts +256 -0
  1327. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/BingMaps.d.ts.map +1 -0
  1328. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/BingMaps.js +318 -0
  1329. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/CartoDB.d.ts +184 -0
  1330. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/CartoDB.d.ts.map +1 -0
  1331. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/CartoDB.js +203 -0
  1332. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Cluster.d.ts +215 -0
  1333. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Cluster.d.ts.map +1 -0
  1334. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Cluster.js +327 -0
  1335. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/DataTile.d.ts +218 -0
  1336. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/DataTile.d.ts.map +1 -0
  1337. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/DataTile.js +406 -0
  1338. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/GeoTIFF.d.ts +333 -0
  1339. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/GeoTIFF.d.ts.map +1 -0
  1340. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/GeoTIFF.js +990 -0
  1341. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/IIIF.d.ts +113 -0
  1342. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/IIIF.d.ts.map +1 -0
  1343. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/IIIF.js +354 -0
  1344. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Image.d.ts +163 -0
  1345. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Image.d.ts.map +1 -0
  1346. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Image.js +269 -0
  1347. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageArcGISRest.d.ts +213 -0
  1348. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageArcGISRest.d.ts.map +1 -0
  1349. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageArcGISRest.js +320 -0
  1350. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageCanvas.d.ts +126 -0
  1351. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageCanvas.d.ts.map +1 -0
  1352. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageCanvas.js +139 -0
  1353. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageMapGuide.d.ts +197 -0
  1354. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageMapGuide.d.ts.map +1 -0
  1355. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageMapGuide.js +288 -0
  1356. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageStatic.d.ts +109 -0
  1357. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageStatic.d.ts.map +1 -0
  1358. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageStatic.js +174 -0
  1359. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageWMS.d.ts +251 -0
  1360. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageWMS.d.ts.map +1 -0
  1361. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageWMS.js +498 -0
  1362. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCMapTile.d.ts +119 -0
  1363. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCMapTile.d.ts.map +1 -0
  1364. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCMapTile.js +95 -0
  1365. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCVectorTile.d.ts +123 -0
  1366. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCVectorTile.d.ts.map +1 -0
  1367. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCVectorTile.js +101 -0
  1368. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OSM.d.ts +112 -0
  1369. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OSM.d.ts.map +1 -0
  1370. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OSM.js +93 -0
  1371. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Raster.d.ts +416 -0
  1372. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Raster.d.ts.map +1 -0
  1373. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Raster.js +1026 -0
  1374. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Source.d.ts +203 -0
  1375. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Source.d.ts.map +1 -0
  1376. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Source.js +245 -0
  1377. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Stamen.d.ts +94 -0
  1378. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Stamen.d.ts.map +1 -0
  1379. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Stamen.js +157 -0
  1380. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Tile.d.ts +288 -0
  1381. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Tile.d.ts.map +1 -0
  1382. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Tile.js +398 -0
  1383. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileArcGISRest.d.ts +199 -0
  1384. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileArcGISRest.d.ts.map +1 -0
  1385. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileArcGISRest.js +254 -0
  1386. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileDebug.d.ts +53 -0
  1387. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileDebug.d.ts.map +1 -0
  1388. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileDebug.js +71 -0
  1389. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileEventType.d.ts +8 -0
  1390. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileEventType.d.ts.map +1 -0
  1391. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileEventType.js +36 -0
  1392. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileImage.d.ts +252 -0
  1393. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileImage.d.ts.map +1 -0
  1394. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileImage.js +443 -0
  1395. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileJSON.d.ts +217 -0
  1396. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileJSON.d.ts.map +1 -0
  1397. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileJSON.js +212 -0
  1398. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileWMS.d.ts +277 -0
  1399. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileWMS.d.ts.map +1 -0
  1400. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileWMS.js +470 -0
  1401. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UTFGrid.d.ts +248 -0
  1402. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UTFGrid.d.ts.map +1 -0
  1403. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UTFGrid.js +513 -0
  1404. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UrlTile.d.ts +192 -0
  1405. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UrlTile.d.ts.map +1 -0
  1406. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UrlTile.js +231 -0
  1407. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Vector.d.ts +635 -0
  1408. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Vector.d.ts.map +1 -0
  1409. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Vector.js +1124 -0
  1410. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorEventType.d.ts +12 -0
  1411. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorEventType.d.ts.map +1 -0
  1412. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorEventType.js +62 -0
  1413. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorTile.d.ts +277 -0
  1414. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorTile.d.ts.map +1 -0
  1415. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorTile.js +514 -0
  1416. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/WMTS.d.ts +303 -0
  1417. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/WMTS.d.ts.map +1 -0
  1418. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/WMTS.js +590 -0
  1419. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/XYZ.d.ts +189 -0
  1420. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/XYZ.d.ts.map +1 -0
  1421. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/XYZ.js +129 -0
  1422. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Zoomify.d.ts +157 -0
  1423. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Zoomify.d.ts.map +1 -0
  1424. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Zoomify.js +284 -0
  1425. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/common.d.ts +9 -0
  1426. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/common.d.ts.map +1 -0
  1427. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/common.js +9 -0
  1428. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ogcTileUtil.d.ts +177 -0
  1429. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ogcTileUtil.d.ts.map +1 -0
  1430. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ogcTileUtil.js +405 -0
  1431. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/wms.d.ts +17 -0
  1432. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/wms.d.ts.map +1 -0
  1433. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/wms.js +19 -0
  1434. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source.d.ts +43 -0
  1435. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source.d.ts.map +1 -0
  1436. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source.js +70 -0
  1437. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/sphere.d.ts +81 -0
  1438. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/sphere.d.ts.map +1 -0
  1439. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/sphere.js +263 -0
  1440. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/string.d.ts +18 -0
  1441. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/string.d.ts.map +1 -0
  1442. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/string.js +44 -0
  1443. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LRUCache.d.ts +158 -0
  1444. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LRUCache.d.ts.map +1 -0
  1445. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LRUCache.js +286 -0
  1446. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LinkedList.d.ts +130 -0
  1447. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LinkedList.d.ts.map +1 -0
  1448. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LinkedList.js +259 -0
  1449. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/PriorityQueue.d.ts +124 -0
  1450. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/PriorityQueue.d.ts.map +1 -0
  1451. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/PriorityQueue.js +262 -0
  1452. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/RBush.d.ts +130 -0
  1453. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/RBush.d.ts.map +1 -0
  1454. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/RBush.js +220 -0
  1455. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Circle.d.ts +78 -0
  1456. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Circle.d.ts.map +1 -0
  1457. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Circle.js +82 -0
  1458. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Fill.d.ts +54 -0
  1459. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Fill.d.ts.map +1 -0
  1460. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Fill.js +63 -0
  1461. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Icon.d.ts +308 -0
  1462. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Icon.d.ts.map +1 -0
  1463. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Icon.js +571 -0
  1464. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImage.d.ts +133 -0
  1465. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImage.d.ts.map +1 -0
  1466. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImage.js +305 -0
  1467. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImageCache.d.ts +63 -0
  1468. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImageCache.d.ts.map +1 -0
  1469. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImageCache.js +116 -0
  1470. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Image.d.ts +229 -0
  1471. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Image.d.ts.map +1 -0
  1472. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Image.js +298 -0
  1473. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/RegularShape.d.ts +292 -0
  1474. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/RegularShape.d.ts.map +1 -0
  1475. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/RegularShape.js +624 -0
  1476. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Stroke.d.ts +195 -0
  1477. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Stroke.d.ts.map +1 -0
  1478. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Stroke.js +228 -0
  1479. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Style.d.ts +392 -0
  1480. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Style.d.ts.map +1 -0
  1481. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Style.js +566 -0
  1482. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Text.d.ts +513 -0
  1483. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Text.d.ts.map +1 -0
  1484. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Text.js +613 -0
  1485. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/expressions.d.ts +247 -0
  1486. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/expressions.d.ts.map +1 -0
  1487. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/expressions.js +1039 -0
  1488. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/flat.d.ts +604 -0
  1489. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/flat.d.ts.map +1 -0
  1490. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/flat.js +344 -0
  1491. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/literal.d.ts +69 -0
  1492. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/literal.d.ts.map +1 -0
  1493. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/literal.js +42 -0
  1494. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style.d.ts +10 -0
  1495. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style.d.ts.map +1 -0
  1496. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style.js +13 -0
  1497. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilecoord.d.ts +59 -0
  1498. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilecoord.d.ts.map +1 -0
  1499. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilecoord.js +96 -0
  1500. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/TileGrid.d.ts +357 -0
  1501. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/TileGrid.d.ts.map +1 -0
  1502. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/TileGrid.js +682 -0
  1503. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/WMTS.d.ts +128 -0
  1504. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/WMTS.d.ts.map +1 -0
  1505. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/WMTS.js +188 -0
  1506. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/common.d.ts +14 -0
  1507. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/common.d.ts.map +1 -0
  1508. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/common.js +15 -0
  1509. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid.d.ts +85 -0
  1510. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid.d.ts.map +1 -0
  1511. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid.js +169 -0
  1512. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tileurlfunction.d.ts +30 -0
  1513. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tileurlfunction.d.ts.map +1 -0
  1514. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tileurlfunction.js +122 -0
  1515. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/transform.d.ts +141 -0
  1516. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/transform.d.ts.map +1 -0
  1517. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/transform.js +289 -0
  1518. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/uri.d.ts +13 -0
  1519. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/uri.d.ts.map +1 -0
  1520. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/uri.js +27 -0
  1521. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/util.d.ts +23 -0
  1522. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/util.d.ts.map +1 -0
  1523. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/util.js +36 -0
  1524. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/vec/mat4.d.ts +14 -0
  1525. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/vec/mat4.d.ts.map +1 -0
  1526. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/vec/mat4.js +25 -0
  1527. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Buffer.d.ts +94 -0
  1528. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Buffer.d.ts.map +1 -0
  1529. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Buffer.js +140 -0
  1530. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ContextEventType.d.ts +6 -0
  1531. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ContextEventType.d.ts.map +1 -0
  1532. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ContextEventType.js +11 -0
  1533. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Helper.d.ts +553 -0
  1534. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Helper.d.ts.map +1 -0
  1535. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Helper.js +1107 -0
  1536. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PaletteTexture.d.ts +24 -0
  1537. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PaletteTexture.d.ts.map +1 -0
  1538. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PaletteTexture.js +50 -0
  1539. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PostProcessingPass.d.ts +163 -0
  1540. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PostProcessingPass.d.ts.map +1 -0
  1541. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PostProcessingPass.js +404 -0
  1542. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/RenderTarget.d.ts +94 -0
  1543. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/RenderTarget.d.ts.map +1 -0
  1544. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/RenderTarget.js +187 -0
  1545. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ShaderBuilder.d.ts +257 -0
  1546. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ShaderBuilder.d.ts.map +1 -0
  1547. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ShaderBuilder.js +592 -0
  1548. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/TileTexture.d.ts +103 -0
  1549. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/TileTexture.d.ts.map +1 -0
  1550. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/TileTexture.js +457 -0
  1551. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl.d.ts +73 -0
  1552. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl.d.ts.map +1 -0
  1553. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl.js +132 -0
  1554. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/worker/webgl.d.ts +2 -0
  1555. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/worker/webgl.d.ts.map +1 -0
  1556. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/worker/webgl.js +8 -0
  1557. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/xml.d.ts +304 -0
  1558. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/xml.d.ts.map +1 -0
  1559. localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/xml.js +572 -0
  1560. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/add_existing_generic_content.html +38 -0
  1561. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/add_feature_content.html +5 -0
  1562. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/app_card.html +71 -0
  1563. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/app_limit_reached.html +17 -0
  1564. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/build_errors.html +8 -0
  1565. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/build_warnings.html +8 -0
  1566. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/change_generic_content_status.html +31 -0
  1567. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/component_card.html +42 -0
  1568. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/content_image_form.html +5 -0
  1569. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/content_image_with_text_form.html +3 -0
  1570. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/create_generic_content.html +95 -0
  1571. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/delete_app_language.html +12 -0
  1572. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/delete_content_image.html +1 -0
  1573. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/delete_localized_content_image.html +22 -0
  1574. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/edit_generic_content_name.html +29 -0
  1575. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/form_extended_with_content_image.html +18 -0
  1576. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/get_content_image_suggestions.html +28 -0
  1577. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/get_translation.html +16 -0
  1578. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/localized_content_image_form.html +41 -0
  1579. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/manage_app_languages.html +37 -0
  1580. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/manage_feature.html +50 -0
  1581. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/mockbutton.html +20 -0
  1582. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/options_form.html +21 -0
  1583. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/reload_appbar.html +7 -0
  1584. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/remove_app_generic_content.html +7 -0
  1585. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/tag_any_element.html +33 -0
  1586. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/tags.html +5 -0
  1587. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/translate_app_pagination.html +21 -0
  1588. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/upload_theme_image.html +4 -0
  1589. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/zip_import.html +149 -0
  1590. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/base.html +393 -0
  1591. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/build_app.html +341 -0
  1592. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/content_images.html +8 -0
  1593. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/home.html +12 -0
  1594. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/legal/legal_notice.html +22 -0
  1595. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/legal/privacy_statement.html +192 -0
  1596. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/list_manage_apps.html +35 -0
  1597. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/list_manage_generic_content.html +30 -0
  1598. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/manage_app.html +86 -0
  1599. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/manage_app_design.html +25 -0
  1600. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/manage_generic_content.html +120 -0
  1601. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/snippets/ckeditor_js_snippet.html +43 -0
  1602. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/start_new_app.html +32 -0
  1603. localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/translate_app.html +211 -0
  1604. localcosmos_app_kit-0.2.1/app_kit/templatetags/__init__.py +0 -0
  1605. localcosmos_app_kit-0.2.1/app_kit/templatetags/app_tags.py +269 -0
  1606. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/InvalidMountain/settings.json +24 -0
  1607. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/InvalidMountain.zip +0 -0
  1608. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/Mountain/settings.json +24 -0
  1609. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/Mountain.zip +0 -0
  1610. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/Leaf-large.jpg +0 -0
  1611. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/Leaf.jpg +0 -0
  1612. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/app-background.jpg +0 -0
  1613. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/localcosmos-logo.svg +1162 -0
  1614. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/test-image-2560-1440.jpg +0 -0
  1615. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/ipa_for_tests/TestApp.ipa +0 -0
  1616. localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/templates/neobiota.html +4 -0
  1617. localcosmos_app_kit-0.2.1/app_kit/tests/cases.py +87 -0
  1618. localcosmos_app_kit-0.2.1/app_kit/tests/common.py +169 -0
  1619. localcosmos_app_kit-0.2.1/app_kit/tests/mixins.py +618 -0
  1620. localcosmos_app_kit-0.2.1/app_kit/tests/test_forms.py +730 -0
  1621. localcosmos_app_kit-0.2.1/app_kit/tests/test_models.py +1465 -0
  1622. localcosmos_app_kit-0.2.1/app_kit/tests/test_views.py +2622 -0
  1623. localcosmos_app_kit-0.2.1/app_kit/urls.py +17 -0
  1624. localcosmos_app_kit-0.2.1/app_kit/utils.py +76 -0
  1625. localcosmos_app_kit-0.2.1/app_kit/validators.py +20 -0
  1626. localcosmos_app_kit-0.2.1/app_kit/view_mixins.py +51 -0
  1627. localcosmos_app_kit-0.2.1/app_kit/views.py +1564 -0
  1628. localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/PKG-INFO +34 -0
  1629. localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/SOURCES.txt +1632 -0
  1630. localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/dependency_links.txt +1 -0
  1631. localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/requires.txt +14 -0
  1632. localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/top_level.txt +1 -0
  1633. localcosmos_app_kit-0.2.1/setup.cfg +4 -0
  1634. localcosmos_app_kit-0.2.1/setup.py +44 -0
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2024 <Thomas Uher>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,24 @@
1
+ recursive-include app_kit/tests *
2
+ recursive-include app_kit/static *
3
+ recursive-include app_kit/templates *
4
+ recursive-include app_kit/locale *
5
+ recursive-include app_kit/features/backbonetaxonomy/templates *
6
+ recursive-include app_kit/features/backbonetaxonomy/tests *
7
+ recursive-include app_kit/features/buttonmatrix/templates *
8
+ recursive-include app_kit/features/frontend/templates *
9
+ recursive-include app_kit/features/frontend/tests *
10
+ recursive-include app_kit/features/generic_forms/templates *
11
+ recursive-include app_kit/features/generic_forms/tests *
12
+ recursive-include app_kit/features/generic_forms/static *
13
+ recursive-include app_kit/features/glossary/templates *
14
+ recursive-include app_kit/features/glossary/tests *
15
+ recursive-include app_kit/features/maps/templates *
16
+ recursive-include app_kit/features/maps/tests *
17
+ recursive-include app_kit/features/nature_guides/templates *
18
+ recursive-include app_kit/features/nature_guides/tests *
19
+ recursive-include app_kit/features/taxon_profiles/templates *
20
+ recursive-include app_kit/features/taxon_profiles/tests *
21
+ recursive-include app_kit/app_kit_api/tests *
22
+ recursive-include app_kit/multi_tenancy/templates *
23
+
24
+
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: localcosmos_app_kit
3
+ Version: 0.2.1
4
+ Summary: LocalCosmos App Kit. Web Portal to build Android and iOS apps
5
+ Home-page: https://github.com/localcosmos/app-kit
6
+ Author: Thomas Uher
7
+ Author-email: thomas.uher@sisol-systems.com
8
+ License: The MIT License
9
+ Keywords: django,localcosmos,localcosmos server,biodiversity
10
+ Platform: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENCE
17
+ Requires-Dist: localcosmos-server
18
+ Requires-Dist: localcosmos-cordova-builder
19
+ Requires-Dist: localcosmos-app-kit-taxonomy
20
+ Requires-Dist: django-tenants==3.4.7
21
+ Requires-Dist: django-cleanup==6.0.0
22
+ Requires-Dist: django-ipware==4.0.2
23
+ Requires-Dist: django-filter==22.1
24
+ Requires-Dist: lxml
25
+ Requires-Dist: xlrd==2.0.1
26
+ Requires-Dist: openpyxl==3.0.10
27
+ Requires-Dist: deepl
28
+ Requires-Dist: opencv-python
29
+ Requires-Dist: opencv-python-headless
30
+ Requires-Dist: unidecode
31
+
32
+ # App Kit
33
+
34
+ Build apps for web, Android and iOS. Supports identification keys, observation forms, maps, taxonomy and more
@@ -0,0 +1,3 @@
1
+ # App Kit
2
+
3
+ Build apps for web, Android and iOS. Supports identification keys, observation forms, maps, taxonomy and more
@@ -0,0 +1 @@
1
+ __version__ = '1.0'
@@ -0,0 +1,8 @@
1
+ from django.contrib import admin
2
+
3
+ from .models import MetaApp
4
+
5
+ class MetaAppAdmin(admin.ModelAdmin):
6
+ fields = ('is_locked', 'build_status', 'validation_status')
7
+
8
+ admin.site.register(MetaApp, MetaAppAdmin)
@@ -0,0 +1,110 @@
1
+ from django.conf import settings
2
+ from django.urls import include, path
3
+ from . import views
4
+
5
+ from localcosmos_server import generic_views
6
+
7
+ urlpatterns = [
8
+ # features
9
+ #path('', include('app_kit.features.buttonmatrix.urls')),
10
+ path('', include('app_kit.features.backbonetaxonomy.urls')),
11
+ path('', include('taxonomy.urls')),
12
+ path('template-content/', include('localcosmos_server.template_content.urls')),
13
+ path('observation-forms/', include('app_kit.features.generic_forms.urls')),
14
+ path('taxon-profiles/', include('app_kit.features.taxon_profiles.urls')),
15
+ path('nature-guides/', include('app_kit.features.nature_guides.urls')),
16
+ path('custom-taxonomy/', include('taxonomy.sources.custom.urls')),
17
+ path('glossary/', include('app_kit.features.glossary.urls')),
18
+ path('maps/', include('app_kit.features.maps.urls')),
19
+ path('frontend/', include('app_kit.features.frontend.urls')),
20
+ # apps
21
+ # create apps
22
+ path('create-app/', views.CreateApp.as_view(), name='create_app'), # generic forms etc need app_to_feature
23
+ path('get-app-card/<int:meta_app_id>/', views.GetAppCard.as_view(), name='get_app_card'),
24
+ path('app-limit-reached/', views.AppLimitReached.as_view(), name='app_limit_reached'),
25
+ # delete app
26
+ path('delete-app/<int:pk>/', views.DeleteApp.as_view(), name='delete_app'),
27
+ # manage app
28
+ path('manage-app/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/', views.ManageApp.as_view(),
29
+ name='manage_metaapp'),
30
+ # TRANSLATE APP
31
+ path('translate-app/<int:meta_app_id>/', views.TranslateApp.as_view(), name='translate_app'),
32
+ # BUILD APP
33
+ path('build-app/<int:meta_app_id>/', views.BuildApp.as_view(), name='build_app'),
34
+ path('build-app/<int:meta_app_id>/<str:action>/', views.BuildApp.as_view(), name='build_app'),
35
+ # NEW APP VERSION
36
+ path('start-new-app-version/<int:meta_app_id>/', views.StartNewAppVersion.as_view(),
37
+ name='start_new_app_version'),
38
+ # create generic app content
39
+ path('create-appcontent/<int:meta_app_id>/<int:content_type_id>/',
40
+ views.CreateGenericAppContent.as_view(), name='create_generic_appcontent'), # generic forms etc need app_to_feature
41
+ # generic content
42
+ path('add-existing-generic-content/<int:meta_app_id>/<int:content_type_id>/',
43
+ views.AddExistingGenericContent.as_view(), name='add_existing_generic_content'),
44
+ path('remove-app-generic-content/<int:pk>/', views.RemoveAppGenericContent.as_view(),
45
+ name='remove_app_generic_content'),
46
+ path('edit-generic-content-name/<int:content_type_id>/<int:generic_content_id>/',
47
+ views.EditGenericContentName.as_view(), name='edit_generic_content_name'),
48
+ path('generic-content-card/<int:meta_app_id>/<int:generic_content_link_id>/',
49
+ views.GetGenericContentCard.as_view(), name='generic_content_card'),
50
+ path('change_generic_content_status/<int:meta_app_id>/<int:generic_content_link_id>/',
51
+ views.ChangeGenericContentPublicationStatus.as_view(), name='change_generic_content_status'),
52
+ # app languages
53
+ path('manage-app-languages/<int:meta_app_id>/', views.ManageAppLanguages.as_view(),
54
+ name='manage_app_languages'),
55
+ path('manage-app-languages/<int:meta_app_id>/<str:action>/', views.ManageAppLanguages.as_view(),
56
+ name='add_app_languages'),
57
+ path('manage-app-languages/<int:meta_app_id>/<str:action>/<str:language>/',
58
+ views.ManageAppLanguages.as_view(), name='manage_app_languages'),
59
+ path('delete-app-language/<int:pk>/', views.DeleteAppLanguage.as_view(),
60
+ name='delete_app_language'), # POST
61
+ path('delete-app-language/<int:meta_app_id>/<str:language>/', views.DeleteAppLanguage.as_view(),
62
+ name='delete_app_language'), # GET
63
+ # taxonomic restriction
64
+ path('add_taxonomic_restriction/<int:content_type_id>/<int:object_id>/',
65
+ views.AddTaxonomicRestriction.as_view(), name='add_taxonomic_restriction'),
66
+ path('add_taxonomic_restriction/<int:content_type_id>/<int:object_id>/<str:typed>/',
67
+ views.AddTaxonomicRestriction.as_view(), name='add_taxonomic_restriction'),
68
+ path('remove_taxonomic_restriction/<int:pk>/',
69
+ views.RemoveTaxonomicRestriction.as_view(), name='remove_taxonomic_restriction'),
70
+ # app and content images
71
+ path('manage-content-image/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/',
72
+ views.ManageContentImage.as_view(), name='manage_content_image'),
73
+ path('manage-content-image/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/<str:image_type>/',
74
+ views.ManageContentImage.as_view(), name='manage_content_image'),
75
+ path('manage-content-image/<int:meta_app_id>/<int:content_image_id>/',
76
+ views.ManageContentImage.as_view(), name='manage_content_image'),
77
+ path('delete-content-image/<int:meta_app_id>/<int:pk>/',
78
+ views.DeleteContentImage.as_view(), name='delete_content_image'),
79
+ # content image with text
80
+ path('manage-content-image-with-text/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/',
81
+ views.ManageContentImageWithText.as_view(), name='manage_content_image_with_text'),
82
+ path('manage-content-image-with-text/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/<str:image_type>/',
83
+ views.ManageContentImageWithText.as_view(), name='manage_content_image_with_text'),
84
+ path('manage-content-image-with-text/<int:meta_app_id>/<int:content_image_id>/',
85
+ views.ManageContentImageWithText.as_view(), name='manage_content_image_with_text'),
86
+ # localized content image
87
+ path('manage-localized-content-image/<int:content_image_id>/<str:language_code>/',
88
+ views.ManageLocalizedContentImage.as_view(), name='manage_localized_content_image'),
89
+ path('delete-localized-content-image/<int:pk>/',
90
+ views.DeleteLocalizedContentImage.as_view(), name='delete_localized_content_image'),
91
+ # content image suggestions
92
+ path('manage-content-image-suggestions/<int:content_type_id>/<int:object_id>/',
93
+ views.ManageContentImageSuggestions.as_view(), name='manage_content_image_suggestions'),
94
+ path('manage-content-image-suggestions/<int:content_type_id>/',
95
+ views.ManageContentImageSuggestions.as_view(), name='manage_content_image_suggestions'),
96
+ # button placeholder
97
+ path('mockbutton/',
98
+ views.MockButton.as_view(), name='mockbutton'),
99
+ # anycluster, prefixed with app-kit to distinguish it from the API anycluster
100
+ #path('anycluster/', include('localcosmos_server.anycluster_schema_urls')),
101
+ # spreadsheet import
102
+ path('import-from-zip/<int:meta_app_id>/<int:content_type_id>/<int:generic_content_id>/',
103
+ views.ImportFromZip.as_view(), name='import_from_zip'),
104
+ # TAGS
105
+ path('tag-any-element/<int:content_type_id>/<int:object_id>/', views.TagAnyElement.as_view(), name='tag_any_element'),
106
+ path('reload-tags/<int:content_type_id>/<int:object_id>/', views.ReloadTags.as_view(), name='reload_tags'),
107
+ # object order
108
+ path('store-object-order/<int:content_type_id>/',
109
+ generic_views.StoreObjectOrder.as_view(), name='store_app_kit_object_order'),
110
+ ]
@@ -0,0 +1 @@
1
+ default_app_config = 'app_kit.app_kit_api.apps.AppKitApiConfig'
@@ -0,0 +1,14 @@
1
+ from django.contrib import admin
2
+
3
+ from .models import AppKitStatus, AppKitJobs
4
+
5
+ class AppKitStatusAdmin(admin.ModelAdmin):
6
+ pass
7
+
8
+ admin.site.register(AppKitStatus, AppKitStatusAdmin)
9
+
10
+
11
+ class AppKitJobsAdmin(admin.ModelAdmin):
12
+ pass
13
+
14
+ admin.site.register(AppKitJobs, AppKitJobsAdmin)
@@ -0,0 +1,5 @@
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class AppKitApiConfig(AppConfig):
5
+ name = 'app_kit.app_kit_api'
@@ -0,0 +1,48 @@
1
+ # Generated by Django 3.1 on 2020-08-27 12:24
2
+
3
+ from django.db import migrations, models
4
+ import django.db.models.deletion
5
+ import uuid
6
+
7
+
8
+ class Migration(migrations.Migration):
9
+
10
+ initial = True
11
+
12
+ dependencies = [
13
+ ('sites', '0002_alter_domain_unique'),
14
+ ]
15
+
16
+ operations = [
17
+ migrations.CreateModel(
18
+ name='AppKitStatus',
19
+ fields=[
20
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
21
+ ('status', models.CharField(choices=[('live', 'live'), ('maintenance', 'maintenance')], default='live', max_length=50)),
22
+ ('site', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to='sites.site')),
23
+ ],
24
+ ),
25
+ migrations.CreateModel(
26
+ name='AppKitJobs',
27
+ fields=[
28
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
29
+ ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, unique=True)),
30
+ ('meta_app_uuid', models.UUIDField()),
31
+ ('meta_app_definition', models.JSONField()),
32
+ ('app_version', models.IntegerField()),
33
+ ('platform', models.CharField(choices=[('ios', 'iOS'), ('android', 'Android')], max_length=255)),
34
+ ('job_type', models.CharField(choices=[('build', 'Build'), ('release', 'Release')], max_length=50)),
35
+ ('parameters', models.JSONField(null=True)),
36
+ ('created_at', models.DateTimeField(auto_now_add=True)),
37
+ ('last_modified', models.DateTimeField(auto_now=True)),
38
+ ('assigned_to', models.CharField(max_length=100, null=True)),
39
+ ('assigned_at', models.DateTimeField(null=True)),
40
+ ('finished_at', models.DateTimeField(null=True)),
41
+ ('job_status', models.CharField(choices=[('waiting_for_assignment', 'Waiting for assignment'), ('assigned', 'Assigned'), ('in_progress', 'Job in progress'), ('success', 'Success'), ('failed', 'Failed')], default='waiting_for_assignment', max_length=50)),
42
+ ('job_result', models.JSONField(null=True)),
43
+ ],
44
+ options={
45
+ 'unique_together': {('meta_app_uuid', 'app_version', 'platform', 'job_type')},
46
+ },
47
+ ),
48
+ ]
@@ -0,0 +1,80 @@
1
+ from django.db import models
2
+ from django.utils.translation import gettext_lazy as _
3
+
4
+ from django.contrib.sites.models import Site
5
+
6
+ import uuid
7
+
8
+ APP_KIT_STATUS = (
9
+ ('live', _('live')),
10
+ ('maintenance', _('maintenance')),
11
+ )
12
+
13
+ class AppKitStatus(models.Model):
14
+ site = models.OneToOneField(Site, on_delete=models.CASCADE)
15
+ status = models.CharField(max_length=50, choices=APP_KIT_STATUS, default='live')
16
+
17
+ def __str__(self):
18
+ return '{0}: {1}'.format(self.site, self.status)
19
+
20
+
21
+
22
+ '''--------------------------------------------------------------------------------------------------------------
23
+ APP KIT JOBS
24
+ - builds that need specialized hardware, lice Apple
25
+ --------------------------------------------------------------------------------------------------------------'''
26
+ PLATFORM_CHOICES = (
27
+ ('ios', 'iOS'),
28
+ ('android', 'Android'),
29
+ )
30
+
31
+
32
+ JOB_TYPES = (
33
+ ('build', 'Build'),
34
+ ('release', 'Release'),
35
+ )
36
+
37
+
38
+ JOB_STATUS = (
39
+ ('waiting_for_assignment', _('Waiting for assignment')),
40
+ ('assigned', _('Assigned')),
41
+ ('in_progress', _('Job in progress')),
42
+ ('success', _('Success')),
43
+ ('failed', _('Failed')),
44
+ )
45
+
46
+ class AppKitJobs(models.Model):
47
+
48
+ uuid = models.UUIDField(default=uuid.uuid4, unique=True, editable=False)
49
+
50
+ meta_app_uuid = models.UUIDField()
51
+ meta_app_definition = models.JSONField()
52
+ app_version = models.IntegerField()
53
+ platform = models.CharField(max_length=255, choices=PLATFORM_CHOICES)
54
+
55
+ job_type = models.CharField(max_length=50, choices=JOB_TYPES)
56
+
57
+ parameters = models.JSONField(null=True)
58
+
59
+ created_at = models.DateTimeField(auto_now_add=True)
60
+ last_modified = models.DateTimeField(auto_now=True)
61
+
62
+ # the physical machine that is doing this job
63
+ assigned_to = models.CharField(max_length=100, null=True)
64
+
65
+ assigned_at = models.DateTimeField(null=True)
66
+ finished_at = models.DateTimeField(null=True)
67
+
68
+ # job_status is used eg to give the user a feedback in the frontend
69
+ job_status = models.CharField(max_length=50, choices=JOB_STATUS, default='waiting_for_assignment')
70
+ job_result = models.JSONField(null=True)
71
+
72
+ def __str__(self):
73
+ name = self.meta_app_definition.get('name', str(self.uuid))
74
+ return '{0} - {1}'.format(name, self.job_type)
75
+
76
+
77
+ class Meta:
78
+ unique_together = ('meta_app_uuid', 'app_version', 'platform', 'job_type')
79
+
80
+
@@ -0,0 +1,14 @@
1
+ from rest_framework import permissions
2
+
3
+
4
+ class IsApiUser(permissions.BasePermission):
5
+
6
+ def has_permission(self, request, view):
7
+
8
+ if request.user.username != 'APPKITAPIUSER':
9
+ return False
10
+
11
+ return True
12
+
13
+
14
+
@@ -0,0 +1,109 @@
1
+ from rest_framework import serializers
2
+
3
+ from django.utils import timezone
4
+
5
+ from .models import AppKitJobs
6
+ from rest_framework import exceptions
7
+ from rest_framework_simplejwt.serializers import TokenObtainPairSerializer
8
+
9
+ import json
10
+
11
+ class ApiTokenSerializer(TokenObtainPairSerializer):
12
+
13
+ def validate(self, attrs):
14
+ username = attrs[self.username_field]
15
+
16
+ if username != 'APPKITAPIUSER':
17
+
18
+ error_message = 'No valid account given'
19
+
20
+ raise exceptions.AuthenticationFailed(
21
+ error_message,
22
+ "invalid_account",
23
+ )
24
+
25
+ return super().validate(attrs)
26
+
27
+
28
+
29
+ class AppKitJobSerializer(serializers.ModelSerializer):
30
+
31
+ class Meta:
32
+ model = AppKitJobs
33
+ fields = '__all__'
34
+
35
+
36
+ # assigned_to has to be set by the machine doing the job
37
+ class AppKitJobAssignSerializer(serializers.ModelSerializer):
38
+
39
+ def update(self, instance, validated_data):
40
+ instance.assigned_at = timezone.now()
41
+ instance = super().update(instance, validated_data)
42
+ return instance
43
+
44
+ class Meta:
45
+ model = AppKitJobs
46
+ fields = ('pk','assigned_to', 'job_status')
47
+ extra_kwargs = {
48
+ 'assigned_to' : {
49
+ 'required' : True,
50
+ 'trim_whitespace' : True,
51
+ }
52
+ }
53
+
54
+
55
+ class AppKitJobStatusSerializer(serializers.ModelSerializer):
56
+
57
+ class Meta:
58
+ model = AppKitJobs
59
+ fields = ('pk','job_status')
60
+
61
+
62
+
63
+ class AppKitJobCompletedSerializer(serializers.ModelSerializer):
64
+
65
+ ipa_file = serializers.FileField(required=False)
66
+
67
+ def update(self, instance, validated_data):
68
+ instance.finished_at = timezone.now()
69
+ instance = super().update(instance, validated_data)
70
+ return instance
71
+
72
+ def validate_job_result(self, value):
73
+
74
+ if type(value) == str:
75
+ value = json.loads(value)
76
+
77
+ if 'errors' not in value:
78
+ raise serializers.ValidationError('Incomplete JSON: key "errors" not in job_result. If there were no errors, add an empty list.')
79
+
80
+ if 'warnings' not in value:
81
+ raise serializers.ValidationError('Incomplete JSON: key "warnings" not in job_result. If there were no warnings, add an empty list.')
82
+
83
+ if 'success' not in value:
84
+ raise serializers.ValidationError('Incomplete JSON: key "success" not in job_result.')
85
+
86
+ elif type(value['success']) != bool:
87
+ raise serializers.ValidationError('Invalid JSON: key "success" has to be of type bool.')
88
+
89
+ return value
90
+
91
+ def validate(self, data):
92
+ """
93
+ if the job type was "build" and the platform "ios" a ipa file is required
94
+ """
95
+
96
+ if self.instance and self.instance.platform == 'ios' and self.instance.job_type == 'build':
97
+ if data.get('job_result', None) and data['job_result'].get('success', False) == True:
98
+ if not data.get('ipa_file', None):
99
+ raise serializers.ValidationError({'ipa_file': ['You need to upload an .ipa file for successful ios build jobs']})
100
+ return data
101
+
102
+ class Meta:
103
+ model = AppKitJobs
104
+ fields = ('pk', 'job_result', 'ipa_file')
105
+ extra_kwargs = {
106
+ 'job_result' : {
107
+ 'required' : True,
108
+ }
109
+ }
@@ -0,0 +1,39 @@
1
+ from django.conf import settings
2
+
3
+ from localcosmos_server.models import LocalcosmosUser
4
+
5
+ from app_kit.app_kit_api.models import AppKitJobs
6
+
7
+ from localcosmos_cordova_builder.MetaAppDefinition import MetaAppDefinition
8
+
9
+ class WithAppKitApiUser:
10
+
11
+ def setUp(self):
12
+ super().setUp()
13
+
14
+ # create the app kit api user
15
+ self.username = settings.APP_KIT_APIUSER_USERNAME
16
+ self.password = settings.APP_KIT_APIUSER_PASSWORD
17
+ self.email = settings.APP_KIT_APIUSER_EMAIL = 'api@localcosmos.org'
18
+
19
+ self.app_kit_api_user = LocalcosmosUser.objects.create_user(self.username, self.email, self.password)
20
+
21
+
22
+
23
+ class WithAppKitJob:
24
+
25
+ def create_job(self, meta_app, platform, job_type):
26
+
27
+ meta_app_definition = MetaAppDefinition.meta_app_to_dict(meta_app)
28
+
29
+ job = AppKitJobs(
30
+ meta_app_uuid=meta_app.uuid,
31
+ meta_app_definition=meta_app_definition,
32
+ app_version=meta_app.current_version,
33
+ platform=platform,
34
+ job_type=job_type,
35
+ )
36
+
37
+ job.save()
38
+
39
+ return job