cognite-neat 0.73.4__tar.gz → 0.75.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.

Potentially problematic release.


This version of cognite-neat might be problematic. Click here for more details.

Files changed (258) hide show
  1. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/PKG-INFO +1 -1
  2. cognite_neat-0.75.1/cognite/neat/_version.py +1 -0
  3. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/core.py +1 -2
  4. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/data_exploration.py +1 -1
  5. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/rules.py +71 -37
  6. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/asset-manifest.json +3 -3
  7. cognite_neat-0.75.1/cognite/neat/app/ui/neat-app/build/img/architect-icon.svg +116 -0
  8. cognite_neat-0.75.1/cognite/neat/app/ui/neat-app/build/img/developer-icon.svg +112 -0
  9. cognite_neat-0.75.1/cognite/neat/app/ui/neat-app/build/img/sme-icon.svg +34 -0
  10. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/index.html +1 -1
  11. cognite_neat-0.73.4/cognite/neat/app/ui/neat-app/build/static/js/main.2efd96b2.js → cognite_neat-0.75.1/cognite/neat/app/ui/neat-app/build/static/js/main.25d27396.js +3 -3
  12. cognite_neat-0.73.4/cognite/neat/app/ui/neat-app/build/static/js/main.2efd96b2.js.map → cognite_neat-0.75.1/cognite/neat/app/ui/neat-app/build/static/js/main.25d27396.js.map +1 -1
  13. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/constants.py +2 -2
  14. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/extractors/_mock_graph_generator.py +4 -4
  15. cognite_neat-0.75.1/cognite/neat/graph/stores/_base.py +363 -0
  16. cognite_neat-0.75.1/cognite/neat/legacy/graph/__init__.py +3 -0
  17. cognite_neat-0.75.1/cognite/neat/legacy/graph/examples/Knowledge-Graph-Nordic44-dirty.xml +20182 -0
  18. cognite_neat-0.75.1/cognite/neat/legacy/graph/examples/Knowledge-Graph-Nordic44.xml +20163 -0
  19. cognite_neat-0.75.1/cognite/neat/legacy/graph/examples/__init__.py +7 -0
  20. cognite_neat-0.75.1/cognite/neat/legacy/graph/examples/skos-capturing-sheet-wind-topics.xlsx +0 -0
  21. cognite_neat-0.75.1/cognite/neat/legacy/graph/exceptions.py +91 -0
  22. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/graph/extractors/_base.py +1 -1
  23. {cognite_neat-0.73.4/cognite/neat/graph/extractor → cognite_neat-0.75.1/cognite/neat/legacy/graph/extractors}/_dexpi.py +2 -2
  24. {cognite_neat-0.73.4/cognite/neat/graph/extractor → cognite_neat-0.75.1/cognite/neat/legacy/graph/extractors}/_graph_capturing_sheet.py +6 -6
  25. {cognite_neat-0.73.4/cognite/neat/graph/extractor → cognite_neat-0.75.1/cognite/neat/legacy/graph/extractors}/_mock_graph_generator.py +6 -5
  26. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/__init__.py +1 -1
  27. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/_asset_loader.py +3 -3
  28. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/_base.py +4 -4
  29. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/core/labels.py +2 -2
  30. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/core/models.py +1 -1
  31. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/core/rdf_to_assets.py +3 -3
  32. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/core/rdf_to_relationships.py +5 -5
  33. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/rdf_to_dms.py +5 -5
  34. cognite_neat-0.75.1/cognite/neat/legacy/graph/models.py +6 -0
  35. cognite_neat-0.75.1/cognite/neat/legacy/graph/stores/__init__.py +13 -0
  36. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/graph/stores/_base.py +5 -5
  37. cognite_neat-0.75.1/cognite/neat/legacy/graph/stores/_graphdb_store.py +51 -0
  38. cognite_neat-0.75.1/cognite/neat/legacy/graph/stores/_memory_store.py +43 -0
  39. cognite_neat-0.75.1/cognite/neat/legacy/graph/stores/_oxigraph_store.py +147 -0
  40. cognite_neat-0.75.1/cognite/neat/legacy/graph/stores/_oxrdflib.py +247 -0
  41. cognite_neat-0.75.1/cognite/neat/legacy/graph/stores/_rdf_to_graph.py +40 -0
  42. {cognite_neat-0.73.4/cognite/neat/graph/transformation → cognite_neat-0.75.1/cognite/neat/legacy/graph/transformations}/entity_matcher.py +1 -1
  43. {cognite_neat-0.73.4/cognite/neat/graph/transformation → cognite_neat-0.75.1/cognite/neat/legacy/graph/transformations}/query_generator/sparql.py +9 -7
  44. {cognite_neat-0.73.4/cognite/neat/graph/transformation → cognite_neat-0.75.1/cognite/neat/legacy/graph/transformations}/transformer.py +12 -5
  45. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/analysis.py +2 -2
  46. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_base.py +2 -2
  47. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_core/rules2labels.py +1 -1
  48. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2dms.py +6 -6
  49. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2excel.py +1 -1
  50. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2graphql.py +5 -5
  51. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2ontology.py +6 -6
  52. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2pydantic_models.py +8 -8
  53. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2rules.py +3 -2
  54. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_rules2triples.py +3 -2
  55. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_validation.py +2 -2
  56. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_base.py +2 -2
  57. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_dict2rules.py +1 -1
  58. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_dms2rules.py +2 -2
  59. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_graph2rules.py +5 -4
  60. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_owl2rules/_owl2metadata.py +11 -7
  61. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_owl2rules/_owl2rules.py +5 -5
  62. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_spreadsheet2rules.py +2 -2
  63. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_xsd2rules.py +1 -1
  64. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_yaml2rules.py +1 -1
  65. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/raw_rules.py +4 -4
  66. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/rdfpath.py +1 -1
  67. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/rules.py +4 -4
  68. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/value_types.py +1 -1
  69. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/_shared.py +1 -1
  70. cognite_neat-0.75.1/cognite/neat/rules/analysis/__init__.py +3 -0
  71. {cognite_neat-0.73.4/cognite/neat/rules/_analysis → cognite_neat-0.75.1/cognite/neat/rules/analysis}/_base.py +1 -1
  72. {cognite_neat-0.73.4/cognite/neat/rules/_analysis → cognite_neat-0.75.1/cognite/neat/rules/analysis}/_information_rules.py +3 -3
  73. cognite_neat-0.75.1/cognite/neat/rules/examples/__init__.py +9 -0
  74. cognite_neat-0.75.1/cognite/neat/rules/examples/wind-energy.owl +1511 -0
  75. cognite_neat-0.75.1/cognite/neat/rules/exceptions.py +2972 -0
  76. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_base.py +1 -1
  77. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_rules2dms.py +4 -4
  78. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_rules2excel.py +2 -2
  79. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_rules2ontology.py +4 -4
  80. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_rules2yaml.py +1 -1
  81. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_validation.py +2 -2
  82. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_base.py +1 -1
  83. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_dms2rules.py +10 -10
  84. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_dtdl2rules/dtdl_converter.py +2 -2
  85. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_dtdl2rules/dtdl_importer.py +3 -3
  86. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_dtdl2rules/spec.py +1 -1
  87. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_owl2rules/_owl2classes.py +1 -1
  88. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_owl2rules/_owl2metadata.py +6 -6
  89. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_owl2rules/_owl2properties.py +1 -1
  90. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_owl2rules/_owl2rules.py +2 -2
  91. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_spreadsheet2rules.py +2 -2
  92. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_yaml2rules.py +1 -1
  93. cognite_neat-0.75.1/cognite/neat/rules/models/_entity.py +142 -0
  94. cognite_neat-0.75.1/cognite/neat/rules/models/rdfpath.py +236 -0
  95. {cognite_neat-0.73.4/cognite/neat/rules/models/_rules → cognite_neat-0.75.1/cognite/neat/rules/models/rules}/__init__.py +5 -5
  96. cognite_neat-0.73.4/cognite/neat/rules/models/_rules/base.py → cognite_neat-0.75.1/cognite/neat/rules/models/rules/_base.py +1 -1
  97. cognite_neat-0.73.4/cognite/neat/rules/models/_rules/dms_architect_rules.py → cognite_neat-0.75.1/cognite/neat/rules/models/rules/_dms_architect_rules.py +5 -5
  98. cognite_neat-0.73.4/cognite/neat/rules/models/_rules/dms_schema.py → cognite_neat-0.75.1/cognite/neat/rules/models/rules/_dms_schema.py +1 -1
  99. cognite_neat-0.73.4/cognite/neat/rules/models/_rules/domain_rules.py → cognite_neat-0.75.1/cognite/neat/rules/models/rules/_domain_rules.py +2 -2
  100. cognite_neat-0.73.4/cognite/neat/rules/models/_rules/information_rules.py → cognite_neat-0.75.1/cognite/neat/rules/models/rules/_information_rules.py +18 -15
  101. {cognite_neat-0.73.4/cognite/neat/rules/models/_rules → cognite_neat-0.75.1/cognite/neat/rules/models/rules}/_types/_base.py +18 -134
  102. cognite_neat-0.75.1/cognite/neat/workflows/steps/__init__.py +0 -0
  103. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/data_contracts.py +4 -4
  104. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/graph_store.py +1 -1
  105. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/rules_exporter.py +18 -5
  106. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/rules_importer.py +2 -2
  107. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/rules_validator.py +2 -2
  108. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/graph_contextualization.py +1 -1
  109. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/graph_extractor.py +5 -5
  110. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/graph_loader.py +7 -7
  111. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/graph_store.py +7 -1
  112. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/graph_transformer.py +2 -2
  113. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/rules_exporter.py +7 -7
  114. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/rules_importer.py +13 -13
  115. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/pyproject.toml +1 -1
  116. cognite_neat-0.73.4/cognite/neat/_version.py +0 -1
  117. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/LICENSE +0 -0
  118. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/README.md +0 -0
  119. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/__init__.py +0 -0
  120. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/__init__.py +0 -0
  121. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/asgi/metrics.py +0 -0
  122. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/configuration.py +0 -0
  123. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/context_manager/__init__.py +0 -0
  124. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/context_manager/manager.py +0 -0
  125. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/data_classes/__init__.py +0 -0
  126. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/data_classes/configuration.py +0 -0
  127. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/data_classes/rest.py +0 -0
  128. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/explorer.py +0 -0
  129. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/configuration.py +0 -0
  130. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/crud.py +0 -0
  131. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/metrics.py +0 -0
  132. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/routers/workflows.py +0 -0
  133. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/utils/__init__.py +0 -0
  134. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/utils/data_mapping.py +0 -0
  135. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/utils/logging.py +0 -0
  136. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/api/utils/query_templates.py +0 -0
  137. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/main.py +0 -0
  138. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/monitoring/__init__.py +0 -0
  139. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/monitoring/metrics.py +0 -0
  140. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/index.html +0 -0
  141. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/.gitignore +0 -0
  142. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/README.md +0 -0
  143. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/favicon.ico +0 -0
  144. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/logo192.png +0 -0
  145. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/manifest.json +0 -0
  146. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/robots.txt +0 -0
  147. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/static/css/main.38a62222.css +0 -0
  148. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/static/css/main.38a62222.css.map +0 -0
  149. /cognite_neat-0.73.4/cognite/neat/app/ui/neat-app/build/static/js/main.2efd96b2.js.LICENSE.txt → /cognite_neat-0.75.1/cognite/neat/app/ui/neat-app/build/static/js/main.25d27396.js.LICENSE.txt +0 -0
  150. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/app/ui/neat-app/build/static/media/logo.8093b84df9ed36a174c629d6fe0b730d.svg +0 -0
  151. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/config.py +0 -0
  152. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/exceptions.py +0 -0
  153. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/__init__.py +0 -0
  154. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/examples/Knowledge-Graph-Nordic44-dirty.xml +0 -0
  155. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/examples/Knowledge-Graph-Nordic44.xml +0 -0
  156. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/examples/__init__.py +0 -0
  157. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/examples/skos-capturing-sheet-wind-topics.xlsx +0 -0
  158. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/exceptions.py +0 -0
  159. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/extractors/__init__.py +0 -0
  160. {cognite_neat-0.73.4/cognite/neat/graph/extractor → cognite_neat-0.75.1/cognite/neat/graph/extractors}/_base.py +0 -0
  161. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/models.py +0 -0
  162. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/stores/__init__.py +0 -0
  163. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/stores/_graphdb_store.py +0 -0
  164. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/stores/_memory_store.py +0 -0
  165. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/stores/_oxigraph_store.py +0 -0
  166. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/stores/_oxrdflib.py +0 -0
  167. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/graph/stores/_rdf_to_graph.py +0 -0
  168. {cognite_neat-0.73.4/cognite/neat/graph/loader/core → cognite_neat-0.75.1/cognite/neat/legacy}/__init__.py +0 -0
  169. {cognite_neat-0.73.4/cognite/neat/graph/extractor → cognite_neat-0.75.1/cognite/neat/legacy/graph/extractors}/__init__.py +0 -0
  170. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/_exceptions.py +0 -0
  171. {cognite_neat-0.73.4/cognite/neat/graph/transformation → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders/core}/__init__.py +0 -0
  172. {cognite_neat-0.73.4/cognite/neat/graph/loader → cognite_neat-0.75.1/cognite/neat/legacy/graph/loaders}/validator.py +0 -0
  173. {cognite_neat-0.73.4/cognite/neat/rules → cognite_neat-0.75.1/cognite/neat/legacy/graph/transformations}/__init__.py +0 -0
  174. {cognite_neat-0.73.4/cognite/neat/graph/transformation → cognite_neat-0.75.1/cognite/neat/legacy/graph/transformations}/query_generator/__init__.py +0 -0
  175. {cognite_neat-0.73.4/cognite/neat/rules/_analysis → cognite_neat-0.75.1/cognite/neat/legacy/rules}/__init__.py +0 -0
  176. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/Rules-Nordic44-to-TNT.xlsx +0 -0
  177. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/Rules-Nordic44-to-graphql.xlsx +0 -0
  178. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/__init__.py +0 -0
  179. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/power-grid-containers.yaml +0 -0
  180. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/power-grid-example.xlsx +0 -0
  181. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/power-grid-model.yaml +0 -0
  182. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/rules-template.xlsx +0 -0
  183. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/sheet2cdf-transformation-rules.xlsx +0 -0
  184. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/skos-rules.xlsx +0 -0
  185. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/source-to-solution-mapping-rules.xlsx +0 -0
  186. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/examples/wind-energy.owl +0 -0
  187. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/exceptions.py +0 -0
  188. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/__init__.py +0 -0
  189. {cognite_neat-0.73.4/cognite/neat/rules/exporter → cognite_neat-0.75.1/cognite/neat/legacy/rules/exporters}/_core/__init__.py +0 -0
  190. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/__init__.py +0 -0
  191. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_json2rules.py +0 -0
  192. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_owl2rules/__init__.py +0 -0
  193. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_owl2rules/_owl2classes.py +0 -0
  194. {cognite_neat-0.73.4/cognite/neat/rules/importer → cognite_neat-0.75.1/cognite/neat/legacy/rules/importers}/_owl2rules/_owl2properties.py +0 -0
  195. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/__init__.py +0 -0
  196. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/_base.py +0 -0
  197. {cognite_neat-0.73.4/cognite/neat → cognite_neat-0.75.1/cognite/neat/legacy}/rules/models/tables.py +0 -0
  198. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/py.typed +0 -0
  199. {cognite_neat-0.73.4/cognite/neat/workflows/migration → cognite_neat-0.75.1/cognite/neat/rules}/__init__.py +0 -0
  200. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/__init__.py +0 -0
  201. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/exporters/_models.py +0 -0
  202. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/__init__.py +0 -0
  203. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_dtdl2rules/__init__.py +0 -0
  204. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_dtdl2rules/_unit_lookup.py +0 -0
  205. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/importers/_owl2rules/__init__.py +0 -0
  206. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/__init__.py +0 -0
  207. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/base.py +0 -0
  208. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/dms.py +0 -0
  209. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/fileread.py +0 -0
  210. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/formatters.py +0 -0
  211. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/importing.py +0 -0
  212. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/spreadsheet.py +0 -0
  213. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/rules/issues/spreadsheet_file.py +0 -0
  214. {cognite_neat-0.73.4/cognite/neat/rules/models/_rules → cognite_neat-0.75.1/cognite/neat/rules/models/rules}/_types/__init__.py +0 -0
  215. {cognite_neat-0.73.4/cognite/neat/rules/models/_rules → cognite_neat-0.75.1/cognite/neat/rules/models/rules}/_types/_field.py +0 -0
  216. {cognite_neat-0.73.4/cognite/neat/rules/models/_rules → cognite_neat-0.75.1/cognite/neat/rules/models/rules}/_types/_value.py +0 -0
  217. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/__init__.py +0 -0
  218. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/auxiliary.py +0 -0
  219. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/cdf.py +0 -0
  220. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/cdf_loaders/__init__.py +0 -0
  221. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/cdf_loaders/_base.py +0 -0
  222. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/cdf_loaders/_data_modeling.py +0 -0
  223. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/cdf_loaders/_ingestion.py +0 -0
  224. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/cdf_loaders/data_classes.py +0 -0
  225. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/exceptions.py +0 -0
  226. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/spreadsheet.py +0 -0
  227. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/text.py +0 -0
  228. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/utils.py +0 -0
  229. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/utils/xml.py +0 -0
  230. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/__init__.py +0 -0
  231. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/_exceptions.py +0 -0
  232. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/base.py +0 -0
  233. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/cdf_store.py +0 -0
  234. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Export DMS → cognite_neat-0.75.1/cognite/neat/workflows/examples/Export_DMS}/workflow.yaml +0 -0
  235. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Export Rules to Ontology → cognite_neat-0.75.1/cognite/neat/workflows/examples/Export_Rules_to_Ontology}/workflow.yaml +0 -0
  236. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Extract DEXPI Graph and Export Rules → cognite_neat-0.75.1/cognite/neat/workflows/examples/Extract_DEXPI_Graph_and_Export_Rules}/workflow.yaml +0 -0
  237. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Extract RDF Graph and Generate Assets → cognite_neat-0.75.1/cognite/neat/workflows/examples/Extract_RDF_Graph_and_Generate_Assets}/workflow.yaml +0 -0
  238. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Import DMS → cognite_neat-0.75.1/cognite/neat/workflows/examples/Import_DMS}/workflow.yaml +0 -0
  239. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Ontology to Data Model → cognite_neat-0.75.1/cognite/neat/workflows/examples/Ontology_to_Data_Model}/workflow.yaml +0 -0
  240. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Validate Rules → cognite_neat-0.75.1/cognite/neat/workflows/examples/Validate_Rules}/workflow.yaml +0 -0
  241. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Validate Solution Model → cognite_neat-0.75.1/cognite/neat/workflows/examples/Validate_Solution_Model}/workflow.yaml +0 -0
  242. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Visualize Data Model Using Mock Graph → cognite_neat-0.75.1/cognite/neat/workflows/examples/Visualize_Data_Model_Using_Mock_Graph}/workflow.yaml +0 -0
  243. {cognite_neat-0.73.4/cognite/neat/workflows/examples/Visualize Semantic Data Model → cognite_neat-0.75.1/cognite/neat/workflows/examples/Visualize_Semantic_Data_Model}/workflow.yaml +0 -0
  244. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/manager.py +0 -0
  245. {cognite_neat-0.73.4/cognite/neat/workflows/steps → cognite_neat-0.75.1/cognite/neat/workflows/migration}/__init__.py +0 -0
  246. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/migration/steps.py +0 -0
  247. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/migration/wf_manifests.py +0 -0
  248. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/model.py +0 -0
  249. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/__init__.py +0 -0
  250. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/graph_extractor.py +0 -0
  251. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/graph_loader.py +0 -0
  252. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/io_steps.py +0 -0
  253. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/lib/v1/__init__.py +0 -0
  254. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps/step_model.py +0 -0
  255. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/steps_registry.py +0 -0
  256. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/tasks.py +0 -0
  257. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/triggers.py +0 -0
  258. {cognite_neat-0.73.4 → cognite_neat-0.75.1}/cognite/neat/workflows/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cognite-neat
3
- Version: 0.73.4
3
+ Version: 0.75.1
4
4
  Summary: Knowledge graph transformation
5
5
  Home-page: https://cognite-neat.readthedocs-hosted.com/
6
6
  License: Apache-2.0
@@ -0,0 +1 @@
1
+ __version__ = "0.75.1"
@@ -9,8 +9,7 @@ from fastapi import APIRouter, UploadFile
9
9
 
10
10
  from cognite.neat.app.api.configuration import NEAT_APP
11
11
  from cognite.neat.rules import exporters, importers
12
- from cognite.neat.rules.models._rules import DMSRules
13
- from cognite.neat.rules.models._rules.base import RoleTypes
12
+ from cognite.neat.rules.models.rules import DMSRules, RoleTypes
14
13
 
15
14
  router = APIRouter()
16
15
 
@@ -16,7 +16,7 @@ from cognite.neat.app.api.data_classes.rest import (
16
16
  )
17
17
  from cognite.neat.app.api.utils.data_mapping import rdf_result_to_api_response
18
18
  from cognite.neat.app.api.utils.query_templates import query_templates
19
- from cognite.neat.graph.transformation import query_generator
19
+ from cognite.neat.legacy.graph.transformations import query_generator
20
20
  from cognite.neat.utils.utils import remove_namespace
21
21
  from cognite.neat.workflows.steps.data_contracts import RulesData, SolutionGraph, SourceGraph
22
22
 
@@ -7,10 +7,15 @@ from rdflib import Namespace
7
7
 
8
8
  from cognite.neat.app.api.configuration import NEAT_APP
9
9
  from cognite.neat.app.api.data_classes.rest import TransformationRulesUpdateRequest
10
- from cognite.neat.rules import exporter, importer
11
- from cognite.neat.rules.models._base import EntityTypes
12
- from cognite.neat.rules.models.rules import Class, Classes, Metadata, Properties, Property, Rules
10
+ from cognite.neat.legacy.rules import exporters as legacy_exporters
11
+ from cognite.neat.legacy.rules import importers as legacy_importers
12
+ from cognite.neat.legacy.rules.models._base import EntityTypes
13
+ from cognite.neat.legacy.rules.models.rules import Class, Classes, Metadata, Properties, Property, Rules
14
+ from cognite.neat.rules import importers
15
+ from cognite.neat.rules.models.rules import RoleTypes
13
16
  from cognite.neat.workflows.steps.data_contracts import RulesData
17
+ from cognite.neat.workflows.steps.lib.rules_exporter import RulesToExcel
18
+ from cognite.neat.workflows.steps.lib.rules_importer import ExcelToRules
14
19
  from cognite.neat.workflows.steps.lib.v1.rules_importer import ImportExcelToRules
15
20
  from cognite.neat.workflows.utils import get_file_hash
16
21
 
@@ -32,7 +37,9 @@ def get_rules(
32
37
  workflow_name: str = "default",
33
38
  file_name: str | None = None,
34
39
  version: str | None = None,
40
+ as_role: str | None = None,
35
41
  ) -> dict[str, Any]:
42
+ rules_schema_version = ""
36
43
  if NEAT_APP.cdf_store is None or NEAT_APP.workflow_manager is None:
37
44
  return {"error": "NeatApp is not initialized"}
38
45
  if workflow_name != "undefined":
@@ -46,6 +53,15 @@ def get_rules(
46
53
  file_name = step.configs["file_name"]
47
54
  version = step.configs["version"]
48
55
  break
56
+ if step.method == RulesToExcel.__name__ or step.method == ExcelToRules.__name__:
57
+ rules_schema_version = "v2"
58
+ as_role = step.configs.get("as_role", "")
59
+ file_name = step.configs.get("File name", "")
60
+ if file_name:
61
+ break
62
+ file_name = step.configs.get("File path", "")
63
+ break
64
+
49
65
  if not file_name:
50
66
  return {"error": "File name is not provided"}
51
67
  rules_file = Path(file_name)
@@ -72,47 +88,63 @@ def get_rules(
72
88
  error_text = ""
73
89
  properties = []
74
90
  classes = []
91
+ remaped_rules = {}
75
92
  try:
76
- rules = cast(Rules, importer.ExcelImporter(path).to_rules(return_report=False, skip_validation=False))
77
-
78
- properties = [
79
- {
80
- "class": value.class_id,
81
- "property": value.property_id,
82
- "property_description": value.description,
83
- "property_type": (
84
- value.expected_value_type.versioned_id
85
- if value.property_type == EntityTypes.object_property
86
- else value.expected_value_type.suffix
87
- ),
88
- "cdf_resource_type": value.cdf_resource_type,
89
- "cdf_metadata_type": value.resource_type_property,
90
- "rule_type": value.rule_type,
91
- "rule": value.rule,
92
- }
93
- for value in rules.properties.values()
94
- ]
95
-
96
- classes = [
97
- {
98
- "class": value.class_id,
99
- "class_description": value.description,
100
- "cdf_resource_type": value.cdf_resource_type,
101
- }
102
- for value in rules.classes.values()
103
- ]
104
-
93
+ # Trying to load rules V1
94
+ if rules_schema_version == "" or rules_schema_version == "v1":
95
+ rules = cast(
96
+ Rules, legacy_importers.ExcelImporter(path).to_rules(return_report=False, skip_validation=False)
97
+ )
98
+ properties = [
99
+ {
100
+ "class": value.class_id,
101
+ "property": value.property_id,
102
+ "property_description": value.description,
103
+ "property_type": (
104
+ value.expected_value_type.versioned_id
105
+ if value.property_type == EntityTypes.object_property
106
+ else value.expected_value_type.suffix
107
+ ),
108
+ "cdf_resource_type": value.cdf_resource_type,
109
+ "cdf_metadata_type": value.resource_type_property,
110
+ "rule_type": value.rule_type,
111
+ "rule": value.rule,
112
+ }
113
+ for value in rules.properties.values()
114
+ ]
115
+
116
+ classes = [
117
+ {
118
+ "class": value.class_id,
119
+ "class_description": value.description,
120
+ "cdf_resource_type": value.cdf_resource_type,
121
+ }
122
+ for value in rules.classes.values()
123
+ ]
124
+ rules_schema_version = "v1"
125
+ remaped_rules = {"properties": properties, "metadata": rules.metadata.model_dump(), "classes": classes}
105
126
  except Exception as e:
106
127
  error_text = str(e)
107
128
 
129
+ if rules_schema_version == "" or rules_schema_version == "v2":
130
+ try:
131
+ role = RoleTypes(as_role) if as_role else None
132
+ rules_v2, issues = importers.ExcelImporter(path).to_rules(role=role)
133
+ error_text = ""
134
+ rules_schema_version = "v2"
135
+ if rules_v2:
136
+ remaped_rules = rules_v2.model_dump()
137
+ except Exception as e:
138
+ error_text = str(e)
139
+ rules_schema_version = "unknown"
140
+
108
141
  return {
109
- "properties": properties,
110
- "metadata": rules.metadata.model_dump(),
111
- "classes": classes,
142
+ "rules": remaped_rules,
112
143
  "file_name": path.name,
113
144
  "hash": get_file_hash(path),
114
145
  "error_text": error_text,
115
146
  "src": src,
147
+ "rules_schema_version": rules_schema_version,
116
148
  }
117
149
 
118
150
 
@@ -120,7 +152,9 @@ def get_rules(
120
152
  def get_original_rules_from_file(file_name: str):
121
153
  # """Endpoint for retrieving raw transformation from file"""
122
154
  path = Path(NEAT_APP.config.rules_store_path) / file_name
123
- rules = cast(Rules, importer.ExcelImporter(filepath=path).to_rules(return_report=False, skip_validation=False))
155
+ rules = cast(
156
+ Rules, legacy_importers.ExcelImporter(filepath=path).to_rules(return_report=False, skip_validation=False)
157
+ )
124
158
  return Response(content=rules.model_dump_json(), media_type="application/json")
125
159
 
126
160
 
@@ -165,5 +199,5 @@ def upsert_rules(request: TransformationRulesUpdateRequest):
165
199
  else:
166
200
  path = Path(NEAT_APP.config.data_store_path) / rules_file
167
201
 
168
- exporter.ExcelExporter(rules=rules).export_to_file(path)
202
+ legacy_exporters.ExcelExporter(rules=rules).export_to_file(path)
169
203
  return {"status": "ok"}
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "files": {
3
3
  "main.css": "./static/css/main.38a62222.css",
4
- "main.js": "./static/js/main.2efd96b2.js",
4
+ "main.js": "./static/js/main.25d27396.js",
5
5
  "static/media/logo.svg": "./static/media/logo.8093b84df9ed36a174c629d6fe0b730d.svg",
6
6
  "index.html": "./index.html",
7
7
  "main.38a62222.css.map": "./static/css/main.38a62222.css.map",
8
- "main.2efd96b2.js.map": "./static/js/main.2efd96b2.js.map"
8
+ "main.25d27396.js.map": "./static/js/main.25d27396.js.map"
9
9
  },
10
10
  "entrypoints": [
11
11
  "static/css/main.38a62222.css",
12
- "static/js/main.2efd96b2.js"
12
+ "static/js/main.25d27396.js"
13
13
  ]
14
14
  }
@@ -0,0 +1,116 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="svg2"
7
+ width="5164"
8
+ height="5164"
9
+ viewBox="0 0 5164 5164"
10
+ sodipodi:docname="vecteezy_project-manager-icon-style_21267496.eps"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs6" />
17
+ <sodipodi:namedview
18
+ id="namedview4"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="2"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#d1d1d1" />
26
+ <g
27
+ id="g8"
28
+ inkscape:groupmode="layer"
29
+ inkscape:label="ink_ext_XXXXXX"
30
+ transform="matrix(1.3333333,0,0,-1.3333333,0,5164)">
31
+ <g
32
+ id="g10"
33
+ transform="scale(0.1)">
34
+ <path
35
+ d="m 19361,11481 c -221,0 -402,181 -402,402 v 10622 c 0,221 181,402 402,402 221,0 402,-181 402,-402 V 11883 c 0,-221 -181,-402 -402,-402 v 0"
36
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
37
+ id="path12" />
38
+ <path
39
+ d="m 14137,16910 c -221,0 -402,181 -402,402 v 1773 c 0,221 181,402 394,402 221,0 402,-181 402,-402 v -1773 c 0,-228 -182,-402 -394,-402"
40
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
41
+ id="path14" />
42
+ <path
43
+ d="M 26949,16903 H 11788 c -520,0 -938,418 -938,938 v 2096 c 0,1371 867,2616 2151,3097 8,0 8,0 16,8 l 3853,1261 v 1332 c 0,221 181,402 402,402 221,0 402,-181 402,-402 v -1615 c 0,-173 -110,-323 -276,-378 l -4121,-1347 c -969,-362 -1623,-1308 -1623,-2348 v -2096 c 0,-79 63,-142 142,-142 h 15161 c 79,0 142,63 142,142 v 2096 c 0,1040 -654,1986 -1623,2348 l -4114,1345 c -165,55 -276,205 -276,378 v 1576 c 0,221 181,402 402,402 221,0 402,-181 402,-402 v -1292 l 3853,-1261 c 8,0 8,0 16,-8 1284,-481 2151,-1718 2151,-3097 v -2096 c -23,-512 -448,-937 -961,-937 v 0"
44
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
45
+ id="path16" />
46
+ <path
47
+ d="m 24601,16910 c -221,0 -402,181 -402,402 v 1773 c 0,221 181,402 394,402 221,0 402,-181 402,-402 v -1773 c 0,-228 -173,-402 -394,-402"
48
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
49
+ id="path18" />
50
+ <path
51
+ d="m 21441,20685 c -134,0 -276,39 -394,126 l -1915,1371 c -8,0 -8,8 -16,8 l -2088,1497 c -181,126 -221,378 -95,559 126,181 378,221 552,95 l 2104,-1513 c 8,0 8,-8 16,-8 l 1812,-1300 1986,2041 c 150,158 402,158 559,8 158,-150 158,-402 8,-559 l -2057,-2120 c -125,-134 -298,-205 -472,-205 z m -86,756 v 0 0"
52
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
53
+ id="path20" />
54
+ <path
55
+ d="m 17296,20685 c -173,0 -355,71 -489,205 l -2057,2120 c -150,158 -150,410 8,559 158,149 410,150 559,-8 l 1986,-2041 1828,1308 c 8,0 8,8 16,8 l 2088,1505 c 181,126 426,87 552,-87 126,-181 87,-426 -95,-559 l -2096,-1513 c -8,0 -8,-8 -16,-8 l -1899,-1363 c -109,-87 -251,-126 -385,-126 z m 87,756 v 0 0"
56
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
57
+ id="path22" />
58
+ <path
59
+ d="m 23285,24420 h -1812 c -221,0 -394,181 -394,402 0,221 181,402 394,402 h 1812 c 433,0 788,323 788,725 v 6603 c 0,173 -16,331 -47,473 -252,1111 -1229,1292 -1269,1300 -79,16 -158,55 -221,110 -2025,2041 -4074,1671 -5437,1001 -575,-284 -1103,-670 -1521,-1127 -591,-646 -922,-1481 -922,-2356 v -6005 c 0,-394 355,-725 788,-725 h 1812 c 221,0 402,-181 402,-402 0,-221 -181,-402 -402,-402 h -1812 c -875,0 -1584,678 -1584,1521 v 6005 c 0,1072 402,2096 1127,2892 481,528 1087,977 1749,1300 1292,638 3822,1332 6272,-1072 394,-102 1481,-504 1789,-1875 47,-205 71,-410 71,-646 v -6603 c 1,-835 -708,-1521 -1583,-1521 v 0"
60
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
61
+ id="path24" />
62
+ <path
63
+ d="m 19392,24515 c -2175,0 -4035,1852 -4145,4121 v 8 l -55,2624 c 0,126 55,244 158,323 102,79 229,102 355,63 32,-8 2821,-780 5248,1080 95,71 221,95 331,71 118,-32 213,-102 268,-213 24,-39 536,-1048 1537,-922 110,16 229,-24 315,-95 87,-79 134,-181 134,-299 v -2624 c 0,-8 0,-16 0,-16 -111,-2277 -1963,-4121 -4146,-4121 z m -3341,4152 c 87,-1820 1623,-3357 3349,-3357 1726,0 3254,1537 3349,3357 v 2207 c -820,63 -1363,599 -1655,985 -2017,-1355 -4129,-1229 -5083,-1072 l 40,-2120 v 0"
64
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
65
+ id="path26" />
66
+ <path
67
+ d="m 8108,11655 c -221,0 -402,181 -402,402 v 749 c 0,883 717,1600 1600,1600 h 5681 c 441,0 804,362 804,804 v 2096 c 0,221 181,402 402,402 221,0 402,-181 402,-402 v -2096 c 0,-883 -717,-1600 -1600,-1600 H 9314 c -441,0 -804,-362 -804,-804 v -749 c 0,-221 -181,-402 -402,-402"
68
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
69
+ id="path28" />
70
+ <path
71
+ d="m 30621,11655 c -221,0 -402,181 -402,402 v 749 c 0,441 -362,804 -804,804 h -5681 c -883,0 -1600,717 -1600,1600 v 2096 c 0,221 181,402 394,402 221,0 402,-181 402,-402 v -2096 c 0,-441 362,-804 804,-804 h 5681 c 883,0 1600,-717 1600,-1600 v -749 c 8,-221 -173,-402 -394,-402 v 0"
72
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
73
+ id="path30" />
74
+ <path
75
+ d="M 10992,4988 H 5224 c -221,0 -402,181 -402,402 v 6666 c 0,221 181,402 394,402 h 5768 c 221,0 402,-181 402,-402 V 5390 c 8,-221 -173,-402 -394,-402 z m -5366,796 h 4972 v 5871 H 5626 V 5784"
76
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
77
+ id="path32" />
78
+ <path
79
+ d="m 33505,4988 h -5768 c -221,0 -402,181 -402,402 v 6666 c 0,221 181,402 394,402 h 5768 c 221,0 394,-181 394,-402 V 5390 c 8,-221 -165,-402 -386,-402 z m -5366,796 h 4972 v 5871 h -4972 v -5871 0"
80
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
81
+ id="path34" />
82
+ <path
83
+ d="m 20078,1978 h -1434 c -260,0 -520,142 -662,347 -118,173 -134,370 -63,559 l 150,370 c -189,63 -370,142 -552,229 l -158,-370 c -79,-181 -236,-307 -433,-347 -244,-47 -528,39 -709,221 l -1009,1009 c -181,181 -268,465 -221,709 39,205 165,362 355,433 l 370,158 c -87,181 -165,362 -229,552 l -370,-150 c -181,-79 -386,-55 -559,63 -205,134 -347,402 -347,662 v 1434 c 0,260 142,520 347,662 173,110 370,134 559,63 l 370,-150 c 63,189 142,370 229,552 l -370,158 c -181,79 -307,236 -355,433 -47,244 39,528 221,709 l 1009,1009 c 181,181 465,268 709,221 205,-39 362,-165 433,-355 l 158,-370 c 181,87 362,165 552,229 l -150,370 c -79,181 -55,386 63,559 142,205 402,347 662,347 h 1434 c 252,0 520,-142 662,-347 110,-173 134,-370 63,-559 l -150,-370 c 189,-63 370,-142 552,-229 l 158,370 c 79,181 236,307 433,355 244,47 528,-39 709,-221 l 1009,-1009 c 181,-181 268,-465 221,-709 -39,-205 -165,-362 -355,-433 l -370,-158 c 87,-181 165,-362 229,-552 l 370,150 c 181,79 386,55 559,-63 205,-142 347,-402 347,-662 V 6423 c 0,-260 -142,-520 -347,-662 -173,-118 -370,-134 -559,-63 l -370,150 c -63,-189 -142,-370 -229,-552 l 370,-158 c 181,-79 307,-236 355,-433 47,-244 -39,-528 -221,-709 L 22505,2987 c -181,-181 -465,-268 -709,-221 -205,39 -362,165 -433,347 l -158,370 c -181,-87 -362,-165 -552,-229 l 150,-370 c 79,-181 55,-386 -63,-559 -142,-205 -402,-347 -662,-347 z m -2742,2474 c 79,0 150,-24 221,-63 355,-229 733,-394 1150,-473 118,-24 213,-95 268,-205 55,-102 63,-229 16,-339 l -244,-591 h 1237 l -244,591 c -47,110 -39,236 16,339 55,102 158,181 268,205 410,87 796,244 1150,473 102,63 221,87 339,47 110,-32 205,-118 252,-229 l 244,-591 875,875 -591,244 c -110,47 -197,134 -229,252 -32,110 -16,236 47,339 229,347 394,733 473,1143 24,118 95,213 205,268 102,55 229,63 339,16 l 591,-244 v 1237 l -591,-244 c -110,-47 -236,-39 -339,16 -103,55 -181,158 -205,268 -87,410 -244,796 -473,1150 -63,102 -87,221 -47,339 32,110 118,205 229,252 l 591,244 -875,875 -244,-591 c -47,-110 -134,-197 -252,-229 -110,-32 -236,-16 -339,47 -355,229 -733,394 -1150,473 -118,24 -213,102 -268,205 -55,102 -63,229 -16,339 l 244,591 h -1237 l 244,-591 c 47,-110 39,-236 -16,-339 -55,-102 -158,-181 -268,-205 -410,-87 -796,-244 -1143,-473 -102,-63 -221,-87 -339,-47 -110,32 -205,118 -252,229 l -244,591 -875,-875 591,-244 c 110,-47 197,-134 229,-252 32,-110 16,-236 -47,-339 -229,-347 -394,-733 -473,-1143 -24,-118 -95,-213 -205,-276 -102,-55 -229,-63 -339,-16 l -591,244 V 6508 l 591,244 c 110,47 236,39 339,-16 103,-55 181,-158 205,-268 87,-410 244,-796 473,-1143 63,-102 87,-221 47,-339 -32,-110 -118,-205 -229,-252 l -591,-244 875,-875 244,591 c 47,110 134,197 252,229 32,9 71,17 111,17 v 0"
84
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
85
+ id="path36" />
86
+ <path
87
+ d="m 19361,4500 c -1450,0 -2624,1182 -2624,2624 0,1450 1182,2624 2624,2624 1450,0 2624,-1182 2624,-2624 8,-1442 -1174,-2624 -2624,-2624 z m 0,4460 c -1009,0 -1828,-820 -1828,-1828 0,-1009 820,-1828 1828,-1828 1008,0 1828,820 1828,1828 8,1008 -812,1828 -1828,1828"
88
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
89
+ id="path38" />
90
+ <path
91
+ d="M 9424,9976 H 6800 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 2624 c 221,0 402,-181 402,-402 -8,-221 -181,-402 -402,-402"
92
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
93
+ id="path40" />
94
+ <path
95
+ d="M 9424,8321 H 6800 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 2624 c 221,0 402,-181 402,-402 -8,-220 -181,-402 -402,-402"
96
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
97
+ id="path42" />
98
+ <path
99
+ d="M 9424,6667 H 6800 c -221,0 -402,181 -402,402 0,221 182,401 402,401 h 2624 c 221,0 402,-181 402,-402 -8,-220 -181,-401 -402,-401"
100
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
101
+ id="path44" />
102
+ <path
103
+ d="m 31937,9976 h -2624 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 2624 c 221,0 402,-181 402,-402 -8,-221 -189,-402 -402,-402"
104
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
105
+ id="path46" />
106
+ <path
107
+ d="m 31937,8321 h -2624 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 2624 c 221,0 402,-181 402,-402 -8,-220 -189,-402 -402,-402"
108
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
109
+ id="path48" />
110
+ <path
111
+ d="m 31937,6667 h -2624 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 2624 c 221,0 402,-181 402,-402 -8,-221 -189,-402 -402,-402"
112
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
113
+ id="path50" />
114
+ </g>
115
+ </g>
116
+ </svg>
@@ -0,0 +1,112 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="svg2"
7
+ width="5164"
8
+ height="5164"
9
+ viewBox="0 0 5164 5164"
10
+ sodipodi:docname="vecteezy_citizen-developer-male-icon-style_21265000.eps"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs6" />
17
+ <sodipodi:namedview
18
+ id="namedview4"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="2"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#d1d1d1" />
26
+ <g
27
+ id="g8"
28
+ inkscape:groupmode="layer"
29
+ inkscape:label="ink_ext_XXXXXX"
30
+ transform="matrix(1.3333333,0,0,-1.3333333,0,5164)">
31
+ <g
32
+ id="g10"
33
+ transform="scale(0.1)">
34
+ <path
35
+ d="M 35554,10670 H 20795 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 14759 c 221,0 394,181 394,394 v 3073 c 0,1608 -1009,3057 -2514,3625 l -6052,1986 c -165,55 -276,205 -276,378 v 2380 c 0,221 181,402 402,402 221,0 402,-181 402,-402 v -2088 l 5784,-1899 c 8,0 8,0 16,-8 1820,-678 3042,-2435 3042,-4373 v -3073 c -8,-664 -536,-1199 -1198,-1199 z m -16579,9085 c -165,0 -323,102 -378,276 -71,213 47,433 252,504 l 2080,686 v 2088 c 0,221 181,402 402,402 221,0 402,-181 402,-402 v -2380 c 0,-173 -110,-323 -276,-378 l -2356,-772 c -39,-16 -87,-24 -126,-24 v 0"
36
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
37
+ id="path12" />
38
+ <path
39
+ d="m 32111,10670 c -221,0 -402,181 -402,402 v 2608 c 0,221 181,402 402,402 221,0 402,-181 402,-402 v -2608 c -8,-221 -190,-402 -402,-402"
40
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
41
+ id="path14" />
42
+ <path
43
+ d="m 29045,27950 c -39,0 -71,8 -110,16 -213,63 -339,276 -276,489 79,276 205,559 339,859 496,1095 1056,2332 -181,4342 -16,32 -32,63 -39,95 -8,32 -252,756 -1198,1340 -1284,788 -3254,898 -5697,315 -32,-8 -63,-8 -95,-8 h -2813 l 1150,-1237 c 79,-87 110,-197 102,-307 -8,-110 -71,-213 -158,-284 -87,-63 -2191,-1702 47,-4886 126,-181 87,-426 -95,-552 -181,-126 -426,-87 -552,95 -1395,1986 -1300,3499 -969,4421 205,583 536,1009 772,1269 l -1489,1608 c -110,118 -134,284 -71,433 63,142 205,236 362,236 h 3680 c 2711,630 4830,481 6312,-465 1017,-646 1379,-1466 1458,-1686 1426,-2356 693,-3979 205,-5051 -126,-284 -236,-520 -299,-741 -46,-190 -211,-301 -385,-301 v 0"
44
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
45
+ id="path16" />
46
+ <path
47
+ d="m 24420,21725 c -1340,0 -2592,520 -3546,1466 -953,953 -1481,2214 -1481,3562 v 2293 c 0,165 8,323 24,489 32,307 102,591 189,859 378,1080 1182,1789 2451,2175 8,0 16,8 24,8 95,24 2143,504 3444,-780 481,205 1474,536 2372,173 654,-260 1111,-812 1371,-1647 118,-370 173,-780 173,-1206 v -2364 c 0,-2758 -2238,-5012 -4996,-5027 -9,-1 -17,-1 -25,-1 z m 24,394 v 0 z m -2160,9685 c -1324,-410 -1726,-1111 -1923,-1678 -71,-213 -126,-441 -150,-686 -16,-126 -24,-260 -24,-402 v -2293 c 0,-1135 441,-2198 1245,-3002 804,-796 1875,-1237 3010,-1229 v 0 c 2317,16 4208,1915 4208,4232 v 2363 c 0,347 -47,670 -142,969 -181,591 -489,977 -906,1143 -859,347 -1970,-260 -1986,-268 -173,-95 -386,-55 -504,102 -913,1150 -2686,780 -2828,749 v 0"
48
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
49
+ id="path18" />
50
+ <path
51
+ d="m 24420,10670 c -221,0 -402,181 -402,402 v 7636 c 0,221 181,402 402,402 221,0 402,-173 402,-394 v -7644 c -8,-221 -181,-402 -402,-402"
52
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
53
+ id="path20" />
54
+ <path
55
+ d="m 27462,16217 c -165,0 -331,47 -473,150 l -2797,2017 c -8,8 -8,8 -16,16 l -3073,2206 c -181,126 -221,378 -95,552 126,181 378,221 552,95 l 3089,-2214 c 8,-8 8,-8 16,-16 l 2789,-2002 c 8,0 8,0 16,0 l 3026,3113 c 150,158 402,158 559,8 158,-150 165,-402 8,-559 l -3026,-3113 c -150,-166 -363,-253 -575,-253 v 0"
56
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
57
+ id="path22" />
58
+ <path
59
+ d="m 21378,16217 c -213,0 -426,79 -583,244 l -292,299 c -150,158 -150,410 8,559 158,150 410,150 559,-8 l 292,-299 c 8,-8 8,-8 16,0 l 2813,2017 c 8,8 8,8 16,8 l 3073,2206 c 181,126 426,87 552,-95 126,-181 87,-426 -87,-559 l -3089,-2222 c -8,-8 -8,-8 -16,-8 l -2789,-2002 c -142,-85 -307,-140 -473,-140 v 0"
60
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
61
+ id="path24" />
62
+ <path
63
+ d="M 19668,2159 H 3507 c -835,0 -1521,686 -1521,1521 v 15350 c 0,835 686,1521 1521,1521 h 16170 c 835,0 1521,-686 1521,-1521 V 3680 c -9,-835 -687,-1521 -1530,-1521 z M 3507,19755 c -402,0 -725,-323 -725,-725 V 3680 c 0,-402 323,-725 725,-725 h 16170 c 402,0 725,323 725,725 v 15350 c 0,402 -323,725 -725,725 H 3507 v 0"
64
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
65
+ id="path26" />
66
+ <path
67
+ d="M 20795,15705 H 2380 c -221,0 -402,181 -402,394 0,221 181,402 402,402 h 18408 c 221,0 394,-181 394,-402 7,-213 -166,-394 -387,-394 v 0"
68
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
69
+ id="path28" />
70
+ <path
71
+ d="M 8896,17052 H 5090 c -591,0 -1072,481 -1072,1072 0,591 481,1072 1072,1072 h 3806 c 591,0 1072,-481 1072,-1072 0,-591 -481,-1072 -1072,-1072 z m -3806,1356 c -150,0 -276,-126 -276,-276 0,-158 126,-276 276,-276 h 3806 c 150,0 276,126 276,276 0,158 -126,276 -276,276 H 5090 v 0"
72
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
73
+ id="path30" />
74
+ <path
75
+ d="m 12356,17730 h -1087 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 1087 c 221,0 402,-181 402,-402 0,-221 -182,-402 -402,-402 v 0"
76
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
77
+ id="path32" />
78
+ <path
79
+ d="m 15145,17730 h -1087 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 1087 c 221,0 402,-181 402,-402 -8,-221 -181,-402 -402,-402"
80
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
81
+ id="path34" />
82
+ <path
83
+ d="m 17927,17730 h -1087 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 1087 c 221,0 402,-181 402,-402 0,-221 -182,-402 -402,-402 v 0"
84
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
85
+ id="path36" />
86
+ <path
87
+ d="m 12253,10252 c -158,0 -315,102 -370,260 l -1332,3554 c -79,205 24,433 236,512 205,79 433,-24 512,-236 l 1332,-3554 c 79,-205 -24,-433 -236,-512 -47,-16 -94,-24 -142,-24 v 0"
88
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
89
+ id="path38" />
90
+ <path
91
+ d="m 9156,10252 c -79,0 -150,24 -221,71 l -2640,1773 c -110,71 -173,197 -173,331 0,134 63,260 173,331 l 2632,1773 c 181,126 433,71 552,-110 126,-181 71,-433 -110,-552 L 7226,12419 9369,10969 c 181,-126 229,-370 110,-552 -70,-102 -196,-165 -323,-165"
92
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
93
+ id="path40" />
94
+ <path
95
+ d="m 14018,10252 c -126,0 -252,63 -331,173 -126,181 -71,433 110,552 l 2143,1450 -2143,1450 c -181,126 -229,370 -110,552 126,181 370,229 552,110 l 2632,-1773 c 110,-71 173,-197 173,-331 0,-134 -63,-252 -173,-331 l -2632,-1773 c -63,-55 -142,-79 -221,-79 v 0"
96
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
97
+ id="path42" />
98
+ <path
99
+ d="M 17753,8187 H 5421 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 12332 c 221,0 402,-181 402,-402 -8,-220 -181,-402 -402,-402"
100
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
101
+ id="path44" />
102
+ <path
103
+ d="M 17753,6123 H 5421 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 12332 c 221,0 402,-181 402,-402 -8,-221 -181,-402 -402,-402"
104
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
105
+ id="path46" />
106
+ <path
107
+ d="M 17753,4058 H 5421 c -221,0 -402,181 -402,402 0,221 181,402 402,402 h 12332 c 221,0 402,-181 402,-402 -8,-220 -181,-402 -402,-402"
108
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
109
+ id="path48" />
110
+ </g>
111
+ </g>
112
+ </svg>
@@ -0,0 +1,34 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="svg2"
7
+ width="2666.6667"
8
+ height="2666.6667"
9
+ viewBox="0 0 2666.6667 2666.6667"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:svg="http://www.w3.org/2000/svg">
12
+ <defs
13
+ id="defs6" />
14
+ <g
15
+ id="g8"
16
+ transform="matrix(1.3333333,0,0,-1.3333333,0,2666.6667)">
17
+ <g
18
+ id="g10"
19
+ transform="scale(0.1)">
20
+ <path
21
+ d="M 7475.5,6304.7 C 7333.99,6110.6 7125.34,5983.2 6888,5946 c -237.31,-37.3 -474.96,20.2 -669.1,161.7 -194.15,141.5 -321.56,350.1 -358.78,587.5 -37.22,237.3 20.21,474.9 161.72,669.1 141.51,194.1 350.16,321.5 587.5,358.8 237.33,37.1 474.96,-20.3 669.1,-161.8 194.15,-141.5 321.56,-350.1 358.78,-587.5 37.22,-237.3 -20.21,-474.9 -161.72,-669.1 z m -4.46,1520.9 c -264.73,192.9 -588.73,271.2 -912.36,220.5 -668.07,-104.8 -1126.35,-733.5 -1021.59,-1401.6 50.75,-323.6 224.48,-608.1 489.21,-801.1 212.1,-154.6 462.23,-235.5 719.75,-235.5 63.9,0 128.27,4.9 192.61,15 323.62,50.8 608.11,224.5 801.07,489.2 192.95,264.8 271.27,588.8 220.52,912.4 -50.75,323.6 -224.48,608.1 -489.21,801.1"
22
+ style="fill:#211d1d;fill-opacity:1;fill-rule:nonzero;stroke:none"
23
+ id="path14" />
24
+ <path
25
+ d="m 8851.22,6144.5 -73.87,-191.6 -456.89,-55.4 -41.62,-63.6 c -32.8,-50.2 -68.25,-99 -105.37,-145.2 l -49.54,-61.6 100.59,-441.5 -159.75,-128.9 -422.92,180.2 -67.87,-34.3 c -53.26,-26.9 -108.49,-51.5 -164.19,-73 l -73.89,-28.6 -133.54,-432.4 -202.82,-31.8 -276.31,367.8 -76.04,4.1 c -59.75,3.3 -119.89,9.5 -178.74,18.7 l -78.16,12.1 -331.65,-307.5 -191.55,73.8 -55.47,456.9 -63.6,41.6 c -50.11,32.8 -98.94,68.3 -145.13,105.4 l -61.63,49.5 -441.45,-100.5 -128.95,159.7 180.2,422.9 -34.3,67.9 c -26.92,53.3 -51.48,108.5 -73.01,164.2 l -28.55,73.9 -432.41,133.5 -31.8,202.8 367.73,276.4 4.15,76 c 3.25,59.7 9.53,119.9 18.65,178.7 l 12.1,78.2 -307.5,331.6 73.87,191.6 456.89,55.5 41.62,63.6 c 32.76,50 68.22,98.8 105.38,145.1 l 49.52,61.6 -100.58,441.5 159.75,128.9 422.92,-180.2 67.87,34.3 c 53.25,26.9 108.5,51.5 164.18,73 l 73.89,28.6 133.54,432.4 202.83,31.8 276.31,-367.7 76.04,-4.2 c 59.77,-3.2 119.91,-9.5 178.73,-18.6 l 78.18,-12.1 331.64,307.5 191.55,-73.9 55.47,-456.9 63.6,-41.6 c 50.07,-32.8 98.9,-68.2 145.13,-105.4 l 61.64,-49.5 441.44,100.6 128.95,-159.8 -180.21,-422.9 34.32,-67.9 c 26.89,-53.2 51.45,-108.4 72.98,-164.1 l 28.56,-73.9 432.41,-133.6 31.81,-202.8 -367.73,-276.3 -4.15,-76.1 c -3.25,-59.7 -9.53,-119.8 -18.65,-178.7 l -12.09,-78.2 z m 448.59,797.5 -93.85,598.4 -477.81,147.6 c -7.18,16.7 -14.57,33.3 -22.17,49.8 l 198.3,465.3 -380.48,471.4 -488.03,-111.2 c -14.38,10.7 -28.91,21.2 -43.57,31.6 l -61.03,502.7 -565.18,217.9 -366.66,-339.9 c -18.03,2.1 -36.12,4 -54.21,5.6 L 6641.2,9385.6 6042.77,9291.8 5895.2,8814 c -16.69,-7.2 -33.28,-14.6 -49.78,-22.2 l -465.39,198.3 -471.33,-380.5 111.2,-488 c -10.7,-14.4 -21.23,-28.9 -31.58,-43.6 l -502.74,-61 -217.94,-565.2 339.97,-366.6 c -2.1,-18.1 -3.97,-36.1 -5.63,-54.2 l -404.45,-304 93.84,-598.4 477.82,-147.6 c 7.17,-16.6 14.57,-33.2 22.17,-49.7 l -198.31,-465.4 380.49,-471.4 488.04,111.2 c 14.36,-10.7 28.9,-21.2 43.56,-31.5 l 61.03,-502.8 565.18,-217.9 366.66,339.9 c 18.04,-2.1 36.12,-3.9 54.21,-5.6 l 303.92,-404.4 598.43,93.8 147.57,477.8 c 16.68,7.2 33.29,14.6 49.78,22.2 l 465.39,-198.3 471.33,380.5 -111.21,488 c 10.7,14.4 21.23,28.9 31.59,43.6 l 502.74,61 217.93,565.2 -339.96,366.6 c 2.1,18.1 3.97,36.2 5.62,54.3 l 404.46,303.9"
26
+ style="fill:#211d1d;fill-opacity:1;fill-rule:nonzero;stroke:none"
27
+ id="path16" />
28
+ <path
29
+ d="m 11136.3,8660.4 c -581.2,0 -1053.9,472.8 -1053.9,1054 v 65.8 c 315.2,-149 679.2,-234.2 1066.6,-234.2 377,0 731.8,80.6 1041.2,222.3 v -53.9 c 0,-581.2 -472.8,-1054 -1053.9,-1054 z m -1833.12,2700.3 v 115.6 l -108.91,38.5 c -1.88,0.7 -189.19,70.9 -263.86,236.7 -34.93,77.5 -39.93,167.9 -15.2,269.6 h 4427.89 c 38.1,-115.5 39.7,-214.9 4.5,-296.2 -64.5,-149.1 -237.7,-208 -238.3,-208.2 l -114.5,-36 v -120 c 0,-820.3 -828,-1487.8 -1845.8,-1487.8 -1017.8,0 -1845.82,667.5 -1845.82,1487.8 z m -762.57,1051.4 360.93,159.8 v 636.9 c 0,887.8 620.64,1659 1531.36,1932.4 v -1301.4 h 327 v 1535.5 c 0,2 9.2,14.4 30.7,14.4 h 752.9 c 21.5,0 30.7,-12.4 30.7,-14.4 v -1535.5 h 327 v 1283.5 c 877.8,-288.7 1475.3,-1051.6 1475.3,-1914.5 v -657.4 l 298.1,-159.8 v -43.5 H 8540.61 Z M 9779.37,5780.5 h 6023.13 l -636.8,2547.1 -2654,1268.3 c 3.4,39.1 5.5,78.5 5.5,118.5 v 237.7 c 459.4,311.8 764,776.9 800.8,1301.2 102,54.3 248.9,159 327.7,337.2 57.7,130.4 69.5,274.7 35.9,430.6 h 320 v 566.3 l -298.2,159.7 v 461.7 c 0,1043.6 -741.6,1959.5 -1816.1,2260.5 -42.9,142.6 -180.7,247.3 -343.8,247.3 h -752.9 c -156.8,0 -290.2,-96.7 -338.4,-230.9 -512.42,-131.3 -974.95,-411.1 -1310.91,-795.1 -365.45,-417.8 -566.72,-944 -566.72,-1481.8 v -424.1 L 8213.64,12625 v -603.9 H 8582 c -22.35,-144.3 -5.75,-279.6 50.29,-404 85.19,-189 242.47,-302.7 347.48,-361.1 35.27,-515.6 329.61,-974.2 775.62,-1286.4 v -255.2 c 0,-44.3 2.3,-88 6.39,-131.2 l -887.21,-431.6 143.03,-294 816.68,397.3 c 189.82,-536.2 701.62,-921.4 1302.02,-921.4 604.7,0 1119.6,390.9 1306,933.2 L 14885.8,8099 15383.7,6107.5 H 9779.37 v -327"
30
+ style="fill:#211d1d;fill-opacity:1;fill-rule:nonzero;stroke:none"
31
+ id="path18" />
32
+ </g>
33
+ </g>
34
+ </svg>
@@ -1 +1 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./logo192.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="NEAT controll panel"/><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>NEAT App</title><script defer="defer" src="./static/js/main.2efd96b2.js"></script><link href="./static/css/main.38a62222.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./logo192.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="NEAT controll panel"/><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>NEAT App</title><script defer="defer" src="./static/js/main.25d27396.js"></script><link href="./static/css/main.38a62222.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>