ciris-agent 1.7.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ciris_adapters/README.md +113 -0
- ciris_adapters/__init__.py +30 -0
- ciris_adapters/ciris_covenant_metrics/README.md +144 -0
- ciris_adapters/ciris_covenant_metrics/__init__.py +36 -0
- ciris_adapters/ciris_covenant_metrics/adapter.py +249 -0
- ciris_adapters/ciris_covenant_metrics/manifest.json +152 -0
- ciris_adapters/ciris_covenant_metrics/services.py +403 -0
- ciris_adapters/ciris_hosted_tools/__init__.py +24 -0
- ciris_adapters/ciris_hosted_tools/adapter.py +169 -0
- ciris_adapters/ciris_hosted_tools/manifest.json +94 -0
- ciris_adapters/ciris_hosted_tools/services.py +744 -0
- ciris_adapters/external_data_sql/README.md +559 -0
- ciris_adapters/external_data_sql/__init__.py +43 -0
- ciris_adapters/external_data_sql/adapter.py +144 -0
- ciris_adapters/external_data_sql/configurable.py +315 -0
- ciris_adapters/external_data_sql/dialects/__init__.py +37 -0
- ciris_adapters/external_data_sql/dialects/base.py +133 -0
- ciris_adapters/external_data_sql/dialects/mysql.py +63 -0
- ciris_adapters/external_data_sql/dialects/postgresql.py +59 -0
- ciris_adapters/external_data_sql/dialects/sqlite.py +62 -0
- ciris_adapters/external_data_sql/example_config.json +88 -0
- ciris_adapters/external_data_sql/example_privacy_schema.yaml +127 -0
- ciris_adapters/external_data_sql/manifest.json +195 -0
- ciris_adapters/external_data_sql/privacy_schema_loader.py +189 -0
- ciris_adapters/external_data_sql/protocol.py +101 -0
- ciris_adapters/external_data_sql/schemas.py +146 -0
- ciris_adapters/external_data_sql/service.py +1547 -0
- ciris_adapters/external_data_sql/service_old.py +492 -0
- ciris_adapters/home_assistant/__init__.py +63 -0
- ciris_adapters/home_assistant/adapter.py +201 -0
- ciris_adapters/home_assistant/communication_service.py +347 -0
- ciris_adapters/home_assistant/configurable.py +667 -0
- ciris_adapters/home_assistant/manifest.json +203 -0
- ciris_adapters/home_assistant/schemas.py +129 -0
- ciris_adapters/home_assistant/service.py +751 -0
- ciris_adapters/home_assistant/tool_service.py +441 -0
- ciris_adapters/mcp_client/__init__.py +82 -0
- ciris_adapters/mcp_client/adapter.py +847 -0
- ciris_adapters/mcp_client/config.py +280 -0
- ciris_adapters/mcp_client/configurable.py +422 -0
- ciris_adapters/mcp_client/manifest.json +185 -0
- ciris_adapters/mcp_client/mcp_communication_service.py +393 -0
- ciris_adapters/mcp_client/mcp_tool_service.py +463 -0
- ciris_adapters/mcp_client/mcp_wise_service.py +394 -0
- ciris_adapters/mcp_client/schemas.py +149 -0
- ciris_adapters/mcp_client/security.py +592 -0
- ciris_adapters/mcp_common/__init__.py +44 -0
- ciris_adapters/mcp_common/manifest.json +25 -0
- ciris_adapters/mcp_common/protocol.py +315 -0
- ciris_adapters/mcp_common/schemas.py +225 -0
- ciris_adapters/mcp_server/__init__.py +47 -0
- ciris_adapters/mcp_server/adapter.py +581 -0
- ciris_adapters/mcp_server/config.py +260 -0
- ciris_adapters/mcp_server/configurable.py +393 -0
- ciris_adapters/mcp_server/handlers.py +663 -0
- ciris_adapters/mcp_server/manifest.json +211 -0
- ciris_adapters/mcp_server/security.py +500 -0
- ciris_adapters/mock_llm/README.md +117 -0
- ciris_adapters/mock_llm/__init__.py +21 -0
- ciris_adapters/mock_llm/adapter.py +131 -0
- ciris_adapters/mock_llm/configurable.py +237 -0
- ciris_adapters/mock_llm/manifest.json +106 -0
- ciris_adapters/mock_llm/protocol.py +37 -0
- ciris_adapters/mock_llm/responses.py +520 -0
- ciris_adapters/mock_llm/responses_action_selection.py +1041 -0
- ciris_adapters/mock_llm/responses_epistemic.py +17 -0
- ciris_adapters/mock_llm/responses_feedback.py +27 -0
- ciris_adapters/mock_llm/schemas.py +35 -0
- ciris_adapters/mock_llm/service.py +294 -0
- ciris_adapters/navigation/__init__.py +21 -0
- ciris_adapters/navigation/adapter.py +129 -0
- ciris_adapters/navigation/configurable.py +239 -0
- ciris_adapters/navigation/manifest.json +104 -0
- ciris_adapters/navigation/service.py +487 -0
- ciris_adapters/reddit/README.md +132 -0
- ciris_adapters/reddit/REDDIT_ADAPTER_ANALYSIS.md +715 -0
- ciris_adapters/reddit/REDDIT_ADAPTER_SUMMARY.txt +278 -0
- ciris_adapters/reddit/REDDIT_ANALYSIS_INDEX.md +307 -0
- ciris_adapters/reddit/REDDIT_PRODUCTION_READINESS_PLAN.md +518 -0
- ciris_adapters/reddit/__init__.py +15 -0
- ciris_adapters/reddit/adapter.py +189 -0
- ciris_adapters/reddit/configurable.py +274 -0
- ciris_adapters/reddit/error_handler.py +307 -0
- ciris_adapters/reddit/manifest.json +218 -0
- ciris_adapters/reddit/observer.py +532 -0
- ciris_adapters/reddit/protocol.py +34 -0
- ciris_adapters/reddit/schemas.py +433 -0
- ciris_adapters/reddit/service.py +1471 -0
- ciris_adapters/sample_adapter/README.md +474 -0
- ciris_adapters/sample_adapter/__init__.py +45 -0
- ciris_adapters/sample_adapter/adapter.py +208 -0
- ciris_adapters/sample_adapter/configurable.py +469 -0
- ciris_adapters/sample_adapter/manifest.json +247 -0
- ciris_adapters/sample_adapter/services.py +486 -0
- ciris_adapters/weather/__init__.py +16 -0
- ciris_adapters/weather/adapter.py +130 -0
- ciris_adapters/weather/configurable.py +240 -0
- ciris_adapters/weather/manifest.json +156 -0
- ciris_adapters/weather/service.py +600 -0
- ciris_agent-1.7.7.dist-info/METADATA +284 -0
- ciris_agent-1.7.7.dist-info/RECORD +986 -0
- ciris_agent-1.7.7.dist-info/WHEEL +5 -0
- ciris_agent-1.7.7.dist-info/entry_points.txt +15 -0
- ciris_agent-1.7.7.dist-info/licenses/LICENSE +205 -0
- ciris_agent-1.7.7.dist-info/licenses/NOTICE +82 -0
- ciris_agent-1.7.7.dist-info/top_level.txt +4 -0
- ciris_engine/__init__.py +15 -0
- ciris_engine/ciris_templates/ally.yaml +632 -0
- ciris_engine/ciris_templates/default.yaml +411 -0
- ciris_engine/ciris_templates/echo-core.yaml +629 -0
- ciris_engine/ciris_templates/echo-speculative.yaml +764 -0
- ciris_engine/ciris_templates/echo.yaml +647 -0
- ciris_engine/ciris_templates/sage.yaml +332 -0
- ciris_engine/ciris_templates/scout.yaml +338 -0
- ciris_engine/ciris_templates/test.yaml +168 -0
- ciris_engine/cli.py +42 -0
- ciris_engine/config/CIRIS_SERVICES.json +19 -0
- ciris_engine/config/MODEL_CAPABILITIES.json +419 -0
- ciris_engine/config/PRICING_DATA.json +179 -0
- ciris_engine/config/__init__.py +50 -0
- ciris_engine/config/ciris_services.py +113 -0
- ciris_engine/config/model_capabilities.py +388 -0
- ciris_engine/config/pricing_models.py +276 -0
- ciris_engine/constants.py +35 -0
- ciris_engine/data/__init__.py +1 -0
- ciris_engine/data/covenant_1.0b.txt +978 -0
- ciris_engine/gui_static/11steps.svg +107 -0
- ciris_engine/gui_static/2x-schematics.png +0 -0
- ciris_engine/gui_static/404/index.html +1 -0
- ciris_engine/gui_static/404.html +1 -0
- ciris_engine/gui_static/_next/static/0edhkwDxd5UccTsCmtaBi/_buildManifest.js +1 -0
- ciris_engine/gui_static/_next/static/0edhkwDxd5UccTsCmtaBi/_ssgManifest.js +1 -0
- ciris_engine/gui_static/_next/static/U-3xTQao7hc2wnAi-Uekm/_buildManifest.js +1 -0
- ciris_engine/gui_static/_next/static/U-3xTQao7hc2wnAi-Uekm/_ssgManifest.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/3297-60e86ba0f8a7b040.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/3835-2aad4b7f5f8e4643.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4499-99a0bc47de0b8975.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4534-af88cd4ba6e99bff.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4541-84b455f9e0dc4cfe.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4789-61412711484754bb.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/6539-c6398bc9d7018430.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/704-8e827b26cc8c2d32.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/704-fb45d630f3192c6f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8072-de4952a2e6d2b33f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8315-b91d03a3949db0af.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8386-f93a83ccbd789bd9.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/87c73c54-781a7f35148d5433.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8903-fefea3339a02d41b.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/9090-e66485adf8d9d990.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/_not-found/page-a67d9808462c23b1.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/api-keys/page-2d7ee1583bbbd02e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/api-keys/page-6a3c2bae6fe92b7b.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/consent/page-2ed3a035136bc4e8.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/consent/page-b2f5c91844a32422.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/page-25b90f89af3ea58c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/page-b65d16c94ecaf69c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/privacy/page-675b6d05c8f9184f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/privacy/page-cbee2e1c8ab52145.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/settings/page-0f44da06697cf9f0.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/settings/page-563420253577edbf.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/adapters/page-1854631018bc32be.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/agents/page-8353752c176a7c70.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/agents/page-f61a529f110a6040.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/api-demo/page-7f19b9d20d39be28.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/api-demo/page-d1063938f249b8bd.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/audit/page-321b6728b8fff0bb.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/audit/page-ebac35ca961a1277.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/billing/page-6f3dc3bd02924f8e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/billing/page-fa4a469f814c821a.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/comms/page-0d4f734269addd8f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/comms/page-79227d426050089c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/config/page-018d21d683b6e5bc.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/config/page-2aa5a5363ca2a371.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/consent/page-198373205fd316e2.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/consent/page-f2ca39e7713b13f8.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/dashboard/page-1dd5a196f643c60d.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/dashboard/page-530a04d3abbb8cda.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/docs/page-3193b06d094ab654.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/docs/page-330e996dedb87aba.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/layout-0a70f5fc460298b1.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/layout-21f2f99dd5b336e9.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/login/page-33240e6c6034a49d.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/login/page-68ffab6d54a7fdcd.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/logs/page-8a6167aecc4a475c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/memory/page-9ca8c5d0056de3ff.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/memory/page-e961226941c18f81.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/page-6fdb065a787a4974.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/page-89f87d431be6064a.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/runtime/page-2e728b9c43aa164d.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/runtime/page-c7dd033dc40a72f0.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/services/page-ae9f0bdf11d01a95.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/services/page-b10feb79ca5d75e5.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/sessions/page-13ebe7ef1c16ae11.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/sessions/page-e6c82b16d617f785.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/setup/page-0beb5f5b5a5c20fc.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/setup/page-2595e729eae30c0e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/status-dashboard/page-1037c987aecc3653.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/status-dashboard/page-2ffd147f6d3162ff.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/system/page-2c5798d58cafcd91.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/system/page-505b1ba4eceb01c3.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-auth/page-b0cad31d5cb1b2fa.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-auth/page-f3ecd7a8012df230.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-login/page-f35117fdc4105801.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-login/page-fb583a7924114906.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-sdk/page-50f116fd76935563.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-sdk/page-c37d8aa5ba623a44.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/tools/page-429aec7a707777ef.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/tools/page-5f705aad60e0c04e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/users/page-13476b8b0f3808cc.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/users/page-7e500d154ed5bba4.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/wa/page-cc4a9d8a5cb44d08.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/wa/page-ec3e429efbc79230.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/framework-9d29490f5ba089ba.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/main-1f554952e47a82c4.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/main-app-26fa8aed029082e5.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/main-app-97b0486ef6bcef25.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/pages/_app-6ce685456e616eb2.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/pages/_error-d4bce98d93fe21e7.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/webpack-fcebd240b7f8477d.js +1 -0
- ciris_engine/gui_static/_next/static/css/16b94b1fe0cc6e37.css +3 -0
- ciris_engine/gui_static/_next/static/css/77a24ceaae86deff.css +3 -0
- ciris_engine/gui_static/_next/static/media/4cf2300e9c8272f7-s.p.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/747892c23ea88013-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/8d697b304b401681-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/93f479601ee12b01-s.p.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/9610d9e46709d722-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/ba015fad6dcf6784-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/d8298875641ec7d4-s.p.woff2 +0 -0
- ciris_engine/gui_static/account/api-keys/index.html +1 -0
- ciris_engine/gui_static/account/api-keys/index.txt +27 -0
- ciris_engine/gui_static/account/consent/index.html +1 -0
- ciris_engine/gui_static/account/consent/index.txt +27 -0
- ciris_engine/gui_static/account/index.html +1 -0
- ciris_engine/gui_static/account/index.txt +27 -0
- ciris_engine/gui_static/account/privacy/index.html +1 -0
- ciris_engine/gui_static/account/privacy/index.txt +27 -0
- ciris_engine/gui_static/account/settings/index.html +1 -0
- ciris_engine/gui_static/account/settings/index.txt +27 -0
- ciris_engine/gui_static/adapters/index.html +1 -0
- ciris_engine/gui_static/adapters/index.txt +27 -0
- ciris_engine/gui_static/agents/index.html +1 -0
- ciris_engine/gui_static/agents/index.txt +27 -0
- ciris_engine/gui_static/andrew-roberts-euBRXcx57T4-unsplash.jpg +0 -0
- ciris_engine/gui_static/api-demo/index.html +1 -0
- ciris_engine/gui_static/api-demo/index.txt +27 -0
- ciris_engine/gui_static/audit/index.html +1 -0
- ciris_engine/gui_static/audit/index.txt +27 -0
- ciris_engine/gui_static/billing/index.html +1 -0
- ciris_engine/gui_static/billing/index.txt +27 -0
- ciris_engine/gui_static/blurryinfo.png +0 -0
- ciris_engine/gui_static/chip-vincent-PkQDwfl9Flc-unsplash.jpg +0 -0
- ciris_engine/gui_static/ciris-architecture.svg +338 -0
- ciris_engine/gui_static/comms/index.html +1 -0
- ciris_engine/gui_static/comms/index.txt +27 -0
- ciris_engine/gui_static/config/index.html +1 -0
- ciris_engine/gui_static/config/index.txt +27 -0
- ciris_engine/gui_static/consent/index.html +1 -0
- ciris_engine/gui_static/consent/index.txt +27 -0
- ciris_engine/gui_static/dashboard/index.html +1 -0
- ciris_engine/gui_static/dashboard/index.txt +27 -0
- ciris_engine/gui_static/docs/index.html +1 -0
- ciris_engine/gui_static/docs/index.txt +27 -0
- ciris_engine/gui_static/eric.png +0 -0
- ciris_engine/gui_static/file.svg +1 -0
- ciris_engine/gui_static/globe.svg +1 -0
- ciris_engine/gui_static/index.html +1 -0
- ciris_engine/gui_static/index.txt +27 -0
- ciris_engine/gui_static/infogfx-1@2x.png +0 -0
- ciris_engine/gui_static/infogfx-2.png +0 -0
- ciris_engine/gui_static/infogfx-dark-1.png +0 -0
- ciris_engine/gui_static/kelly-vohs-soSTXmIxTDU-unsplash.jpg +0 -0
- ciris_engine/gui_static/login/index.html +1 -0
- ciris_engine/gui_static/login/index.txt +27 -0
- ciris_engine/gui_static/logs/index.html +1 -0
- ciris_engine/gui_static/logs/index.txt +27 -0
- ciris_engine/gui_static/memory/index.html +1 -0
- ciris_engine/gui_static/memory/index.txt +27 -0
- ciris_engine/gui_static/nathan-farrish-ArcTfEoBgzs-unsplash.jpg +0 -0
- ciris_engine/gui_static/next.svg +1 -0
- ciris_engine/gui_static/overview.svg +512 -0
- ciris_engine/gui_static/overview1.svg +407 -0
- ciris_engine/gui_static/overview2.svg +370 -0
- ciris_engine/gui_static/pipeline-visualization.svg +278 -0
- ciris_engine/gui_static/privacy-policy.html +160 -0
- ciris_engine/gui_static/runtime/index.html +8 -0
- ciris_engine/gui_static/runtime/index.txt +27 -0
- ciris_engine/gui_static/services/index.html +1 -0
- ciris_engine/gui_static/services/index.txt +27 -0
- ciris_engine/gui_static/sessions/index.html +1 -0
- ciris_engine/gui_static/sessions/index.txt +27 -0
- ciris_engine/gui_static/setup/index.html +1 -0
- ciris_engine/gui_static/setup/index.txt +27 -0
- ciris_engine/gui_static/status-dashboard/index.html +1 -0
- ciris_engine/gui_static/status-dashboard/index.txt +27 -0
- ciris_engine/gui_static/system/index.html +1 -0
- ciris_engine/gui_static/system/index.txt +27 -0
- ciris_engine/gui_static/terms-of-service.html +174 -0
- ciris_engine/gui_static/test-auth/index.html +1 -0
- ciris_engine/gui_static/test-auth/index.txt +27 -0
- ciris_engine/gui_static/test-login/index.html +1 -0
- ciris_engine/gui_static/test-login/index.txt +27 -0
- ciris_engine/gui_static/test-sdk/index.html +1 -0
- ciris_engine/gui_static/test-sdk/index.txt +27 -0
- ciris_engine/gui_static/tools/index.html +1 -0
- ciris_engine/gui_static/tools/index.txt +27 -0
- ciris_engine/gui_static/users/index.html +1 -0
- ciris_engine/gui_static/users/index.txt +27 -0
- ciris_engine/gui_static/vercel.svg +1 -0
- ciris_engine/gui_static/videos/video1.mp4 +0 -0
- ciris_engine/gui_static/videos/video3.mp4 +0 -0
- ciris_engine/gui_static/wa/index.html +1 -0
- ciris_engine/gui_static/wa/index.txt +27 -0
- ciris_engine/gui_static/window.svg +1 -0
- ciris_engine/logic/__init__.py +8 -0
- ciris_engine/logic/adapters/__init__.py +74 -0
- ciris_engine/logic/adapters/api/__init__.py +5 -0
- ciris_engine/logic/adapters/api/adapter.py +1037 -0
- ciris_engine/logic/adapters/api/api_communication.py +370 -0
- ciris_engine/logic/adapters/api/api_document.py +330 -0
- ciris_engine/logic/adapters/api/api_observer.py +24 -0
- ciris_engine/logic/adapters/api/api_runtime_control.py +388 -0
- ciris_engine/logic/adapters/api/api_tools.py +299 -0
- ciris_engine/logic/adapters/api/api_vision.py +215 -0
- ciris_engine/logic/adapters/api/app.py +272 -0
- ciris_engine/logic/adapters/api/auth.py +159 -0
- ciris_engine/logic/adapters/api/config.py +101 -0
- ciris_engine/logic/adapters/api/constants.py +55 -0
- ciris_engine/logic/adapters/api/dependencies/__init__.py +1 -0
- ciris_engine/logic/adapters/api/dependencies/auth.py +260 -0
- ciris_engine/logic/adapters/api/endpoints/__init__.py +1 -0
- ciris_engine/logic/adapters/api/endpoints/emergency.py +86 -0
- ciris_engine/logic/adapters/api/middleware/__init__.py +1 -0
- ciris_engine/logic/adapters/api/middleware/rate_limiter.py +302 -0
- ciris_engine/logic/adapters/api/models.py +29 -0
- ciris_engine/logic/adapters/api/routes/__init__.py +52 -0
- ciris_engine/logic/adapters/api/routes/agent.py +1762 -0
- ciris_engine/logic/adapters/api/routes/audit.py +707 -0
- ciris_engine/logic/adapters/api/routes/auth.py +1745 -0
- ciris_engine/logic/adapters/api/routes/billing.py +895 -0
- ciris_engine/logic/adapters/api/routes/config.py +329 -0
- ciris_engine/logic/adapters/api/routes/connectors.py +534 -0
- ciris_engine/logic/adapters/api/routes/consent.py +637 -0
- ciris_engine/logic/adapters/api/routes/dsar.py +637 -0
- ciris_engine/logic/adapters/api/routes/dsar_multi_source.py +484 -0
- ciris_engine/logic/adapters/api/routes/emergency.py +302 -0
- ciris_engine/logic/adapters/api/routes/memory.py +733 -0
- ciris_engine/logic/adapters/api/routes/memory_filters.py +230 -0
- ciris_engine/logic/adapters/api/routes/memory_models.py +112 -0
- ciris_engine/logic/adapters/api/routes/memory_queries.py +236 -0
- ciris_engine/logic/adapters/api/routes/memory_query_helpers.py +394 -0
- ciris_engine/logic/adapters/api/routes/memory_visualization.py +359 -0
- ciris_engine/logic/adapters/api/routes/memory_visualization_helpers.py +110 -0
- ciris_engine/logic/adapters/api/routes/partnership.py +541 -0
- ciris_engine/logic/adapters/api/routes/setup.py +1374 -0
- ciris_engine/logic/adapters/api/routes/system.py +3049 -0
- ciris_engine/logic/adapters/api/routes/system_extensions.py +952 -0
- ciris_engine/logic/adapters/api/routes/telemetry.py +1987 -0
- ciris_engine/logic/adapters/api/routes/telemetry_converters.py +141 -0
- ciris_engine/logic/adapters/api/routes/telemetry_helpers.py +111 -0
- ciris_engine/logic/adapters/api/routes/telemetry_logs_reader.py +280 -0
- ciris_engine/logic/adapters/api/routes/telemetry_metrics.py +131 -0
- ciris_engine/logic/adapters/api/routes/telemetry_models.py +190 -0
- ciris_engine/logic/adapters/api/routes/telemetry_otlp.py +878 -0
- ciris_engine/logic/adapters/api/routes/telemetry_resource_helpers.py +191 -0
- ciris_engine/logic/adapters/api/routes/tickets.py +541 -0
- ciris_engine/logic/adapters/api/routes/tools.py +556 -0
- ciris_engine/logic/adapters/api/routes/transparency.py +281 -0
- ciris_engine/logic/adapters/api/routes/users.py +981 -0
- ciris_engine/logic/adapters/api/routes/verification.py +373 -0
- ciris_engine/logic/adapters/api/routes/wa.py +369 -0
- ciris_engine/logic/adapters/api/service_configuration.py +177 -0
- ciris_engine/logic/adapters/api/services/__init__.py +1 -0
- ciris_engine/logic/adapters/api/services/auth_service.py +1417 -0
- ciris_engine/logic/adapters/api/services/oauth_security.py +68 -0
- ciris_engine/logic/adapters/base.py +141 -0
- ciris_engine/logic/adapters/base_adapter.py +73 -0
- ciris_engine/logic/adapters/base_observer.py +1141 -0
- ciris_engine/logic/adapters/base_vision.py +312 -0
- ciris_engine/logic/adapters/cirisnode_client.py +307 -0
- ciris_engine/logic/adapters/cli/__init__.py +3 -0
- ciris_engine/logic/adapters/cli/adapter.py +207 -0
- ciris_engine/logic/adapters/cli/cli_adapter.py +902 -0
- ciris_engine/logic/adapters/cli/cli_observer.py +268 -0
- ciris_engine/logic/adapters/cli/cli_tools.py +427 -0
- ciris_engine/logic/adapters/cli/cli_wa_service.py +134 -0
- ciris_engine/logic/adapters/cli/config.py +73 -0
- ciris_engine/logic/adapters/discord/__init__.py +3 -0
- ciris_engine/logic/adapters/discord/adapter.py +783 -0
- ciris_engine/logic/adapters/discord/ciris_discord_client.py +159 -0
- ciris_engine/logic/adapters/discord/config.py +177 -0
- ciris_engine/logic/adapters/discord/constants.py +185 -0
- ciris_engine/logic/adapters/discord/discord-stubs.pyi +50 -0
- ciris_engine/logic/adapters/discord/discord_adapter.py +1584 -0
- ciris_engine/logic/adapters/discord/discord_audit.py +150 -0
- ciris_engine/logic/adapters/discord/discord_channel_manager.py +351 -0
- ciris_engine/logic/adapters/discord/discord_connection_manager.py +313 -0
- ciris_engine/logic/adapters/discord/discord_embed_formatter.py +369 -0
- ciris_engine/logic/adapters/discord/discord_error_classifier.py +302 -0
- ciris_engine/logic/adapters/discord/discord_error_handler.py +316 -0
- ciris_engine/logic/adapters/discord/discord_guidance_handler.py +460 -0
- ciris_engine/logic/adapters/discord/discord_message_handler.py +207 -0
- ciris_engine/logic/adapters/discord/discord_observer.py +670 -0
- ciris_engine/logic/adapters/discord/discord_rate_limiter.py +249 -0
- ciris_engine/logic/adapters/discord/discord_reaction_handler.py +278 -0
- ciris_engine/logic/adapters/discord/discord_tool_handler.py +465 -0
- ciris_engine/logic/adapters/discord/discord_tool_service.py +790 -0
- ciris_engine/logic/adapters/discord/discord_tools.py +90 -0
- ciris_engine/logic/adapters/discord/discord_vision_helper.py +148 -0
- ciris_engine/logic/adapters/discord/py.typed +0 -0
- ciris_engine/logic/adapters/document_parser.py +320 -0
- ciris_engine/logic/audit/__init__.py +10 -0
- ciris_engine/logic/audit/hash_chain.py +313 -0
- ciris_engine/logic/audit/signature_manager.py +352 -0
- ciris_engine/logic/audit/verifier.py +408 -0
- ciris_engine/logic/buses/__init__.py +21 -0
- ciris_engine/logic/buses/base_bus.py +178 -0
- ciris_engine/logic/buses/bus_manager.py +121 -0
- ciris_engine/logic/buses/communication_bus.py +387 -0
- ciris_engine/logic/buses/llm_bus.py +722 -0
- ciris_engine/logic/buses/memory_bus.py +577 -0
- ciris_engine/logic/buses/prohibitions.py +502 -0
- ciris_engine/logic/buses/runtime_control_bus.py +539 -0
- ciris_engine/logic/buses/tool_bus.py +482 -0
- ciris_engine/logic/buses/wise_bus.py +684 -0
- ciris_engine/logic/config/__init__.py +25 -0
- ciris_engine/logic/config/bootstrap.py +255 -0
- ciris_engine/logic/config/config_accessor.py +202 -0
- ciris_engine/logic/config/db_paths.py +194 -0
- ciris_engine/logic/config/env_utils.py +39 -0
- ciris_engine/logic/conscience/__init__.py +16 -0
- ciris_engine/logic/conscience/build_deferral_package.py +0 -0
- ciris_engine/logic/conscience/core.py +688 -0
- ciris_engine/logic/conscience/interface.py +33 -0
- ciris_engine/logic/conscience/registry.py +76 -0
- ciris_engine/logic/conscience/thought_depth_guardrail.py +231 -0
- ciris_engine/logic/conscience/updated_status_conscience.py +156 -0
- ciris_engine/logic/context/__init__.py +10 -0
- ciris_engine/logic/context/batch_context.py +550 -0
- ciris_engine/logic/context/builder.py +149 -0
- ciris_engine/logic/context/channel_resolution.py +136 -0
- ciris_engine/logic/context/secrets_snapshot.py +52 -0
- ciris_engine/logic/context/system_snapshot.py +116 -0
- ciris_engine/logic/context/system_snapshot_helpers.py +1651 -0
- ciris_engine/logic/covenant/__init__.py +33 -0
- ciris_engine/logic/covenant/executor.py +303 -0
- ciris_engine/logic/covenant/extractor.py +382 -0
- ciris_engine/logic/covenant/handler.py +241 -0
- ciris_engine/logic/covenant/verifier.py +383 -0
- ciris_engine/logic/dma/__init__.py +15 -0
- ciris_engine/logic/dma/action_selection/__init__.py +11 -0
- ciris_engine/logic/dma/action_selection/action_instruction_generator.py +444 -0
- ciris_engine/logic/dma/action_selection/context_builder.py +508 -0
- ciris_engine/logic/dma/action_selection/faculty_integration.py +193 -0
- ciris_engine/logic/dma/action_selection/special_cases.py +132 -0
- ciris_engine/logic/dma/action_selection_pdma.py +365 -0
- ciris_engine/logic/dma/base_dma.py +335 -0
- ciris_engine/logic/dma/csdma.py +239 -0
- ciris_engine/logic/dma/dma_executor.py +575 -0
- ciris_engine/logic/dma/dsdma_base.py +410 -0
- ciris_engine/logic/dma/exceptions.py +4 -0
- ciris_engine/logic/dma/factory.py +150 -0
- ciris_engine/logic/dma/pdma.py +120 -0
- ciris_engine/logic/dma/prompt_loader.py +189 -0
- ciris_engine/logic/dma/prompts/action_selection_pdma.yml +58 -0
- ciris_engine/logic/dma/prompts/csdma_common_sense.yml +28 -0
- ciris_engine/logic/dma/prompts/dsdma_base.yml +17 -0
- ciris_engine/logic/dma/prompts/pdma_ethical.yml +42 -0
- ciris_engine/logic/formatters/__init__.py +26 -0
- ciris_engine/logic/formatters/crisis_resources.py +80 -0
- ciris_engine/logic/formatters/escalation.py +21 -0
- ciris_engine/logic/formatters/identity.py +224 -0
- ciris_engine/logic/formatters/prompt_blocks.py +64 -0
- ciris_engine/logic/formatters/system_snapshot.py +193 -0
- ciris_engine/logic/formatters/user_profiles.py +108 -0
- ciris_engine/logic/handlers/__init__.py +1 -0
- ciris_engine/logic/handlers/control/__init__.py +1 -0
- ciris_engine/logic/handlers/control/defer_handler.py +195 -0
- ciris_engine/logic/handlers/control/ponder_handler.py +154 -0
- ciris_engine/logic/handlers/control/reject_handler.py +81 -0
- ciris_engine/logic/handlers/external/__init__.py +1 -0
- ciris_engine/logic/handlers/external/observe_handler.py +154 -0
- ciris_engine/logic/handlers/external/speak_handler.py +250 -0
- ciris_engine/logic/handlers/external/tool_handler.py +148 -0
- ciris_engine/logic/handlers/memory/__init__.py +1 -0
- ciris_engine/logic/handlers/memory/forget_handler.py +107 -0
- ciris_engine/logic/handlers/memory/memorize_handler.py +391 -0
- ciris_engine/logic/handlers/memory/recall_handler.py +213 -0
- ciris_engine/logic/handlers/terminal/__init__.py +1 -0
- ciris_engine/logic/handlers/terminal/task_complete_handler.py +299 -0
- ciris_engine/logic/infrastructure/__init__.py +1 -0
- ciris_engine/logic/infrastructure/handlers/__init__.py +8 -0
- ciris_engine/logic/infrastructure/handlers/action_dispatcher.py +382 -0
- ciris_engine/logic/infrastructure/handlers/base_handler.py +450 -0
- ciris_engine/logic/infrastructure/handlers/exceptions.py +2 -0
- ciris_engine/logic/infrastructure/handlers/handler_registry.py +59 -0
- ciris_engine/logic/infrastructure/handlers/helpers.py +55 -0
- ciris_engine/logic/infrastructure/step_streaming.py +149 -0
- ciris_engine/logic/infrastructure/sub_services/__init__.py +1 -0
- ciris_engine/logic/infrastructure/sub_services/identity_variance_monitor.py +1035 -0
- ciris_engine/logic/infrastructure/sub_services/pattern_analysis_loop.py +758 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_bootstrap.py +229 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_display.py +176 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_oauth.py +404 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_wizard.py +181 -0
- ciris_engine/logic/persistence/__init__.py +130 -0
- ciris_engine/logic/persistence/analytics.py +97 -0
- ciris_engine/logic/persistence/db/__init__.py +28 -0
- ciris_engine/logic/persistence/db/core.py +520 -0
- ciris_engine/logic/persistence/db/dialect.py +380 -0
- ciris_engine/logic/persistence/db/execution_helpers.py +216 -0
- ciris_engine/logic/persistence/db/migration_runner.py +191 -0
- ciris_engine/logic/persistence/db/operations.py +313 -0
- ciris_engine/logic/persistence/db/query_builder.py +232 -0
- ciris_engine/logic/persistence/db/retry.py +154 -0
- ciris_engine/logic/persistence/db/setup.py +18 -0
- ciris_engine/logic/persistence/migrations/postgres/001_initial_schema.sql +4 -0
- ciris_engine/logic/persistence/migrations/postgres/002_add_retry_status.sql +3 -0
- ciris_engine/logic/persistence/migrations/postgres/003_add_task_update_tracking.sql +8 -0
- ciris_engine/logic/persistence/migrations/postgres/004_add_occurrence_id.sql +54 -0
- ciris_engine/logic/persistence/migrations/postgres/005_add_consolidation_locks.sql +22 -0
- ciris_engine/logic/persistence/migrations/postgres/006_add_correlation_id_unique_index.sql +16 -0
- ciris_engine/logic/persistence/migrations/postgres/007_add_dsar_tickets.sql +39 -0
- ciris_engine/logic/persistence/migrations/postgres/008_rename_to_tickets_add_sop.sql +123 -0
- ciris_engine/logic/persistence/migrations/postgres/009_add_ticket_status_columns.sql +39 -0
- ciris_engine/logic/persistence/migrations/postgres/010_add_images_to_tasks.sql +5 -0
- ciris_engine/logic/persistence/migrations/sqlite/001_initial_schema.sql +357 -0
- ciris_engine/logic/persistence/migrations/sqlite/002_add_retry_status.sql +3 -0
- ciris_engine/logic/persistence/migrations/sqlite/003_add_task_update_tracking.sql +8 -0
- ciris_engine/logic/persistence/migrations/sqlite/004_add_occurrence_id.sql +45 -0
- ciris_engine/logic/persistence/migrations/sqlite/005_add_consolidation_locks.sql +22 -0
- ciris_engine/logic/persistence/migrations/sqlite/006_add_correlation_id_unique_index.sql +16 -0
- ciris_engine/logic/persistence/migrations/sqlite/007_add_dsar_tickets.sql +39 -0
- ciris_engine/logic/persistence/migrations/sqlite/008_rename_to_tickets_add_sop.sql +120 -0
- ciris_engine/logic/persistence/migrations/sqlite/009_add_ticket_status_columns.sql +129 -0
- ciris_engine/logic/persistence/migrations/sqlite/010_add_images_to_tasks.sql +17 -0
- ciris_engine/logic/persistence/models/__init__.py +141 -0
- ciris_engine/logic/persistence/models/correlations.py +881 -0
- ciris_engine/logic/persistence/models/deferral.py +68 -0
- ciris_engine/logic/persistence/models/dsar.py +286 -0
- ciris_engine/logic/persistence/models/graph.py +362 -0
- ciris_engine/logic/persistence/models/identity.py +264 -0
- ciris_engine/logic/persistence/models/queue_status.py +139 -0
- ciris_engine/logic/persistence/models/tasks.py +1043 -0
- ciris_engine/logic/persistence/models/thoughts.py +400 -0
- ciris_engine/logic/persistence/models/tickets.py +518 -0
- ciris_engine/logic/persistence/stores/__init__.py +13 -0
- ciris_engine/logic/persistence/stores/auth_helpers.py +117 -0
- ciris_engine/logic/persistence/stores/authentication_store.py +414 -0
- ciris_engine/logic/persistence/utils.py +212 -0
- ciris_engine/logic/processors/__init__.py +30 -0
- ciris_engine/logic/processors/core/__init__.py +1 -0
- ciris_engine/logic/processors/core/base_processor.py +280 -0
- ciris_engine/logic/processors/core/main_processor.py +1777 -0
- ciris_engine/logic/processors/core/step_decorators.py +1583 -0
- ciris_engine/logic/processors/core/thought_processor/__init__.py +20 -0
- ciris_engine/logic/processors/core/thought_processor/action_execution.py +49 -0
- ciris_engine/logic/processors/core/thought_processor/conscience_execution.py +382 -0
- ciris_engine/logic/processors/core/thought_processor/finalize_action.py +66 -0
- ciris_engine/logic/processors/core/thought_processor/gather_context.py +120 -0
- ciris_engine/logic/processors/core/thought_processor/main.py +920 -0
- ciris_engine/logic/processors/core/thought_processor/perform_aspdma.py +86 -0
- ciris_engine/logic/processors/core/thought_processor/perform_dmas.py +106 -0
- ciris_engine/logic/processors/core/thought_processor/recursive_processing.py +237 -0
- ciris_engine/logic/processors/core/thought_processor/round_complete.py +52 -0
- ciris_engine/logic/processors/core/thought_processor/start_round.py +64 -0
- ciris_engine/logic/processors/exceptions.py +59 -0
- ciris_engine/logic/processors/states/__init__.py +1 -0
- ciris_engine/logic/processors/states/dream_processor.py +1381 -0
- ciris_engine/logic/processors/states/play_processor.py +141 -0
- ciris_engine/logic/processors/states/shutdown_processor.py +623 -0
- ciris_engine/logic/processors/states/solitude_processor.py +305 -0
- ciris_engine/logic/processors/states/wakeup_processor.py +802 -0
- ciris_engine/logic/processors/states/work_processor.py +742 -0
- ciris_engine/logic/processors/support/__init__.py +1 -0
- ciris_engine/logic/processors/support/dma_orchestrator.py +336 -0
- ciris_engine/logic/processors/support/processing_queue.py +133 -0
- ciris_engine/logic/processors/support/shutdown_condition_evaluator.py +294 -0
- ciris_engine/logic/processors/support/state_manager.py +358 -0
- ciris_engine/logic/processors/support/task_manager.py +303 -0
- ciris_engine/logic/processors/support/thought_escalation.py +116 -0
- ciris_engine/logic/processors/support/thought_manager.py +328 -0
- ciris_engine/logic/processors/support/thought_manager_enhanced.py +105 -0
- ciris_engine/logic/registries/__init__.py +34 -0
- ciris_engine/logic/registries/base.py +653 -0
- ciris_engine/logic/registries/circuit_breaker.py +275 -0
- ciris_engine/logic/registries/typed_registries.py +184 -0
- ciris_engine/logic/runtime/__init__.py +7 -0
- ciris_engine/logic/runtime/adapter_loader.py +261 -0
- ciris_engine/logic/runtime/adapter_manager.py +1053 -0
- ciris_engine/logic/runtime/ciris_runtime.py +2342 -0
- ciris_engine/logic/runtime/ciris_runtime_helpers.py +923 -0
- ciris_engine/logic/runtime/component_builder.py +361 -0
- ciris_engine/logic/runtime/identity_manager.py +219 -0
- ciris_engine/logic/runtime/module_loader.py +207 -0
- ciris_engine/logic/runtime/prevent_sideeffects.py +30 -0
- ciris_engine/logic/runtime/runtime_interface.py +23 -0
- ciris_engine/logic/runtime/service_initializer.py +1623 -0
- ciris_engine/logic/secrets/__init__.py +30 -0
- ciris_engine/logic/secrets/encryption.py +175 -0
- ciris_engine/logic/secrets/filter.py +295 -0
- ciris_engine/logic/secrets/service.py +652 -0
- ciris_engine/logic/secrets/store.py +669 -0
- ciris_engine/logic/services/__init__.py +1 -0
- ciris_engine/logic/services/adaptation/__init__.py +3 -0
- ciris_engine/logic/services/base_graph_service.py +142 -0
- ciris_engine/logic/services/base_infrastructure_service.py +69 -0
- ciris_engine/logic/services/base_scheduled_service.py +136 -0
- ciris_engine/logic/services/base_service.py +247 -0
- ciris_engine/logic/services/governance/__init__.py +3 -0
- ciris_engine/logic/services/governance/adaptive_filter/__init__.py +14 -0
- ciris_engine/logic/services/governance/adaptive_filter/service.py +818 -0
- ciris_engine/logic/services/governance/consent/__init__.py +53 -0
- ciris_engine/logic/services/governance/consent/air.py +403 -0
- ciris_engine/logic/services/governance/consent/decay.py +324 -0
- ciris_engine/logic/services/governance/consent/dsar_automation.py +589 -0
- ciris_engine/logic/services/governance/consent/exceptions.py +106 -0
- ciris_engine/logic/services/governance/consent/metrics.py +270 -0
- ciris_engine/logic/services/governance/consent/partnership.py +533 -0
- ciris_engine/logic/services/governance/consent/service.py +1256 -0
- ciris_engine/logic/services/governance/dsar/__init__.py +29 -0
- ciris_engine/logic/services/governance/dsar/orchestrator.py +977 -0
- ciris_engine/logic/services/governance/dsar/schemas.py +141 -0
- ciris_engine/logic/services/governance/dsar/signature_service.py +283 -0
- ciris_engine/logic/services/governance/self_observation/__init__.py +20 -0
- ciris_engine/logic/services/governance/self_observation/service.py +1153 -0
- ciris_engine/logic/services/governance/visibility/__init__.py +17 -0
- ciris_engine/logic/services/governance/visibility/service.py +512 -0
- ciris_engine/logic/services/governance/wise_authority/__init__.py +15 -0
- ciris_engine/logic/services/governance/wise_authority/service.py +827 -0
- ciris_engine/logic/services/graph/__init__.py +5 -0
- ciris_engine/logic/services/graph/audit_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/audit_service/service.py +1675 -0
- ciris_engine/logic/services/graph/base.py +208 -0
- ciris_engine/logic/services/graph/config_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/config_service/service.py +372 -0
- ciris_engine/logic/services/graph/incident_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/incident_service/service.py +803 -0
- ciris_engine/logic/services/graph/memory_service.py +1120 -0
- ciris_engine/logic/services/graph/telemetry_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/telemetry_service/exceptions.py +104 -0
- ciris_engine/logic/services/graph/telemetry_service/helpers.py +1337 -0
- ciris_engine/logic/services/graph/telemetry_service/service.py +2429 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/__init__.py +17 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/aggregation_helpers.py +355 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/cleanup_helpers.py +438 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/compressor.py +260 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/__init__.py +27 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/audit.py +326 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/conversation.py +291 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/memory.py +197 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/metrics.py +251 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/task.py +257 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/trace.py +363 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/data_converter.py +545 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/date_calculation_helpers.py +193 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/db_query_helpers.py +296 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/edge_helpers.py +92 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/edge_manager.py +896 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/extensive_helpers.py +322 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/period_manager.py +152 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/profound_helpers.py +277 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/query_manager.py +812 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/service.py +1692 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/sql_builders.py +363 -0
- ciris_engine/logic/services/infrastructure/__init__.py +1 -0
- ciris_engine/logic/services/infrastructure/authentication/__init__.py +5 -0
- ciris_engine/logic/services/infrastructure/authentication/service.py +1634 -0
- ciris_engine/logic/services/infrastructure/database_maintenance/__init__.py +15 -0
- ciris_engine/logic/services/infrastructure/database_maintenance/service.py +764 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/__init__.py +7 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/ciris_billing_provider.py +755 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/service.py +409 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/simple_credit_provider.py +129 -0
- ciris_engine/logic/services/lifecycle/__init__.py +3 -0
- ciris_engine/logic/services/lifecycle/initialization/__init__.py +10 -0
- ciris_engine/logic/services/lifecycle/initialization/service.py +312 -0
- ciris_engine/logic/services/lifecycle/scheduler/__init__.py +5 -0
- ciris_engine/logic/services/lifecycle/scheduler/service.py +607 -0
- ciris_engine/logic/services/lifecycle/shutdown/__init__.py +9 -0
- ciris_engine/logic/services/lifecycle/shutdown/service.py +378 -0
- ciris_engine/logic/services/lifecycle/time/__init__.py +15 -0
- ciris_engine/logic/services/lifecycle/time/service.py +259 -0
- ciris_engine/logic/services/memory_service/__init__.py +8 -0
- ciris_engine/logic/services/mixins/__init__.py +13 -0
- ciris_engine/logic/services/mixins/example_usage.py +200 -0
- ciris_engine/logic/services/mixins/request_metrics.py +179 -0
- ciris_engine/logic/services/runtime/__init__.py +3 -0
- ciris_engine/logic/services/runtime/adapter_configuration/__init__.py +16 -0
- ciris_engine/logic/services/runtime/adapter_configuration/service.py +674 -0
- ciris_engine/logic/services/runtime/adapter_configuration/session.py +67 -0
- ciris_engine/logic/services/runtime/control_service/__init__.py +5 -0
- ciris_engine/logic/services/runtime/control_service/service.py +2269 -0
- ciris_engine/logic/services/runtime/llm_service/__init__.py +14 -0
- ciris_engine/logic/services/runtime/llm_service/pricing_calculator.py +279 -0
- ciris_engine/logic/services/runtime/llm_service/service.py +930 -0
- ciris_engine/logic/services/tools/__init__.py +5 -0
- ciris_engine/logic/services/tools/core_tool_service/__init__.py +8 -0
- ciris_engine/logic/services/tools/core_tool_service/service.py +852 -0
- ciris_engine/logic/setup/__init__.py +1 -0
- ciris_engine/logic/setup/first_run.py +250 -0
- ciris_engine/logic/setup/wizard.py +327 -0
- ciris_engine/logic/telemetry/__init__.py +46 -0
- ciris_engine/logic/telemetry/core.py +239 -0
- ciris_engine/logic/telemetry/hot_cold_config.py +133 -0
- ciris_engine/logic/telemetry/log_collector.py +190 -0
- ciris_engine/logic/telemetry/resource_monitor.py +7 -0
- ciris_engine/logic/telemetry/security.py +79 -0
- ciris_engine/logic/utils/__init__.py +18 -0
- ciris_engine/logic/utils/channel_utils.py +75 -0
- ciris_engine/logic/utils/consent/__init__.py +1 -0
- ciris_engine/logic/utils/consent/partnership_utils.py +172 -0
- ciris_engine/logic/utils/constants.py +92 -0
- ciris_engine/logic/utils/context_utils.py +145 -0
- ciris_engine/logic/utils/directory_setup.py +533 -0
- ciris_engine/logic/utils/graphql_context_provider.py +152 -0
- ciris_engine/logic/utils/identity_resolution.py +843 -0
- ciris_engine/logic/utils/incident_capture_handler.py +303 -0
- ciris_engine/logic/utils/initialization_manager.py +74 -0
- ciris_engine/logic/utils/jsondict_helpers.py +290 -0
- ciris_engine/logic/utils/log_sanitizer.py +97 -0
- ciris_engine/logic/utils/logging_config.py +151 -0
- ciris_engine/logic/utils/observability_decorators.py +544 -0
- ciris_engine/logic/utils/occurrence_utils.py +155 -0
- ciris_engine/logic/utils/path_resolution.py +281 -0
- ciris_engine/logic/utils/platform_detection.py +286 -0
- ciris_engine/logic/utils/privacy.py +266 -0
- ciris_engine/logic/utils/profile_loader.py +124 -0
- ciris_engine/logic/utils/profile_manager.py +16 -0
- ciris_engine/logic/utils/runtime_utils.py +69 -0
- ciris_engine/logic/utils/shutdown_manager.py +107 -0
- ciris_engine/logic/utils/task_formatters.py +60 -0
- ciris_engine/logic/utils/task_thought_factory.py +404 -0
- ciris_engine/logic/utils/thought_utils.py +54 -0
- ciris_engine/logic/utils/user_utils.py +70 -0
- ciris_engine/protocols/__init__.py +0 -0
- ciris_engine/protocols/adapters/__init__.py +35 -0
- ciris_engine/protocols/adapters/base.py +149 -0
- ciris_engine/protocols/adapters/configurable.py +265 -0
- ciris_engine/protocols/adapters/message.py +90 -0
- ciris_engine/protocols/audit/__init__.py +1 -0
- ciris_engine/protocols/buses/__init__.py +1 -0
- ciris_engine/protocols/config/__init__.py +1 -0
- ciris_engine/protocols/conscience/__init__.py +1 -0
- ciris_engine/protocols/consent.py +88 -0
- ciris_engine/protocols/context/__init__.py +1 -0
- ciris_engine/protocols/data/__init__.py +1 -0
- ciris_engine/protocols/dma/__init__.py +1 -0
- ciris_engine/protocols/dma/base.py +107 -0
- ciris_engine/protocols/faculties.py +34 -0
- ciris_engine/protocols/formatters/__init__.py +1 -0
- ciris_engine/protocols/handlers/__init__.py +1 -0
- ciris_engine/protocols/infrastructure/__init__.py +25 -0
- ciris_engine/protocols/infrastructure/base.py +377 -0
- ciris_engine/protocols/persistence/__init__.py +1 -0
- ciris_engine/protocols/pipeline_control.py +609 -0
- ciris_engine/protocols/processors/__init__.py +19 -0
- ciris_engine/protocols/processors/agent.py +299 -0
- ciris_engine/protocols/processors/base.py +130 -0
- ciris_engine/protocols/processors/orchestration.py +62 -0
- ciris_engine/protocols/registries/__init__.py +1 -0
- ciris_engine/protocols/runtime/__init__.py +1 -0
- ciris_engine/protocols/runtime/base.py +163 -0
- ciris_engine/protocols/secrets/__init__.py +1 -0
- ciris_engine/protocols/services/__init__.py +80 -0
- ciris_engine/protocols/services/adaptation/__init__.py +7 -0
- ciris_engine/protocols/services/adaptation/self_observation.py +265 -0
- ciris_engine/protocols/services/governance/__init__.py +20 -0
- ciris_engine/protocols/services/governance/communication.py +58 -0
- ciris_engine/protocols/services/governance/filter.py +56 -0
- ciris_engine/protocols/services/governance/visibility.py +32 -0
- ciris_engine/protocols/services/governance/wa_auth.py +192 -0
- ciris_engine/protocols/services/governance/wise_authority.py +75 -0
- ciris_engine/protocols/services/graph/__init__.py +19 -0
- ciris_engine/protocols/services/graph/audit.py +92 -0
- ciris_engine/protocols/services/graph/config.py +54 -0
- ciris_engine/protocols/services/graph/incident_management.py +103 -0
- ciris_engine/protocols/services/graph/memory.py +110 -0
- ciris_engine/protocols/services/graph/telemetry.py +51 -0
- ciris_engine/protocols/services/graph/tsdb_consolidation.py +87 -0
- ciris_engine/protocols/services/infrastructure/__init__.py +11 -0
- ciris_engine/protocols/services/infrastructure/authentication.py +159 -0
- ciris_engine/protocols/services/infrastructure/credit_gate.py +46 -0
- ciris_engine/protocols/services/infrastructure/database_maintenance.py +25 -0
- ciris_engine/protocols/services/infrastructure/resource_monitor.py +83 -0
- ciris_engine/protocols/services/lifecycle/__init__.py +13 -0
- ciris_engine/protocols/services/lifecycle/initialization.py +41 -0
- ciris_engine/protocols/services/lifecycle/scheduler.py +42 -0
- ciris_engine/protocols/services/lifecycle/shutdown.py +50 -0
- ciris_engine/protocols/services/lifecycle/time.py +31 -0
- ciris_engine/protocols/services/runtime/__init__.py +13 -0
- ciris_engine/protocols/services/runtime/llm.py +50 -0
- ciris_engine/protocols/services/runtime/runtime_control.py +193 -0
- ciris_engine/protocols/services/runtime/secrets.py +100 -0
- ciris_engine/protocols/services/runtime/tool.py +123 -0
- ciris_engine/protocols/telemetry/__init__.py +1 -0
- ciris_engine/protocols/utils/__init__.py +1 -0
- ciris_engine/schemas/__init__.py +112 -0
- ciris_engine/schemas/actions/__init__.py +37 -0
- ciris_engine/schemas/actions/parameters.py +137 -0
- ciris_engine/schemas/adapters/__init__.py +13 -0
- ciris_engine/schemas/adapters/cirisnode.py +135 -0
- ciris_engine/schemas/adapters/cli.py +97 -0
- ciris_engine/schemas/adapters/cli_tools.py +98 -0
- ciris_engine/schemas/adapters/discord.py +125 -0
- ciris_engine/schemas/adapters/graphql_core.py +144 -0
- ciris_engine/schemas/adapters/registration.py +47 -0
- ciris_engine/schemas/adapters/runtime_context.py +48 -0
- ciris_engine/schemas/adapters/tool_execution.py +45 -0
- ciris_engine/schemas/adapters/tools.py +96 -0
- ciris_engine/schemas/api/__init__.py +1 -0
- ciris_engine/schemas/api/agent.py +50 -0
- ciris_engine/schemas/api/audit.py +38 -0
- ciris_engine/schemas/api/auth.py +351 -0
- ciris_engine/schemas/api/config_security.py +242 -0
- ciris_engine/schemas/api/emergency.py +111 -0
- ciris_engine/schemas/api/responses.py +72 -0
- ciris_engine/schemas/api/runtime.py +26 -0
- ciris_engine/schemas/api/telemetry.py +109 -0
- ciris_engine/schemas/api/wa.py +90 -0
- ciris_engine/schemas/audit/__init__.py +13 -0
- ciris_engine/schemas/audit/core.py +139 -0
- ciris_engine/schemas/audit/hash_chain.py +58 -0
- ciris_engine/schemas/audit/verification.py +131 -0
- ciris_engine/schemas/buses/__init__.py +1 -0
- ciris_engine/schemas/config/__init__.py +41 -0
- ciris_engine/schemas/config/agent.py +279 -0
- ciris_engine/schemas/config/cognitive_state_behaviors.py +194 -0
- ciris_engine/schemas/config/default_dsar_sops.py +178 -0
- ciris_engine/schemas/config/essential.py +195 -0
- ciris_engine/schemas/config/tickets.py +86 -0
- ciris_engine/schemas/conscience/__init__.py +25 -0
- ciris_engine/schemas/conscience/context.py +34 -0
- ciris_engine/schemas/conscience/core.py +145 -0
- ciris_engine/schemas/conscience/results.py +24 -0
- ciris_engine/schemas/consent/__init__.py +5 -0
- ciris_engine/schemas/consent/core.py +404 -0
- ciris_engine/schemas/context/__init__.py +1 -0
- ciris_engine/schemas/covenant.py +382 -0
- ciris_engine/schemas/data/__init__.py +1 -0
- ciris_engine/schemas/dma/__init__.py +16 -0
- ciris_engine/schemas/dma/core.py +199 -0
- ciris_engine/schemas/dma/faculty.py +192 -0
- ciris_engine/schemas/dma/prompts.py +172 -0
- ciris_engine/schemas/dma/results.py +103 -0
- ciris_engine/schemas/formatters/__init__.py +1 -0
- ciris_engine/schemas/handlers/__init__.py +10 -0
- ciris_engine/schemas/handlers/context.py +119 -0
- ciris_engine/schemas/handlers/contexts.py +100 -0
- ciris_engine/schemas/handlers/core.py +167 -0
- ciris_engine/schemas/handlers/memory_schemas.py +67 -0
- ciris_engine/schemas/handlers/schemas.py +95 -0
- ciris_engine/schemas/identity.py +149 -0
- ciris_engine/schemas/infrastructure/__init__.py +1 -0
- ciris_engine/schemas/infrastructure/base.py +256 -0
- ciris_engine/schemas/infrastructure/behavioral_patterns.py +129 -0
- ciris_engine/schemas/infrastructure/feedback_loop.py +57 -0
- ciris_engine/schemas/infrastructure/identity_variance.py +141 -0
- ciris_engine/schemas/infrastructure/oauth.py +175 -0
- ciris_engine/schemas/infrastructure/wa_cli_wizard.py +54 -0
- ciris_engine/schemas/persistence/__init__.py +34 -0
- ciris_engine/schemas/persistence/core.py +140 -0
- ciris_engine/schemas/persistence/correlations.py +73 -0
- ciris_engine/schemas/persistence/postgres/__init__.py +1 -0
- ciris_engine/schemas/persistence/postgres/tables.py +280 -0
- ciris_engine/schemas/persistence/sqlite/__init__.py +1 -0
- ciris_engine/schemas/persistence/sqlite/tables.py +281 -0
- ciris_engine/schemas/platform.py +149 -0
- ciris_engine/schemas/processors/__init__.py +26 -0
- ciris_engine/schemas/processors/base.py +130 -0
- ciris_engine/schemas/processors/cognitive.py +77 -0
- ciris_engine/schemas/processors/context.py +35 -0
- ciris_engine/schemas/processors/core.py +152 -0
- ciris_engine/schemas/processors/dma.py +105 -0
- ciris_engine/schemas/processors/error.py +122 -0
- ciris_engine/schemas/processors/main.py +109 -0
- ciris_engine/schemas/processors/phase_results.py +21 -0
- ciris_engine/schemas/processors/results.py +99 -0
- ciris_engine/schemas/processors/solitude.py +79 -0
- ciris_engine/schemas/processors/state.py +202 -0
- ciris_engine/schemas/processors/state_example.py +177 -0
- ciris_engine/schemas/processors/states.py +21 -0
- ciris_engine/schemas/processors/status.py +34 -0
- ciris_engine/schemas/registries/__init__.py +1 -0
- ciris_engine/schemas/registries/base.py +66 -0
- ciris_engine/schemas/resources/__init__.py +15 -0
- ciris_engine/schemas/resources/crisis.py +315 -0
- ciris_engine/schemas/runtime/__init__.py +42 -0
- ciris_engine/schemas/runtime/adapter_management.py +186 -0
- ciris_engine/schemas/runtime/api.py +58 -0
- ciris_engine/schemas/runtime/audit.py +50 -0
- ciris_engine/schemas/runtime/bootstrap.py +33 -0
- ciris_engine/schemas/runtime/contexts.py +61 -0
- ciris_engine/schemas/runtime/core.py +161 -0
- ciris_engine/schemas/runtime/enums.py +167 -0
- ciris_engine/schemas/runtime/extended.py +232 -0
- ciris_engine/schemas/runtime/manifest.py +311 -0
- ciris_engine/schemas/runtime/memory.py +60 -0
- ciris_engine/schemas/runtime/messages.py +108 -0
- ciris_engine/schemas/runtime/models.py +156 -0
- ciris_engine/schemas/runtime/processing_context.py +43 -0
- ciris_engine/schemas/runtime/protocols_core.py +96 -0
- ciris_engine/schemas/runtime/resources.py +33 -0
- ciris_engine/schemas/runtime/system_context.py +417 -0
- ciris_engine/schemas/secrets/__init__.py +1 -0
- ciris_engine/schemas/secrets/core.py +267 -0
- ciris_engine/schemas/secrets/service.py +95 -0
- ciris_engine/schemas/services/__init__.py +33 -0
- ciris_engine/schemas/services/audit_summary_node.py +172 -0
- ciris_engine/schemas/services/authority/__init__.py +39 -0
- ciris_engine/schemas/services/authority/jwt.py +158 -0
- ciris_engine/schemas/services/authority/wa_updates.py +138 -0
- ciris_engine/schemas/services/authority/wise_authority.py +163 -0
- ciris_engine/schemas/services/authority_core.py +370 -0
- ciris_engine/schemas/services/capabilities.py +72 -0
- ciris_engine/schemas/services/community_core.py +95 -0
- ciris_engine/schemas/services/context.py +111 -0
- ciris_engine/schemas/services/conversation_summary_node.py +189 -0
- ciris_engine/schemas/services/core/__init__.py +153 -0
- ciris_engine/schemas/services/core/runtime.py +262 -0
- ciris_engine/schemas/services/core/runtime_config.py +117 -0
- ciris_engine/schemas/services/core/secrets.py +65 -0
- ciris_engine/schemas/services/correlation_node.py +179 -0
- ciris_engine/schemas/services/credit_gate.py +92 -0
- ciris_engine/schemas/services/discord_nodes.py +299 -0
- ciris_engine/schemas/services/feedback_core.py +131 -0
- ciris_engine/schemas/services/filters_core.py +270 -0
- ciris_engine/schemas/services/governance.py +26 -0
- ciris_engine/schemas/services/graph/__init__.py +26 -0
- ciris_engine/schemas/services/graph/attributes.py +254 -0
- ciris_engine/schemas/services/graph/audit.py +98 -0
- ciris_engine/schemas/services/graph/consolidation.py +338 -0
- ciris_engine/schemas/services/graph/edge_types.py +43 -0
- ciris_engine/schemas/services/graph/edges.py +88 -0
- ciris_engine/schemas/services/graph/incident.py +312 -0
- ciris_engine/schemas/services/graph/memory.py +84 -0
- ciris_engine/schemas/services/graph/node_data.py +174 -0
- ciris_engine/schemas/services/graph/query_results.py +82 -0
- ciris_engine/schemas/services/graph/telemetry.py +250 -0
- ciris_engine/schemas/services/graph/tsdb_consolidation.py +27 -0
- ciris_engine/schemas/services/graph/tsdb_models.py +107 -0
- ciris_engine/schemas/services/graph_core.py +196 -0
- ciris_engine/schemas/services/graph_typed_nodes.py +194 -0
- ciris_engine/schemas/services/infrastructure/__init__.py +1 -0
- ciris_engine/schemas/services/infrastructure/resource_monitor.py +20 -0
- ciris_engine/schemas/services/lifecycle/__init__.py +9 -0
- ciris_engine/schemas/services/lifecycle/initialization.py +33 -0
- ciris_engine/schemas/services/lifecycle/time.py +50 -0
- ciris_engine/schemas/services/llm.py +187 -0
- ciris_engine/schemas/services/metadata.py +43 -0
- ciris_engine/schemas/services/nodes.py +704 -0
- ciris_engine/schemas/services/operations.py +126 -0
- ciris_engine/schemas/services/requests.py +128 -0
- ciris_engine/schemas/services/resources_core.py +182 -0
- ciris_engine/schemas/services/runtime_control.py +1010 -0
- ciris_engine/schemas/services/shutdown.py +88 -0
- ciris_engine/schemas/services/special/__init__.py +0 -0
- ciris_engine/schemas/services/special/self_observation.py +396 -0
- ciris_engine/schemas/services/trace_summary_node.py +199 -0
- ciris_engine/schemas/services/visibility.py +98 -0
- ciris_engine/schemas/streaming/__init__.py +10 -0
- ciris_engine/schemas/streaming/reasoning_stream.py +95 -0
- ciris_engine/schemas/telemetry/__init__.py +0 -0
- ciris_engine/schemas/telemetry/collector.py +67 -0
- ciris_engine/schemas/telemetry/core.py +252 -0
- ciris_engine/schemas/telemetry/unified.py +59 -0
- ciris_engine/schemas/tools.py +72 -0
- ciris_engine/schemas/types.py +47 -0
- ciris_engine/schemas/utils/__init__.py +1 -0
- ciris_engine/schemas/utils/config_validator.py +54 -0
- ciris_engine/utils/__init__.py +1 -0
- ciris_engine/utils/serialization.py +35 -0
- ciris_sdk/__init__.py +124 -0
- ciris_sdk/auth_store.py +261 -0
- ciris_sdk/client.py +261 -0
- ciris_sdk/exceptions.py +73 -0
- ciris_sdk/model_types.py +258 -0
- ciris_sdk/models.py +354 -0
- ciris_sdk/pagination.py +214 -0
- ciris_sdk/rate_limiter.py +188 -0
- ciris_sdk/setup.py +17 -0
- ciris_sdk/telemetry_models.py +257 -0
- ciris_sdk/telemetry_responses.py +199 -0
- ciris_sdk/transport.py +177 -0
- ciris_sdk/websocket.py +400 -0
- main.py +766 -0
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
<svg width="1300" height="823" viewBox="0 0 1300 823" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2105_907)">
|
|
3
|
+
<path opacity="0.2" d="M-887 424L714.281 1348.5" stroke="#5F52FF" stroke-width="0.5"/>
|
|
4
|
+
<path opacity="0.2" d="M-874.189 416.604L727.092 1341.1" stroke="#5F52FF" stroke-width="0.5"/>
|
|
5
|
+
<path opacity="0.2" d="M-861.379 409.208L739.902 1333.71" stroke="#5F52FF" stroke-width="0.5"/>
|
|
6
|
+
<path opacity="0.2" d="M-848.569 401.812L752.712 1326.31" stroke="#5F52FF" stroke-width="0.5"/>
|
|
7
|
+
<path opacity="0.2" d="M-835.759 394.416L765.522 1318.92" stroke="#5F52FF" stroke-width="0.5"/>
|
|
8
|
+
<path opacity="0.2" d="M-822.948 387.02L778.333 1311.52" stroke="#5F52FF" stroke-width="0.5"/>
|
|
9
|
+
<path opacity="0.2" d="M-810.138 379.624L791.143 1304.12" stroke="#5F52FF" stroke-width="0.5"/>
|
|
10
|
+
<path opacity="0.2" d="M-797.328 372.228L803.953 1296.73" stroke="#5F52FF" stroke-width="0.5"/>
|
|
11
|
+
<path opacity="0.2" d="M-784.518 364.832L816.763 1289.33" stroke="#5F52FF" stroke-width="0.5"/>
|
|
12
|
+
<path opacity="0.2" d="M-771.707 357.436L829.574 1281.94" stroke="#5F52FF" stroke-width="0.5"/>
|
|
13
|
+
<path opacity="0.2" d="M-758.897 350.04L842.384 1274.54" stroke="#5F52FF" stroke-width="0.5"/>
|
|
14
|
+
<path opacity="0.2" d="M-746.087 342.644L855.194 1267.14" stroke="#5F52FF" stroke-width="0.5"/>
|
|
15
|
+
<path opacity="0.2" d="M-733.276 335.248L868.005 1259.75" stroke="#5F52FF" stroke-width="0.5"/>
|
|
16
|
+
<path opacity="0.2" d="M-720.467 327.852L880.814 1252.35" stroke="#5F52FF" stroke-width="0.5"/>
|
|
17
|
+
<path opacity="0.2" d="M-707.656 320.456L893.625 1244.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
18
|
+
<path opacity="0.2" d="M-694.846 313.06L906.435 1237.56" stroke="#5F52FF" stroke-width="0.5"/>
|
|
19
|
+
<path opacity="0.2" d="M-682.036 305.664L919.245 1230.16" stroke="#5F52FF" stroke-width="0.5"/>
|
|
20
|
+
<path opacity="0.2" d="M-669.226 298.268L932.055 1222.77" stroke="#5F52FF" stroke-width="0.5"/>
|
|
21
|
+
<path opacity="0.2" d="M-656.415 290.872L944.866 1215.37" stroke="#5F52FF" stroke-width="0.5"/>
|
|
22
|
+
<path opacity="0.2" d="M-643.604 283.476L957.676 1207.98" stroke="#5F52FF" stroke-width="0.5"/>
|
|
23
|
+
<path opacity="0.2" d="M-630.795 276.08L970.486 1200.58" stroke="#5F52FF" stroke-width="0.5"/>
|
|
24
|
+
<path opacity="0.2" d="M-617.984 268.684L983.297 1193.18" stroke="#5F52FF" stroke-width="0.5"/>
|
|
25
|
+
<path opacity="0.2" d="M-605.174 261.288L996.107 1185.79" stroke="#5F52FF" stroke-width="0.5"/>
|
|
26
|
+
<path opacity="0.2" d="M-592.364 253.892L1008.92 1178.39" stroke="#5F52FF" stroke-width="0.5"/>
|
|
27
|
+
<path opacity="0.2" d="M-579.554 246.496L1021.73 1171" stroke="#5F52FF" stroke-width="0.5"/>
|
|
28
|
+
<path opacity="0.2" d="M-566.743 239.1L1034.54 1163.6" stroke="#5F52FF" stroke-width="0.5"/>
|
|
29
|
+
<path opacity="0.2" d="M-553.934 231.704L1047.35 1156.2" stroke="#5F52FF" stroke-width="0.5"/>
|
|
30
|
+
<path opacity="0.2" d="M-541.123 224.308L1060.16 1148.81" stroke="#5F52FF" stroke-width="0.5"/>
|
|
31
|
+
<path opacity="0.2" d="M-528.312 216.912L1072.97 1141.41" stroke="#5F52FF" stroke-width="0.5"/>
|
|
32
|
+
<path opacity="0.2" d="M-515.503 209.516L1085.78 1134.02" stroke="#5F52FF" stroke-width="0.5"/>
|
|
33
|
+
<path opacity="0.2" d="M-502.692 202.12L1098.59 1126.62" stroke="#5F52FF" stroke-width="0.5"/>
|
|
34
|
+
<path opacity="0.2" d="M-489.882 194.724L1111.4 1119.22" stroke="#5F52FF" stroke-width="0.5"/>
|
|
35
|
+
<path opacity="0.2" d="M-477.072 187.328L1124.21 1111.83" stroke="#5F52FF" stroke-width="0.5"/>
|
|
36
|
+
<path opacity="0.2" d="M-464.262 179.932L1137.02 1104.43" stroke="#5F52FF" stroke-width="0.5"/>
|
|
37
|
+
<path opacity="0.2" d="M-451.451 172.536L1149.83 1097.04" stroke="#5F52FF" stroke-width="0.5"/>
|
|
38
|
+
<path opacity="0.2" d="M-438.642 165.14L1162.64 1089.64" stroke="#5F52FF" stroke-width="0.5"/>
|
|
39
|
+
<path opacity="0.2" d="M-425.831 157.744L1175.45 1082.24" stroke="#5F52FF" stroke-width="0.5"/>
|
|
40
|
+
<path opacity="0.2" d="M-413.021 150.348L1188.26 1074.85" stroke="#5F52FF" stroke-width="0.5"/>
|
|
41
|
+
<path opacity="0.2" d="M-400.21 142.952L1201.07 1067.45" stroke="#5F52FF" stroke-width="0.5"/>
|
|
42
|
+
<path opacity="0.2" d="M-387.4 135.556L1213.88 1060.06" stroke="#5F52FF" stroke-width="0.5"/>
|
|
43
|
+
<path opacity="0.2" d="M-374.59 128.16L1226.69 1052.66" stroke="#5F52FF" stroke-width="0.5"/>
|
|
44
|
+
<path opacity="0.2" d="M-361.779 120.764L1239.5 1045.26" stroke="#5F52FF" stroke-width="0.5"/>
|
|
45
|
+
<path opacity="0.2" d="M-348.97 113.368L1252.31 1037.87" stroke="#5F52FF" stroke-width="0.5"/>
|
|
46
|
+
<path opacity="0.2" d="M-336.159 105.972L1265.12 1030.47" stroke="#5F52FF" stroke-width="0.5"/>
|
|
47
|
+
<path opacity="0.2" d="M-323.349 98.5759L1277.93 1023.08" stroke="#5F52FF" stroke-width="0.5"/>
|
|
48
|
+
<path opacity="0.2" d="M-310.539 91.1799L1290.74 1015.68" stroke="#5F52FF" stroke-width="0.5"/>
|
|
49
|
+
<path opacity="0.2" d="M-297.729 83.7839L1303.55 1008.28" stroke="#5F52FF" stroke-width="0.5"/>
|
|
50
|
+
<path opacity="0.2" d="M-284.918 76.3879L1316.36 1000.89" stroke="#5F52FF" stroke-width="0.5"/>
|
|
51
|
+
<path opacity="0.2" d="M-272.107 68.9919L1329.17 993.492" stroke="#5F52FF" stroke-width="0.5"/>
|
|
52
|
+
<path opacity="0.2" d="M-259.298 61.5959L1341.98 986.096" stroke="#5F52FF" stroke-width="0.5"/>
|
|
53
|
+
<path opacity="0.2" d="M-246.487 54.2L1354.79 978.7" stroke="#5F52FF" stroke-width="0.5"/>
|
|
54
|
+
<path opacity="0.2" d="M-233.677 46.804L1367.6 971.304" stroke="#5F52FF" stroke-width="0.5"/>
|
|
55
|
+
<path opacity="0.2" d="M-220.867 39.408L1380.41 963.908" stroke="#5F52FF" stroke-width="0.5"/>
|
|
56
|
+
<path opacity="0.2" d="M-208.057 32.012L1393.22 956.512" stroke="#5F52FF" stroke-width="0.5"/>
|
|
57
|
+
<path opacity="0.2" d="M-195.246 24.616L1406.03 949.116" stroke="#5F52FF" stroke-width="0.5"/>
|
|
58
|
+
<path opacity="0.2" d="M-182.437 17.22L1418.84 941.72" stroke="#5F52FF" stroke-width="0.5"/>
|
|
59
|
+
<path opacity="0.2" d="M-169.626 9.82397L1431.66 934.324" stroke="#5F52FF" stroke-width="0.5"/>
|
|
60
|
+
<path opacity="0.2" d="M-156.815 2.42798L1444.47 926.928" stroke="#5F52FF" stroke-width="0.5"/>
|
|
61
|
+
<path opacity="0.2" d="M-144.005 -4.96802L1457.28 919.532" stroke="#5F52FF" stroke-width="0.5"/>
|
|
62
|
+
<path opacity="0.2" d="M-131.195 -12.364L1470.09 912.136" stroke="#5F52FF" stroke-width="0.5"/>
|
|
63
|
+
<path opacity="0.2" d="M-118.385 -19.76L1482.9 904.74" stroke="#5F52FF" stroke-width="0.5"/>
|
|
64
|
+
<path opacity="0.2" d="M-105.574 -27.156L1495.71 897.344" stroke="#5F52FF" stroke-width="0.5"/>
|
|
65
|
+
<path opacity="0.2" d="M-92.7646 -34.552L1508.52 889.948" stroke="#5F52FF" stroke-width="0.5"/>
|
|
66
|
+
<path opacity="0.2" d="M-79.9541 -41.948L1521.33 882.552" stroke="#5F52FF" stroke-width="0.5"/>
|
|
67
|
+
<path opacity="0.2" d="M-67.1436 -49.344L1534.14 875.156" stroke="#5F52FF" stroke-width="0.5"/>
|
|
68
|
+
<path opacity="0.2" d="M-54.334 -56.74L1546.95 867.76" stroke="#5F52FF" stroke-width="0.5"/>
|
|
69
|
+
<path opacity="0.2" d="M-41.5234 -64.136L1559.76 860.364" stroke="#5F52FF" stroke-width="0.5"/>
|
|
70
|
+
<path opacity="0.2" d="M-28.7129 -71.532L1572.57 852.968" stroke="#5F52FF" stroke-width="0.5"/>
|
|
71
|
+
<path opacity="0.2" d="M-15.9033 -78.928L1585.38 845.572" stroke="#5F52FF" stroke-width="0.5"/>
|
|
72
|
+
<path opacity="0.2" d="M-3.09277 -86.3242L1598.19 838.176" stroke="#5F52FF" stroke-width="0.5"/>
|
|
73
|
+
<path opacity="0.2" d="M9.71777 -93.72L1611 830.78" stroke="#5F52FF" stroke-width="0.5"/>
|
|
74
|
+
<path opacity="0.2" d="M22.5273 -101.116L1623.81 823.384" stroke="#5F52FF" stroke-width="0.5"/>
|
|
75
|
+
<path opacity="0.2" d="M35.3379 -108.512L1636.62 815.988" stroke="#5F52FF" stroke-width="0.5"/>
|
|
76
|
+
<path opacity="0.2" d="M48.1484 -115.908L1649.43 808.592" stroke="#5F52FF" stroke-width="0.5"/>
|
|
77
|
+
<path opacity="0.2" d="M60.958 -123.304L1662.24 801.196" stroke="#5F52FF" stroke-width="0.5"/>
|
|
78
|
+
<path opacity="0.2" d="M73.7686 -130.7L1675.05 793.8" stroke="#5F52FF" stroke-width="0.5"/>
|
|
79
|
+
<path opacity="0.2" d="M86.5791 -138.096L1687.86 786.404" stroke="#5F52FF" stroke-width="0.5"/>
|
|
80
|
+
<path opacity="0.2" d="M99.3887 -145.492L1700.67 779.008" stroke="#5F52FF" stroke-width="0.5"/>
|
|
81
|
+
<path opacity="0.2" d="M112.199 -152.888L1713.48 771.612" stroke="#5F52FF" stroke-width="0.5"/>
|
|
82
|
+
<path opacity="0.2" d="M125.01 -160.284L1726.29 764.216" stroke="#5F52FF" stroke-width="0.5"/>
|
|
83
|
+
<path opacity="0.2" d="M137.819 -167.68L1739.1 756.82" stroke="#5F52FF" stroke-width="0.5"/>
|
|
84
|
+
<path opacity="0.2" d="M150.63 -175.076L1751.91 749.424" stroke="#5F52FF" stroke-width="0.5"/>
|
|
85
|
+
<path opacity="0.2" d="M163.44 -182.472L1764.72 742.028" stroke="#5F52FF" stroke-width="0.5"/>
|
|
86
|
+
<path opacity="0.2" d="M176.25 -189.868L1777.53 734.632" stroke="#5F52FF" stroke-width="0.5"/>
|
|
87
|
+
<path opacity="0.2" d="M189.061 -197.264L1790.34 727.236" stroke="#5F52FF" stroke-width="0.5"/>
|
|
88
|
+
<path opacity="0.2" d="M201.871 -204.66L1803.15 719.84" stroke="#5F52FF" stroke-width="0.5"/>
|
|
89
|
+
<path opacity="0.2" d="M214.682 -212.056L1815.96 712.444" stroke="#5F52FF" stroke-width="0.5"/>
|
|
90
|
+
<path opacity="0.2" d="M227.491 -219.452L1828.77 705.048" stroke="#5F52FF" stroke-width="0.5"/>
|
|
91
|
+
<path opacity="0.2" d="M240.302 -226.848L1841.58 697.652" stroke="#5F52FF" stroke-width="0.5"/>
|
|
92
|
+
<path opacity="0.2" d="M253.112 -234.244L1854.39 690.256" stroke="#5F52FF" stroke-width="0.5"/>
|
|
93
|
+
<path opacity="0.2" d="M265.922 -241.64L1867.2 682.86" stroke="#5F52FF" stroke-width="0.5"/>
|
|
94
|
+
<path opacity="0.2" d="M278.732 -249.036L1880.01 675.464" stroke="#5F52FF" stroke-width="0.5"/>
|
|
95
|
+
<path opacity="0.2" d="M291.543 -256.432L1892.82 668.068" stroke="#5F52FF" stroke-width="0.5"/>
|
|
96
|
+
<path opacity="0.2" d="M304.353 -263.828L1905.63 660.672" stroke="#5F52FF" stroke-width="0.5"/>
|
|
97
|
+
<path opacity="0.2" d="M317.163 -271.224L1918.44 653.276" stroke="#5F52FF" stroke-width="0.5"/>
|
|
98
|
+
<path opacity="0.2" d="M329.974 -278.62L1931.25 645.88" stroke="#5F52FF" stroke-width="0.5"/>
|
|
99
|
+
<path opacity="0.2" d="M342.783 -286.016L1944.06 638.484" stroke="#5F52FF" stroke-width="0.5"/>
|
|
100
|
+
<path opacity="0.2" d="M355.594 -293.412L1956.87 631.088" stroke="#5F52FF" stroke-width="0.5"/>
|
|
101
|
+
<path opacity="0.2" d="M368.404 -300.808L1969.69 623.692" stroke="#5F52FF" stroke-width="0.5"/>
|
|
102
|
+
<path opacity="0.2" d="M381.214 -308.204L1982.49 616.296" stroke="#5F52FF" stroke-width="0.5"/>
|
|
103
|
+
<path opacity="0.2" d="M394.024 -315.6L1995.31 608.9" stroke="#5F52FF" stroke-width="0.5"/>
|
|
104
|
+
<path opacity="0.2" d="M406.835 -322.996L2008.12 601.504" stroke="#5F52FF" stroke-width="0.5"/>
|
|
105
|
+
<path opacity="0.2" d="M419.646 -330.392L2020.93 594.108" stroke="#5F52FF" stroke-width="0.5"/>
|
|
106
|
+
<path opacity="0.2" d="M432.455 -337.788L2033.74 586.712" stroke="#5F52FF" stroke-width="0.5"/>
|
|
107
|
+
<path opacity="0.2" d="M445.266 -345.184L2046.55 579.316" stroke="#5F52FF" stroke-width="0.5"/>
|
|
108
|
+
<path opacity="0.2" d="M458.076 -352.58L2059.36 571.92" stroke="#5F52FF" stroke-width="0.5"/>
|
|
109
|
+
<path opacity="0.2" d="M470.886 -359.976L2072.17 564.524" stroke="#5F52FF" stroke-width="0.5"/>
|
|
110
|
+
<path opacity="0.2" d="M483.696 -367.372L2084.98 557.128" stroke="#5F52FF" stroke-width="0.5"/>
|
|
111
|
+
<path opacity="0.2" d="M496.507 -374.768L2097.79 549.732" stroke="#5F52FF" stroke-width="0.5"/>
|
|
112
|
+
<path opacity="0.2" d="M509.316 -382.164L2110.6 542.336" stroke="#5F52FF" stroke-width="0.5"/>
|
|
113
|
+
<path opacity="0.2" d="M522.127 -389.56L2123.41 534.94" stroke="#5F52FF" stroke-width="0.5"/>
|
|
114
|
+
<path opacity="0.2" d="M534.938 -396.956L2136.22 527.544" stroke="#5F52FF" stroke-width="0.5"/>
|
|
115
|
+
<path opacity="0.2" d="M547.747 -404.352L2149.03 520.148" stroke="#5F52FF" stroke-width="0.5"/>
|
|
116
|
+
<path opacity="0.2" d="M560.558 -411.748L2161.84 512.752" stroke="#5F52FF" stroke-width="0.5"/>
|
|
117
|
+
<path opacity="0.2" d="M573.368 -419.144L2174.65 505.356" stroke="#5F52FF" stroke-width="0.5"/>
|
|
118
|
+
<path opacity="0.2" d="M586.178 -426.54L2187.46 497.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
119
|
+
<path opacity="0.2" d="M586.178 -426.54L-887.001 424" stroke="#5F52FF" stroke-width="0.5"/>
|
|
120
|
+
<path opacity="0.2" d="M598.988 -419.144L-874.19 431.396" stroke="#5F52FF" stroke-width="0.5"/>
|
|
121
|
+
<path opacity="0.2" d="M611.799 -411.748L-861.38 438.792" stroke="#5F52FF" stroke-width="0.5"/>
|
|
122
|
+
<path opacity="0.2" d="M624.608 -404.352L-848.57 446.188" stroke="#5F52FF" stroke-width="0.5"/>
|
|
123
|
+
<path opacity="0.2" d="M637.419 -396.956L-835.76 453.584" stroke="#5F52FF" stroke-width="0.5"/>
|
|
124
|
+
<path opacity="0.2" d="M650.229 -389.56L-822.949 460.98" stroke="#5F52FF" stroke-width="0.5"/>
|
|
125
|
+
<path opacity="0.2" d="M663.04 -382.164L-810.139 468.376" stroke="#5F52FF" stroke-width="0.5"/>
|
|
126
|
+
<path opacity="0.2" d="M675.85 -374.768L-797.329 475.772" stroke="#5F52FF" stroke-width="0.5"/>
|
|
127
|
+
<path opacity="0.2" d="M688.66 -367.372L-784.519 483.168" stroke="#5F52FF" stroke-width="0.5"/>
|
|
128
|
+
<path opacity="0.2" d="M701.471 -359.976L-771.708 490.564" stroke="#5F52FF" stroke-width="0.5"/>
|
|
129
|
+
<path opacity="0.2" d="M714.28 -352.58L-758.898 497.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
130
|
+
<path opacity="0.2" d="M727.091 -345.184L-746.088 505.356" stroke="#5F52FF" stroke-width="0.5"/>
|
|
131
|
+
<path opacity="0.2" d="M739.901 -337.788L-733.277 512.752" stroke="#5F52FF" stroke-width="0.5"/>
|
|
132
|
+
<path opacity="0.2" d="M752.711 -330.392L-720.468 520.148" stroke="#5F52FF" stroke-width="0.5"/>
|
|
133
|
+
<path opacity="0.2" d="M765.521 -322.996L-707.657 527.544" stroke="#5F52FF" stroke-width="0.5"/>
|
|
134
|
+
<path opacity="0.2" d="M778.332 -315.6L-694.847 534.94" stroke="#5F52FF" stroke-width="0.5"/>
|
|
135
|
+
<path opacity="0.2" d="M791.143 -308.204L-682.036 542.336" stroke="#5F52FF" stroke-width="0.5"/>
|
|
136
|
+
<path opacity="0.2" d="M803.952 -300.808L-669.227 549.732" stroke="#5F52FF" stroke-width="0.5"/>
|
|
137
|
+
<path opacity="0.2" d="M816.763 -293.412L-656.416 557.128" stroke="#5F52FF" stroke-width="0.5"/>
|
|
138
|
+
<path opacity="0.2" d="M829.573 -286.016L-643.605 564.524" stroke="#5F52FF" stroke-width="0.5"/>
|
|
139
|
+
<path opacity="0.2" d="M842.383 -278.62L-630.796 571.92" stroke="#5F52FF" stroke-width="0.5"/>
|
|
140
|
+
<path opacity="0.2" d="M855.193 -271.224L-617.985 579.316" stroke="#5F52FF" stroke-width="0.5"/>
|
|
141
|
+
<path opacity="0.2" d="M868.004 -263.828L-605.175 586.712" stroke="#5F52FF" stroke-width="0.5"/>
|
|
142
|
+
<path opacity="0.2" d="M880.813 -256.432L-592.365 594.108" stroke="#5F52FF" stroke-width="0.5"/>
|
|
143
|
+
<path opacity="0.2" d="M893.624 -249.036L-579.555 601.504" stroke="#5F52FF" stroke-width="0.5"/>
|
|
144
|
+
<path opacity="0.2" d="M906.435 -241.64L-566.744 608.9" stroke="#5F52FF" stroke-width="0.5"/>
|
|
145
|
+
<path opacity="0.2" d="M919.244 -234.244L-553.935 616.296" stroke="#5F52FF" stroke-width="0.5"/>
|
|
146
|
+
<path opacity="0.2" d="M932.055 -226.848L-541.124 623.692" stroke="#5F52FF" stroke-width="0.5"/>
|
|
147
|
+
<path opacity="0.2" d="M944.865 -219.452L-528.313 631.088" stroke="#5F52FF" stroke-width="0.5"/>
|
|
148
|
+
<path opacity="0.2" d="M957.675 -212.056L-515.504 638.484" stroke="#5F52FF" stroke-width="0.5"/>
|
|
149
|
+
<path opacity="0.2" d="M970.485 -204.66L-502.693 645.88" stroke="#5F52FF" stroke-width="0.5"/>
|
|
150
|
+
<path opacity="0.2" d="M983.296 -197.264L-489.883 653.276" stroke="#5F52FF" stroke-width="0.5"/>
|
|
151
|
+
<path opacity="0.2" d="M996.106 -189.868L-477.072 660.672" stroke="#5F52FF" stroke-width="0.5"/>
|
|
152
|
+
<path opacity="0.2" d="M1008.92 -182.472L-464.263 668.068" stroke="#5F52FF" stroke-width="0.5"/>
|
|
153
|
+
<path opacity="0.2" d="M1021.73 -175.076L-451.452 675.464" stroke="#5F52FF" stroke-width="0.5"/>
|
|
154
|
+
<path opacity="0.2" d="M1034.54 -167.68L-438.642 682.86" stroke="#5F52FF" stroke-width="0.5"/>
|
|
155
|
+
<path opacity="0.2" d="M1047.35 -160.284L-425.832 690.256" stroke="#5F52FF" stroke-width="0.5"/>
|
|
156
|
+
<path opacity="0.2" d="M1060.16 -152.888L-413.021 697.652" stroke="#5F52FF" stroke-width="0.5"/>
|
|
157
|
+
<path opacity="0.2" d="M1072.97 -145.492L-400.211 705.048" stroke="#5F52FF" stroke-width="0.5"/>
|
|
158
|
+
<path opacity="0.2" d="M1085.78 -138.096L-387.401 712.444" stroke="#5F52FF" stroke-width="0.5"/>
|
|
159
|
+
<path opacity="0.2" d="M1098.59 -130.7L-374.591 719.84" stroke="#5F52FF" stroke-width="0.5"/>
|
|
160
|
+
<path opacity="0.2" d="M1111.4 -123.304L-361.78 727.236" stroke="#5F52FF" stroke-width="0.5"/>
|
|
161
|
+
<path opacity="0.2" d="M1124.21 -115.908L-348.97 734.632" stroke="#5F52FF" stroke-width="0.5"/>
|
|
162
|
+
<path opacity="0.2" d="M1137.02 -108.512L-336.16 742.028" stroke="#5F52FF" stroke-width="0.5"/>
|
|
163
|
+
<path opacity="0.2" d="M1149.83 -101.116L-323.35 749.424" stroke="#5F52FF" stroke-width="0.5"/>
|
|
164
|
+
<path opacity="0.2" d="M1162.64 -93.72L-310.539 756.82" stroke="#5F52FF" stroke-width="0.5"/>
|
|
165
|
+
<path opacity="0.2" d="M1175.45 -86.324L-297.729 764.216" stroke="#5F52FF" stroke-width="0.5"/>
|
|
166
|
+
<path opacity="0.2" d="M1188.26 -78.928L-284.919 771.612" stroke="#5F52FF" stroke-width="0.5"/>
|
|
167
|
+
<path opacity="0.2" d="M1201.07 -71.532L-272.108 779.008" stroke="#5F52FF" stroke-width="0.5"/>
|
|
168
|
+
<path opacity="0.2" d="M1213.88 -64.136L-259.299 786.404" stroke="#5F52FF" stroke-width="0.5"/>
|
|
169
|
+
<path opacity="0.2" d="M1226.69 -56.74L-246.488 793.8" stroke="#5F52FF" stroke-width="0.5"/>
|
|
170
|
+
<path opacity="0.2" d="M1239.5 -49.344L-233.678 801.196" stroke="#5F52FF" stroke-width="0.5"/>
|
|
171
|
+
<path opacity="0.2" d="M1252.31 -41.948L-220.868 808.592" stroke="#5F52FF" stroke-width="0.5"/>
|
|
172
|
+
<path opacity="0.2" d="M1265.12 -34.552L-208.058 815.988" stroke="#5F52FF" stroke-width="0.5"/>
|
|
173
|
+
<path opacity="0.2" d="M1277.93 -27.156L-195.247 823.384" stroke="#5F52FF" stroke-width="0.5"/>
|
|
174
|
+
<path opacity="0.2" d="M1290.74 -19.76L-182.436 830.78" stroke="#5F52FF" stroke-width="0.5"/>
|
|
175
|
+
<path opacity="0.2" d="M1303.55 -12.364L-169.627 838.176" stroke="#5F52FF" stroke-width="0.5"/>
|
|
176
|
+
<path opacity="0.2" d="M1316.36 -4.96802L-156.816 845.572" stroke="#5F52FF" stroke-width="0.5"/>
|
|
177
|
+
<path opacity="0.2" d="M1329.17 2.42798L-144.006 852.968" stroke="#5F52FF" stroke-width="0.5"/>
|
|
178
|
+
<path opacity="0.2" d="M1341.98 9.82397L-131.196 860.364" stroke="#5F52FF" stroke-width="0.5"/>
|
|
179
|
+
<path opacity="0.2" d="M1354.79 17.22L-118.386 867.76" stroke="#5F52FF" stroke-width="0.5"/>
|
|
180
|
+
<path opacity="0.2" d="M1367.6 24.616L-105.575 875.156" stroke="#5F52FF" stroke-width="0.5"/>
|
|
181
|
+
<path opacity="0.2" d="M1380.41 32.012L-92.7656 882.552" stroke="#5F52FF" stroke-width="0.5"/>
|
|
182
|
+
<path opacity="0.2" d="M1393.22 39.408L-79.955 889.948" stroke="#5F52FF" stroke-width="0.5"/>
|
|
183
|
+
<path opacity="0.2" d="M1406.03 46.804L-67.1445 897.344" stroke="#5F52FF" stroke-width="0.5"/>
|
|
184
|
+
<path opacity="0.2" d="M1418.84 54.2002L-54.3349 904.74" stroke="#5F52FF" stroke-width="0.5"/>
|
|
185
|
+
<path opacity="0.2" d="M1431.65 61.5962L-41.5244 912.136" stroke="#5F52FF" stroke-width="0.5"/>
|
|
186
|
+
<path opacity="0.2" d="M1444.46 68.9922L-28.7138 919.532" stroke="#5F52FF" stroke-width="0.5"/>
|
|
187
|
+
<path opacity="0.2" d="M1457.28 76.3882L-15.9033 926.928" stroke="#5F52FF" stroke-width="0.5"/>
|
|
188
|
+
<path opacity="0.2" d="M1470.08 83.7842L-3.09371 934.324" stroke="#5F52FF" stroke-width="0.5"/>
|
|
189
|
+
<path opacity="0.2" d="M1482.9 91.1802L9.71684 941.72" stroke="#5F52FF" stroke-width="0.5"/>
|
|
190
|
+
<path opacity="0.2" d="M1495.71 98.5762L22.5274 949.116" stroke="#5F52FF" stroke-width="0.5"/>
|
|
191
|
+
<path opacity="0.2" d="M1508.52 105.972L35.337 956.512" stroke="#5F52FF" stroke-width="0.5"/>
|
|
192
|
+
<path opacity="0.2" d="M1521.33 113.368L48.1475 963.908" stroke="#5F52FF" stroke-width="0.5"/>
|
|
193
|
+
<path opacity="0.2" d="M1534.14 120.764L60.958 971.304" stroke="#5F52FF" stroke-width="0.5"/>
|
|
194
|
+
<path opacity="0.2" d="M1546.95 128.16L73.7676 978.7" stroke="#5F52FF" stroke-width="0.5"/>
|
|
195
|
+
<path opacity="0.2" d="M1559.76 135.556L86.5782 986.096" stroke="#5F52FF" stroke-width="0.5"/>
|
|
196
|
+
<path opacity="0.2" d="M1572.57 142.952L99.3887 993.492" stroke="#5F52FF" stroke-width="0.5"/>
|
|
197
|
+
<path opacity="0.2" d="M1572.57 142.956L99.4649 993.456" stroke="#5F52FF" stroke-width="0.5"/>
|
|
198
|
+
<path opacity="0.2" d="M1585.56 150.456L112.455 1000.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
199
|
+
<path opacity="0.2" d="M1598.55 157.956L125.445 1008.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
200
|
+
<path opacity="0.2" d="M1610.68 164.956L137.569 1015.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
201
|
+
<path opacity="0.2" d="M1623.67 172.456L150.561 1022.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
202
|
+
<path opacity="0.2" d="M1636.66 179.956L163.551 1030.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
203
|
+
<path opacity="0.2" d="M1649.65 187.456L176.541 1037.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
204
|
+
<path opacity="0.2" d="M1662.64 194.956L189.531 1045.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
205
|
+
<path opacity="0.2" d="M1674.76 201.956L201.655 1052.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
206
|
+
<path opacity="0.2" d="M1687.75 209.456L214.646 1059.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
207
|
+
<path opacity="0.2" d="M1700.75 216.956L227.637 1067.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
208
|
+
<path opacity="0.2" d="M1713.74 224.456L240.627 1074.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
209
|
+
<path opacity="0.2" d="M1725.86 231.456L252.751 1081.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
210
|
+
<path opacity="0.2" d="M1738.85 238.956L265.741 1089.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
211
|
+
<path opacity="0.2" d="M1751.84 246.456L278.732 1096.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
212
|
+
<path opacity="0.2" d="M1764.83 253.956L291.723 1104.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
213
|
+
<path opacity="0.2" d="M1777.82 261.456L304.713 1111.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
214
|
+
<path opacity="0.2" d="M1789.95 268.456L316.837 1118.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
215
|
+
<path opacity="0.2" d="M1802.94 275.956L329.827 1126.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
216
|
+
<path opacity="0.2" d="M1815.93 283.456L342.817 1133.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
217
|
+
<path opacity="0.2" d="M1828.92 290.956L355.809 1141.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
218
|
+
<path opacity="0.2" d="M1841.91 298.456L368.799 1148.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
219
|
+
<path opacity="0.2" d="M1854.03 305.456L380.923 1155.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
220
|
+
<path opacity="0.2" d="M1867.02 312.956L393.913 1163.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
221
|
+
<path opacity="0.2" d="M1880.01 320.456L406.903 1170.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
222
|
+
<path opacity="0.2" d="M1893 327.956L419.894 1178.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
223
|
+
<path opacity="0.2" d="M1905.99 335.456L432.885 1185.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
224
|
+
<path opacity="0.2" d="M1918.12 342.456L445.009 1192.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
225
|
+
<path opacity="0.2" d="M1931.11 349.956L457.999 1200.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
226
|
+
<path opacity="0.2" d="M1944.1 357.456L470.989 1207.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
227
|
+
<path opacity="0.2" d="M1957.09 364.956L483.98 1215.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
228
|
+
<path opacity="0.2" d="M1970.08 372.456L496.971 1222.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
229
|
+
<path opacity="0.2" d="M1982.2 379.456L509.095 1229.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
230
|
+
<path opacity="0.2" d="M1995.19 386.956L522.085 1237.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
231
|
+
<path opacity="0.2" d="M2008.18 394.456L535.075 1244.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
232
|
+
<path opacity="0.2" d="M2021.17 401.956L548.065 1252.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
233
|
+
<path opacity="0.2" d="M2033.3 408.956L560.19 1259.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
234
|
+
<path opacity="0.2" d="M2046.29 416.456L573.181 1266.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
235
|
+
<path opacity="0.2" d="M2059.28 423.956L586.171 1274.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
236
|
+
<path opacity="0.2" d="M2072.27 431.456L599.161 1281.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
237
|
+
<path opacity="0.2" d="M2085.26 438.956L612.151 1289.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
238
|
+
<path opacity="0.2" d="M2097.39 445.956L624.276 1296.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
239
|
+
<path opacity="0.2" d="M2110.38 453.456L637.267 1303.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
240
|
+
<path opacity="0.2" d="M2123.37 460.956L650.257 1311.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
241
|
+
<path opacity="0.2" d="M2136.36 468.456L663.247 1318.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
242
|
+
<path opacity="0.2" d="M2149.35 475.956L676.237 1326.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
243
|
+
<path opacity="0.2" d="M2161.47 482.956L688.362 1333.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
244
|
+
<path opacity="0.2" d="M2174.46 490.456L701.353 1340.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
245
|
+
<path opacity="0.2" d="M2187.45 497.956L714.343 1348.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
246
|
+
<path d="M894 309V471" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
247
|
+
<path d="M901 309V471" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
248
|
+
<path d="M887 309V471" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
249
|
+
<path d="M875.715 656.277C874.991 655.859 874.369 655.32 873.848 654.66C873.334 653.996 872.943 653.276 872.676 652.498C872.416 651.725 872.286 650.96 872.286 650.205C872.286 649.442 872.416 648.828 872.676 648.362C872.943 647.893 873.334 647.627 873.848 647.565C874.369 647.499 874.991 647.675 875.715 648.093C876.274 648.416 876.773 648.828 877.211 649.331C877.649 649.833 878.002 650.385 878.268 650.986C878.535 651.587 878.71 652.194 878.792 652.806L877.382 651.992C877.319 651.655 877.211 651.329 877.058 651.014C876.912 650.702 876.722 650.416 876.487 650.155C876.258 649.899 876.001 649.688 875.715 649.523C875.271 649.266 874.899 649.169 874.601 649.231C874.302 649.294 874.083 649.486 873.943 649.809C873.804 650.124 873.734 650.535 873.734 651.041C873.734 651.54 873.804 652.031 873.943 652.515C874.083 652.992 874.302 653.437 874.601 653.851C874.899 654.259 875.271 654.59 875.715 654.847C876.026 655.027 876.3 655.111 876.535 655.1C876.769 655.089 876.96 654.997 877.106 654.825C877.259 654.656 877.36 654.422 877.411 654.121L878.811 654.93C878.748 655.487 878.583 655.927 878.316 656.25C878.056 656.576 877.7 656.745 877.249 656.755C876.804 656.77 876.293 656.611 875.715 656.277ZM881.918 659.858C881.397 659.557 880.943 659.167 880.556 658.687C880.175 658.203 879.883 657.678 879.679 657.114C879.482 656.545 879.384 655.975 879.384 655.403C879.384 654.831 879.482 654.375 879.679 654.034C879.883 653.696 880.175 653.509 880.556 653.473C880.943 653.44 881.397 653.573 881.918 653.874C882.445 654.178 882.899 654.569 883.28 655.046C883.668 655.526 883.96 656.05 884.157 656.619C884.354 657.187 884.452 657.757 884.452 658.329C884.452 658.901 884.354 659.358 884.157 659.699C883.96 660.032 883.668 660.219 883.28 660.26C882.899 660.296 882.445 660.162 881.918 659.858ZM881.918 658.626C882.197 658.787 882.426 658.846 882.604 658.802C882.788 658.762 882.921 658.637 883.004 658.428C883.093 658.215 883.137 657.929 883.137 657.57C883.137 657.211 883.093 656.873 883.004 656.558C882.921 656.246 882.788 655.968 882.604 655.722C882.426 655.473 882.197 655.267 881.918 655.106C881.645 654.948 881.416 654.89 881.232 654.93C881.054 654.967 880.921 655.091 880.832 655.304C880.743 655.517 880.699 655.803 880.699 656.162C880.699 656.521 880.743 656.859 880.832 657.174C880.921 657.482 881.054 657.761 881.232 658.01C881.416 658.263 881.645 658.468 881.918 658.626ZM885.231 655.919L886.489 656.645L886.489 657.459C886.654 657.261 886.857 657.147 887.098 657.118C887.34 657.089 887.629 657.171 887.965 657.366C888.308 657.564 888.603 657.826 888.851 658.152C889.099 658.478 889.289 658.852 889.423 659.274C889.607 659.058 889.836 658.933 890.109 658.9C890.388 658.863 890.706 658.948 891.061 659.153C891.404 659.351 891.7 659.613 891.947 659.94C892.201 660.27 892.395 660.645 892.528 661.067C892.662 661.489 892.728 661.934 892.728 662.404L892.728 665.968L891.433 665.22L891.433 661.832C891.433 661.48 891.366 661.159 891.233 660.869C891.099 660.579 890.896 660.356 890.623 660.198C890.35 660.04 890.115 660.015 889.918 660.121C889.728 660.231 889.632 660.539 889.632 661.045L889.632 664.18L888.337 663.432L888.337 660.044C888.337 659.692 888.267 659.369 888.127 659.076C887.994 658.786 887.794 658.565 887.527 658.411C887.248 658.249 887.009 658.222 886.813 658.328C886.622 658.438 886.527 658.746 886.527 659.252L886.527 662.387L885.231 661.639L885.231 655.919ZM893.716 660.817L894.973 661.543L894.973 662.357C895.138 662.159 895.341 662.046 895.583 662.016C895.824 661.987 896.113 662.07 896.45 662.264C896.793 662.462 897.088 662.724 897.336 663.05C897.583 663.377 897.774 663.751 897.907 664.172C898.091 663.956 898.32 663.831 898.593 663.798C898.872 663.762 899.19 663.846 899.546 664.051C899.889 664.249 900.184 664.512 900.432 664.838C900.686 665.168 900.879 665.544 901.013 665.965C901.146 666.387 901.213 666.833 901.213 667.302L901.213 670.866L899.917 670.118L899.917 666.73C899.917 666.378 899.85 666.057 899.717 665.767C899.584 665.478 899.38 665.254 899.107 665.096C898.834 664.939 898.599 664.913 898.402 665.019C898.212 665.129 898.117 665.437 898.117 665.943L898.117 669.078L896.821 668.33L896.821 664.942C896.821 664.59 896.751 664.268 896.612 663.974C896.478 663.685 896.278 663.463 896.011 663.309C895.732 663.148 895.494 663.12 895.297 663.226C895.106 663.336 895.011 663.644 895.011 664.15L895.011 667.285L893.716 666.537L893.716 660.817ZM904.524 672.91C904.004 672.609 903.549 672.219 903.162 671.738C902.781 671.254 902.489 670.73 902.286 670.165C902.089 669.597 901.99 669.027 901.99 668.455C901.99 667.883 902.089 667.426 902.286 667.085C902.489 666.748 902.781 666.561 903.162 666.524C903.549 666.491 904.004 666.625 904.524 666.926C905.051 667.23 905.505 667.621 905.887 668.097C906.274 668.578 906.566 669.102 906.763 669.67C906.96 670.239 907.058 670.809 907.058 671.381C907.058 671.953 906.96 672.409 906.763 672.75C906.566 673.084 906.274 673.271 905.887 673.311C905.505 673.348 905.051 673.214 904.524 672.91ZM904.524 671.678C904.804 671.839 905.032 671.898 905.21 671.854C905.394 671.814 905.528 671.689 905.61 671.48C905.699 671.267 905.744 670.981 905.744 670.622C905.744 670.263 905.699 669.925 905.61 669.61C905.528 669.298 905.394 669.02 905.21 668.774C905.032 668.525 904.804 668.319 904.524 668.158C904.251 668 904.023 667.942 903.838 667.982C903.661 668.019 903.527 668.143 903.438 668.356C903.349 668.569 903.305 668.855 903.305 669.214C903.305 669.573 903.349 669.911 903.438 670.226C903.527 670.534 903.661 670.813 903.838 671.062C904.023 671.315 904.251 671.52 904.524 671.678ZM907.837 668.971L909.095 669.697L909.095 670.478C909.279 670.305 909.501 670.214 909.762 670.203C910.022 670.184 910.321 670.272 910.657 670.467C911.032 670.683 911.35 670.958 911.61 671.292C911.877 671.622 912.077 671.998 912.21 672.419C912.35 672.845 912.42 673.296 912.42 673.772L912.42 677.336L911.134 676.594L911.134 673.206C911.134 672.846 911.061 672.522 910.914 672.232C910.768 671.935 910.537 671.695 910.219 671.512C910.041 671.409 909.87 671.358 909.705 671.358C909.546 671.354 909.409 671.426 909.295 671.572C909.187 671.723 909.133 671.966 909.133 672.304L909.133 675.439L907.837 674.691L907.837 668.971ZM875.182 666.969C874.591 666.628 874.077 666.225 873.639 665.759C873.2 665.286 872.857 664.769 872.61 664.208C872.368 663.651 872.245 663.073 872.238 662.475L873.61 663.267C873.623 663.825 873.775 664.301 874.067 664.697C874.359 665.086 874.747 665.42 875.229 665.699C875.63 665.929 875.95 666.023 876.192 665.979C876.433 665.935 876.554 665.744 876.554 665.407C876.554 665.216 876.509 665.033 876.42 664.857C876.338 664.685 876.176 664.477 875.934 664.235C875.699 663.99 875.35 663.685 874.886 663.322C874.302 662.868 873.829 662.437 873.467 662.03C873.111 661.619 872.845 661.201 872.667 660.776C872.495 660.354 872.41 659.905 872.41 659.429C872.41 658.989 872.514 658.66 872.724 658.444C872.94 658.231 873.242 658.141 873.629 658.174C874.023 658.211 874.48 658.38 875.001 658.68C875.896 659.197 876.582 659.828 877.058 660.572C877.535 661.317 877.786 662.114 877.811 662.965L876.468 662.189C876.442 661.713 876.309 661.295 876.068 660.936C875.833 660.572 875.477 660.253 875.001 659.978C874.645 659.773 874.359 659.689 874.143 659.725C873.934 659.766 873.829 659.922 873.829 660.193C873.829 660.391 873.867 660.578 873.943 660.754C874.026 660.934 874.178 661.139 874.401 661.37C874.629 661.605 874.959 661.894 875.391 662.239C876.058 662.756 876.579 663.229 876.954 663.658C877.335 664.091 877.601 664.505 877.754 664.901C877.913 665.301 877.992 665.72 877.992 666.16C877.992 666.674 877.871 667.044 877.63 667.272C877.395 667.495 877.065 667.58 876.639 667.525C876.22 667.473 875.734 667.288 875.182 666.969ZM880.977 670.315C880.469 670.022 880.025 669.637 879.644 669.16C879.269 668.68 878.983 668.159 878.786 667.598C878.589 667.03 878.491 666.46 878.491 665.888C878.491 665.316 878.589 664.859 878.786 664.518C878.983 664.177 879.269 663.986 879.644 663.946C880.025 663.909 880.469 664.038 880.977 664.331C881.492 664.628 881.936 665.013 882.311 665.486C882.686 665.952 882.968 666.478 883.159 667.065C883.356 667.648 883.454 668.254 883.454 668.885L883.454 669.215L879.777 667.092C879.809 667.396 879.875 667.681 879.977 667.945C880.085 668.205 880.222 668.441 880.387 668.654C880.558 668.863 880.755 669.032 880.977 669.16C881.257 669.321 881.488 669.393 881.673 669.375C881.863 669.353 882.009 669.254 882.111 669.078L883.368 669.804C883.203 670.288 882.911 670.581 882.492 670.684C882.079 670.783 881.574 670.66 880.977 670.315ZM882.159 667.433C882.095 667 881.962 666.615 881.758 666.278C881.555 665.933 881.295 665.669 880.977 665.486C880.653 665.299 880.39 665.261 880.187 665.371C879.983 665.473 879.85 665.704 879.786 666.064L882.159 667.433ZM884.236 666.344L885.493 667.07L885.493 667.851C885.677 667.679 885.9 667.587 886.16 667.576C886.42 667.558 886.719 667.646 887.056 667.84C887.43 668.057 887.748 668.332 888.008 668.665C888.275 668.995 888.475 669.371 888.608 669.793C888.748 670.218 888.818 670.669 888.818 671.146L888.818 674.71L887.532 673.967L887.532 670.579C887.532 670.22 887.459 669.895 887.313 669.606C887.167 669.309 886.935 669.069 886.617 668.885C886.44 668.783 886.268 668.731 886.103 668.731C885.944 668.728 885.808 668.799 885.693 668.946C885.585 669.096 885.531 669.34 885.531 669.677L885.531 672.812L884.236 672.064L884.236 666.344ZM891.79 676.558C891.085 676.151 890.532 675.67 890.132 675.117C889.738 674.567 889.522 673.932 889.484 673.214L890.742 673.94C890.774 674.31 890.878 674.62 891.056 674.869C891.24 675.122 891.501 675.346 891.837 675.54C892.11 675.698 892.33 675.769 892.495 675.755C892.66 675.733 892.742 675.623 892.742 675.425C892.742 675.285 892.717 675.161 892.666 675.051C892.615 674.941 892.507 674.805 892.342 674.644C892.183 674.479 891.936 674.27 891.599 674.017C891.091 673.621 890.691 673.258 890.399 672.928C890.107 672.598 889.897 672.282 889.77 671.982C889.649 671.685 889.589 671.371 889.589 671.041C889.589 670.498 889.78 670.183 890.161 670.095C890.542 670.007 891.053 670.148 891.694 670.519C892.406 670.929 892.949 671.419 893.323 671.987C893.698 672.548 893.892 673.137 893.905 673.753L892.704 673.06C892.698 672.711 892.603 672.418 892.418 672.18C892.234 671.941 891.993 671.736 891.694 671.564C891.447 671.421 891.244 671.358 891.085 671.377C890.932 671.399 890.856 671.505 890.856 671.696C890.856 671.835 890.888 671.967 890.951 672.092C891.021 672.213 891.139 672.354 891.304 672.515C891.475 672.673 891.726 672.876 892.056 673.126C892.558 673.511 892.952 673.866 893.238 674.193C893.524 674.512 893.727 674.823 893.847 675.128C893.968 675.425 894.028 675.738 894.028 676.068C894.028 676.633 893.822 676.954 893.409 677.031C893.003 677.104 892.463 676.946 891.79 676.558ZM896.969 679.548C896.461 679.255 896.016 678.87 895.635 678.393C895.261 677.913 894.975 677.392 894.778 676.831C894.581 676.263 894.483 675.692 894.483 675.12C894.483 674.548 894.581 674.092 894.778 673.751C894.975 673.41 895.261 673.219 895.635 673.179C896.016 673.142 896.461 673.271 896.969 673.564C897.484 673.861 897.928 674.246 898.303 674.719C898.678 675.185 898.96 675.711 899.151 676.297C899.348 676.88 899.446 677.487 899.446 678.118L899.446 678.448L895.769 676.325C895.801 676.629 895.867 676.913 895.969 677.177C896.077 677.438 896.213 677.674 896.378 677.887C896.55 678.096 896.747 678.265 896.969 678.393C897.249 678.554 897.48 678.626 897.665 678.607C897.855 678.585 898.001 678.486 898.103 678.31L899.36 679.036C899.195 679.52 898.903 679.814 898.484 679.916C898.071 680.015 897.566 679.893 896.969 679.548ZM898.15 676.666C898.087 676.233 897.954 675.848 897.75 675.511C897.547 675.166 897.287 674.902 896.969 674.719C896.645 674.532 896.382 674.493 896.178 674.603C895.975 674.706 895.842 674.937 895.778 675.296L898.15 676.666Z" fill="#5F52FF"/>
|
|
250
|
+
<path d="M537.188 594.075L540.303 595.874C541.116 596.343 541.725 596.908 542.132 597.568C542.545 598.224 542.751 598.911 542.751 599.63C542.751 600.026 542.659 600.336 542.475 600.56C542.297 600.787 542.036 600.915 541.693 600.945C541.96 601.238 542.163 601.546 542.303 601.869C542.449 602.195 542.545 602.551 542.589 602.936L542.875 605.279L541.446 604.454L541.217 602.452C541.185 602.155 541.122 601.891 541.027 601.66C540.938 601.432 540.817 601.234 540.665 601.066C540.512 600.89 540.322 600.736 540.093 600.604L538.578 599.729L538.578 602.798L537.188 601.995L537.188 594.075ZM540.103 599.344C540.509 599.579 540.811 599.658 541.008 599.581C541.211 599.507 541.312 599.284 541.312 598.91C541.312 598.536 541.211 598.195 541.008 597.887C540.811 597.582 540.509 597.313 540.103 597.078L538.578 596.198L538.578 598.464L540.103 599.344ZM545.863 607.136C545.355 606.842 544.91 606.457 544.529 605.981C544.155 605.5 543.869 604.98 543.672 604.419C543.475 603.85 543.377 603.28 543.377 602.708C543.377 602.136 543.475 601.68 543.672 601.339C543.869 600.998 544.155 600.807 544.529 600.767C544.91 600.73 545.355 600.858 545.863 601.152C546.377 601.449 546.822 601.834 547.197 602.307C547.571 602.772 547.854 603.299 548.045 603.885C548.241 604.468 548.34 605.075 548.34 605.706L548.34 606.036L544.663 603.913C544.694 604.217 544.761 604.501 544.863 604.765C544.971 605.026 545.107 605.262 545.272 605.475C545.444 605.684 545.641 605.852 545.863 605.981C546.142 606.142 546.374 606.214 546.558 606.195C546.749 606.173 546.895 606.074 546.997 605.898L548.254 606.624C548.089 607.108 547.797 607.402 547.378 607.504C546.965 607.603 546.46 607.48 545.863 607.136ZM547.044 604.254C546.981 603.821 546.847 603.436 546.644 603.099C546.441 602.754 546.181 602.49 545.863 602.307C545.539 602.12 545.276 602.081 545.072 602.191C544.869 602.294 544.736 602.525 544.672 602.884L547.044 604.254ZM551.398 610.332C550.89 610.038 550.449 609.655 550.074 609.182C549.706 608.705 549.423 608.187 549.226 607.626C549.029 607.057 548.931 606.487 548.931 605.915C548.931 605.343 549.029 604.887 549.226 604.546C549.423 604.205 549.706 604.012 550.074 603.968C550.449 603.928 550.89 604.054 551.398 604.348C552.078 604.74 552.618 605.25 553.018 605.877C553.418 606.504 553.656 607.176 553.732 607.895L552.437 607.147C552.38 606.813 552.259 606.509 552.075 606.234C551.897 605.955 551.671 605.737 551.398 605.58C551.144 605.433 550.932 605.383 550.76 605.431C550.589 605.471 550.458 605.598 550.369 605.811C550.287 606.027 550.246 606.315 550.246 606.674C550.246 607.033 550.287 607.369 550.369 607.681C550.458 607.989 550.589 608.265 550.76 608.511C550.932 608.757 551.144 608.953 551.398 609.1C551.684 609.265 551.916 609.307 552.094 609.226C552.278 609.149 552.392 608.955 552.437 608.643L553.732 609.391C553.656 610.044 553.415 610.462 553.008 610.645C552.602 610.821 552.065 610.717 551.398 610.332ZM559.016 614.598L557.758 613.872L557.758 613.091C557.574 613.263 557.352 613.358 557.091 613.377C556.831 613.388 556.533 613.296 556.196 613.102C555.821 612.885 555.5 612.612 555.234 612.282C554.973 611.948 554.773 611.569 554.634 611.144C554.5 610.722 554.434 610.273 554.434 609.796L554.434 606.232L555.72 606.975L555.72 610.363C555.72 610.722 555.793 611.05 555.939 611.347C556.085 611.637 556.317 611.873 556.634 612.057C556.812 612.159 556.98 612.212 557.139 612.216C557.304 612.216 557.441 612.141 557.549 611.991C557.663 611.844 557.72 611.602 557.72 611.265L557.72 608.13L559.016 608.878L559.016 614.598ZM560.006 609.449L561.264 610.175L561.264 611.165C561.422 610.883 561.626 610.733 561.873 610.714C562.121 610.689 562.41 610.771 562.74 610.962L563.14 611.193L563.14 612.568L562.683 612.304C562.391 612.135 562.143 612.047 561.94 612.04C561.737 612.025 561.578 612.113 561.464 612.304C561.356 612.491 561.302 612.797 561.302 613.222L561.302 615.917L560.006 615.169L560.006 609.449ZM565.848 618.674C565.143 618.267 564.591 617.787 564.191 617.233C563.797 616.683 563.581 616.049 563.543 615.33L564.8 616.056C564.832 616.427 564.937 616.736 565.115 616.986C565.299 617.239 565.559 617.462 565.896 617.657C566.169 617.814 566.388 617.886 566.553 617.871C566.718 617.849 566.801 617.739 566.801 617.541C566.801 617.402 566.775 617.277 566.725 617.167C566.674 617.057 566.566 616.922 566.401 616.76C566.242 616.595 565.994 616.386 565.658 616.133C565.15 615.737 564.75 615.374 564.457 615.044C564.165 614.714 563.956 614.399 563.829 614.098C563.708 613.801 563.648 613.488 563.648 613.158C563.648 612.615 563.838 612.3 564.219 612.212C564.6 612.124 565.112 612.265 565.753 612.635C566.464 613.046 567.007 613.535 567.382 614.104C567.757 614.665 567.95 615.253 567.963 615.869L566.763 615.176C566.756 614.828 566.661 614.535 566.477 614.296C566.293 614.058 566.051 613.853 565.753 613.68C565.505 613.537 565.302 613.475 565.143 613.493C564.991 613.515 564.915 613.622 564.915 613.812C564.915 613.952 564.946 614.084 565.01 614.208C565.08 614.329 565.197 614.47 565.362 614.632C565.534 614.789 565.785 614.993 566.115 615.242C566.617 615.627 567.01 615.983 567.296 616.309C567.582 616.628 567.785 616.94 567.906 617.244C568.027 617.541 568.087 617.855 568.087 618.185C568.087 618.749 567.881 619.07 567.468 619.147C567.061 619.221 566.521 619.063 565.848 618.674ZM568.741 614.493L570.037 615.241L570.037 620.961L568.741 620.213L568.741 614.493ZM568.741 612.293L570.037 613.041L570.037 614.372L568.741 613.624L568.741 612.293ZM570.573 615.55L571.973 616.359L573.193 621.364L574.393 617.756L575.784 618.559L573.926 623.206L572.44 622.348L570.573 615.55ZM578.6 626.037C578.092 625.743 577.648 625.358 577.267 624.882C576.892 624.401 576.606 623.881 576.409 623.32C576.212 622.751 576.114 622.181 576.114 621.609C576.114 621.037 576.212 620.581 576.409 620.24C576.606 619.899 576.892 619.708 577.267 619.668C577.648 619.631 578.092 619.759 578.6 620.053C579.115 620.35 579.559 620.735 579.934 621.208C580.309 621.673 580.591 622.2 580.782 622.786C580.979 623.369 581.077 623.976 581.077 624.607L581.077 624.937L577.4 622.814C577.432 623.118 577.498 623.402 577.6 623.666C577.708 623.927 577.845 624.163 578.01 624.376C578.181 624.585 578.378 624.753 578.6 624.882C578.88 625.043 579.112 625.115 579.296 625.096C579.486 625.074 579.632 624.975 579.734 624.799L580.991 625.525C580.826 626.009 580.534 626.303 580.115 626.405C579.702 626.504 579.197 626.381 578.6 626.037ZM579.782 623.155C579.718 622.722 579.585 622.337 579.381 622C579.178 621.655 578.918 621.391 578.6 621.208C578.276 621.021 578.013 620.982 577.81 621.092C577.606 621.195 577.473 621.426 577.41 621.785L579.782 623.155ZM551.561 613.373L556.657 616.316L556.657 617.757L552.952 615.617L552.952 617.355L556.381 619.335L556.381 620.71L552.952 618.73L552.952 620.655L556.638 622.784L556.638 624.225L551.561 621.293L551.561 613.373ZM559.354 625.793C559.042 625.613 558.785 625.424 558.582 625.226C558.379 625.021 558.217 624.773 558.096 624.484C557.982 624.198 557.925 623.857 557.925 623.461L557.925 620.381L557.067 619.886L557.067 618.753L557.925 619.248L557.925 617.488L559.22 618.236L559.22 619.996L560.459 620.711L560.459 621.844L559.22 621.129L559.22 624.055C559.22 624.238 559.255 624.394 559.325 624.522C559.395 624.643 559.516 624.753 559.687 624.852L560.459 625.298L560.459 626.431L559.354 625.793ZM561.197 618.937L562.492 619.685L562.492 622.611C562.677 622.453 562.896 622.371 563.15 622.363C563.404 622.356 563.693 622.446 564.017 622.633C564.391 622.849 564.709 623.124 564.969 623.458C565.236 623.788 565.436 624.164 565.569 624.585C565.709 625.011 565.779 625.462 565.779 625.938L565.779 629.502L564.493 628.76L564.493 625.372C564.493 625.012 564.42 624.688 564.274 624.398C564.128 624.101 563.896 623.861 563.578 623.678C563.401 623.575 563.229 623.524 563.064 623.524C562.905 623.52 562.769 623.592 562.654 623.738C562.546 623.889 562.492 624.132 562.492 624.47L562.492 627.605L561.197 626.857L561.197 618.937ZM566.76 624.349L568.055 625.097L568.055 630.817L566.76 630.069L566.76 624.349ZM566.76 622.149L568.055 622.897L568.055 624.228L566.76 623.48L566.76 622.149ZM571.316 632.831C570.808 632.538 570.367 632.155 569.992 631.682C569.624 631.205 569.341 630.686 569.144 630.125C568.947 629.557 568.849 628.987 568.849 628.415C568.849 627.843 568.947 627.386 569.144 627.045C569.341 626.704 569.624 626.512 569.992 626.468C570.367 626.427 570.808 626.554 571.316 626.847C571.996 627.239 572.535 627.749 572.936 628.376C573.336 629.003 573.574 629.676 573.65 630.395L572.354 629.647C572.297 629.313 572.177 629.009 571.992 628.734C571.815 628.455 571.589 628.237 571.316 628.079C571.062 627.932 570.849 627.883 570.678 627.931C570.506 627.971 570.376 628.097 570.287 628.31C570.205 628.526 570.163 628.814 570.163 629.174C570.163 629.533 570.205 629.868 570.287 630.18C570.376 630.488 570.506 630.765 570.678 631.011C570.849 631.256 571.062 631.452 571.316 631.599C571.602 631.764 571.834 631.806 572.011 631.726C572.196 631.649 572.31 631.454 572.354 631.143L573.65 631.891C573.574 632.543 573.332 632.961 572.926 633.145C572.52 633.321 571.983 633.216 571.316 632.831ZM575.904 635.48C575.358 635.165 574.92 634.761 574.589 634.27C574.259 633.771 574.094 633.247 574.094 632.697C574.094 632.36 574.161 632.116 574.294 631.966C574.434 631.812 574.643 631.742 574.923 631.757C575.209 631.775 575.577 631.87 576.028 632.043L577.438 632.571L577.438 632.274C577.438 632.017 577.371 631.788 577.238 631.586C577.104 631.384 576.885 631.196 576.58 631.02C576.295 630.855 576.063 630.79 575.885 630.827C575.714 630.867 575.625 631.025 575.618 631.3L574.332 630.558C574.339 629.916 574.548 629.549 574.961 629.458C575.38 629.362 575.917 629.503 576.571 629.881C577.276 630.288 577.806 630.745 578.162 631.251C578.524 631.76 578.705 632.286 578.705 632.829L578.705 636.965L577.476 636.256L577.476 635.618C577.273 635.772 577.041 635.836 576.78 635.81C576.526 635.781 576.234 635.671 575.904 635.48ZM576.228 634.589C576.444 634.714 576.641 634.783 576.819 634.798C577.003 634.816 577.152 634.763 577.266 634.639C577.381 634.514 577.438 634.309 577.438 634.023L577.438 633.539L576.276 633.143C575.971 633.033 575.752 632.994 575.618 633.027C575.485 633.053 575.418 633.179 575.418 633.407C575.418 633.627 575.485 633.841 575.618 634.05C575.758 634.255 575.961 634.435 576.228 634.589ZM579.57 629.545L580.866 630.293L580.866 638.213L579.57 637.465L579.57 629.545ZM542.412 627.143C541.821 626.802 541.307 626.399 540.869 625.933C540.43 625.46 540.087 624.943 539.84 624.382C539.598 623.825 539.475 623.247 539.468 622.65L540.84 623.442C540.853 623.999 541.005 624.476 541.297 624.872C541.589 625.26 541.977 625.594 542.46 625.873C542.86 626.104 543.18 626.197 543.422 626.153C543.663 626.109 543.784 625.919 543.784 625.581C543.784 625.391 543.739 625.207 543.65 625.031C543.568 624.859 543.406 624.652 543.164 624.41C542.929 624.164 542.58 623.86 542.117 623.497C541.532 623.042 541.059 622.611 540.697 622.204C540.342 621.794 540.075 621.376 539.897 620.95C539.725 620.529 539.64 620.079 539.64 619.603C539.64 619.163 539.745 618.835 539.954 618.618C540.17 618.406 540.472 618.316 540.859 618.349C541.253 618.385 541.71 618.554 542.231 618.855C543.126 619.372 543.812 620.002 544.289 620.747C544.765 621.491 545.016 622.289 545.041 623.139L543.698 622.364C543.673 621.887 543.539 621.469 543.298 621.11C543.063 620.747 542.707 620.428 542.231 620.153C541.875 619.947 541.589 619.863 541.374 619.9C541.164 619.94 541.059 620.096 541.059 620.367C541.059 620.565 541.097 620.752 541.173 620.928C541.256 621.108 541.408 621.313 541.631 621.544C541.859 621.779 542.19 622.069 542.621 622.413C543.288 622.93 543.809 623.403 544.184 623.832C544.565 624.265 544.832 624.679 544.984 625.075C545.143 625.475 545.222 625.895 545.222 626.335C545.222 626.848 545.101 627.218 544.86 627.446C544.625 627.669 544.295 627.754 543.869 627.699C543.45 627.647 542.964 627.462 542.412 627.143ZM548.207 630.489C547.699 630.196 547.255 629.811 546.874 629.334C546.499 628.854 546.213 628.333 546.016 627.772C545.819 627.204 545.721 626.634 545.721 626.062C545.721 625.49 545.819 625.033 546.016 624.692C546.213 624.351 546.499 624.161 546.874 624.12C547.255 624.084 547.699 624.212 548.207 624.505C548.722 624.802 549.166 625.187 549.541 625.66C549.916 626.126 550.198 626.652 550.389 627.239C550.586 627.822 550.684 628.429 550.684 629.059L550.684 629.389L547.007 627.266C547.039 627.571 547.106 627.855 547.207 628.119C547.315 628.379 547.452 628.616 547.617 628.828C547.788 629.037 547.985 629.206 548.207 629.334C548.487 629.496 548.719 629.567 548.903 629.549C549.093 629.527 549.239 629.428 549.341 629.252L550.598 629.978C550.433 630.462 550.141 630.755 549.722 630.858C549.309 630.957 548.804 630.834 548.207 630.489ZM549.389 627.607C549.325 627.175 549.192 626.79 548.989 626.452C548.785 626.108 548.525 625.844 548.207 625.66C547.883 625.473 547.62 625.435 547.417 625.545C547.213 625.648 547.08 625.879 547.017 626.238L549.389 627.607ZM551.466 624.319L552.761 625.067L552.761 632.987L551.466 632.239L551.466 624.319ZM556.031 635.006C555.523 634.713 555.079 634.328 554.698 633.851C554.323 633.371 554.037 632.85 553.84 632.289C553.643 631.721 553.545 631.151 553.545 630.579C553.545 630.007 553.643 629.55 553.84 629.209C554.037 628.868 554.323 628.678 554.698 628.637C555.079 628.601 555.523 628.729 556.031 629.022C556.546 629.319 556.99 629.704 557.365 630.177C557.74 630.643 558.022 631.169 558.213 631.756C558.41 632.339 558.508 632.946 558.508 633.576L558.508 633.906L554.831 631.783C554.863 632.088 554.929 632.372 555.031 632.636C555.139 632.896 555.275 633.133 555.441 633.345C555.612 633.554 555.809 633.723 556.031 633.851C556.311 634.013 556.542 634.084 556.727 634.066C556.917 634.044 557.063 633.945 557.165 633.769L558.422 634.495C558.257 634.979 557.965 635.272 557.546 635.375C557.133 635.474 556.628 635.351 556.031 635.006ZM557.212 632.124C557.149 631.692 557.016 631.307 556.812 630.969C556.609 630.625 556.349 630.361 556.031 630.177C555.707 629.99 555.444 629.952 555.241 630.062C555.037 630.165 554.904 630.396 554.84 630.755L557.212 632.124ZM561.566 638.202C561.058 637.909 560.617 637.526 560.242 637.053C559.874 636.576 559.591 636.057 559.395 635.496C559.198 634.928 559.099 634.358 559.099 633.786C559.099 633.214 559.198 632.757 559.395 632.416C559.591 632.075 559.874 631.883 560.242 631.839C560.617 631.798 561.058 631.925 561.566 632.218C562.246 632.611 562.786 633.12 563.186 633.747C563.586 634.374 563.824 635.047 563.9 635.766L562.605 635.018C562.548 634.684 562.427 634.38 562.243 634.105C562.065 633.826 561.84 633.608 561.566 633.45C561.312 633.304 561.1 633.254 560.928 633.302C560.757 633.342 560.627 633.469 560.538 633.681C560.455 633.898 560.414 634.185 560.414 634.545C560.414 634.904 560.455 635.24 560.538 635.551C560.627 635.859 560.757 636.136 560.928 636.382C561.1 636.627 561.312 636.824 561.566 636.97C561.852 637.135 562.084 637.177 562.262 637.097C562.446 637.02 562.56 636.825 562.605 636.514L563.9 637.262C563.824 637.914 563.583 638.332 563.176 638.516C562.77 638.692 562.233 638.587 561.566 638.202ZM566.536 640.939C566.224 640.759 565.967 640.571 565.764 640.373C565.561 640.167 565.399 639.92 565.278 639.63C565.164 639.344 565.107 639.003 565.107 638.607L565.107 635.527L564.249 635.032L564.249 633.899L565.107 634.394L565.107 632.634L566.402 633.382L566.402 635.142L567.641 635.857L567.641 636.99L566.402 636.275L566.402 639.201C566.402 639.384 566.437 639.54 566.507 639.669C566.577 639.79 566.698 639.9 566.869 639.999L567.641 640.444L567.641 641.577L566.536 640.939ZM568.369 636.278L569.665 637.026L569.665 642.746L568.369 641.998L568.369 636.278ZM568.369 634.078L569.665 634.826L569.665 636.157L568.369 635.409L568.369 634.078ZM572.973 644.788C572.452 644.487 571.998 644.097 571.611 643.616C571.23 643.132 570.938 642.608 570.734 642.043C570.538 641.475 570.439 640.905 570.439 640.333C570.439 639.761 570.538 639.304 570.734 638.963C570.938 638.626 571.23 638.439 571.611 638.402C571.998 638.369 572.452 638.503 572.973 638.804C573.5 639.108 573.954 639.499 574.335 639.975C574.723 640.456 575.015 640.98 575.212 641.548C575.409 642.117 575.507 642.687 575.507 643.259C575.507 643.831 575.409 644.287 575.212 644.628C575.015 644.962 574.723 645.149 574.335 645.189C573.954 645.226 573.5 645.092 572.973 644.788ZM572.973 643.556C573.253 643.717 573.481 643.776 573.659 643.732C573.843 643.691 573.977 643.567 574.059 643.358C574.148 643.145 574.192 642.859 574.192 642.5C574.192 642.14 574.148 641.803 574.059 641.488C573.977 641.176 573.843 640.897 573.659 640.652C573.481 640.402 573.253 640.197 572.973 640.036C572.7 639.878 572.471 639.819 572.287 639.86C572.109 639.896 571.976 640.021 571.887 640.234C571.798 640.446 571.754 640.732 571.754 641.092C571.754 641.451 571.798 641.788 571.887 642.104C571.976 642.412 572.109 642.69 572.287 642.94C572.471 643.193 572.7 643.398 572.973 643.556ZM576.286 640.849L577.544 641.575L577.544 642.356C577.728 642.183 577.95 642.092 578.211 642.081C578.471 642.062 578.769 642.15 579.106 642.345C579.481 642.561 579.798 642.836 580.059 643.17C580.325 643.5 580.526 643.876 580.659 644.297C580.799 644.723 580.868 645.174 580.868 645.65L580.868 649.214L579.582 648.472L579.582 645.084C579.582 644.724 579.509 644.4 579.363 644.11C579.217 643.813 578.985 643.573 578.668 643.39C578.49 643.287 578.319 643.236 578.153 643.236C577.995 643.232 577.858 643.304 577.744 643.45C577.636 643.601 577.582 643.844 577.582 644.182L577.582 647.317L576.286 646.569L576.286 640.849Z" fill="#5F52FF"/>
|
|
251
|
+
<path d="M456.525 725.167C455.858 724.782 455.28 724.265 454.791 723.616C454.302 722.967 453.927 722.259 453.667 721.493C453.413 720.723 453.286 719.96 453.286 719.205C453.286 718.442 453.416 717.828 453.676 717.362C453.943 716.893 454.334 716.627 454.848 716.565C455.369 716.499 455.991 716.675 456.715 717.093C457.306 717.434 457.827 717.856 458.278 718.358C458.728 718.86 459.094 719.408 459.373 720.002C459.653 720.589 459.834 721.185 459.916 721.79L458.497 720.97C458.395 720.479 458.189 720.012 457.877 719.568C457.566 719.124 457.179 718.769 456.715 718.501C456.271 718.244 455.899 718.151 455.601 718.22C455.302 718.283 455.083 718.475 454.943 718.798C454.804 719.121 454.734 719.535 454.734 720.041C454.734 720.54 454.804 721.031 454.943 721.515C455.083 721.999 455.302 722.448 455.601 722.862C455.899 723.27 456.271 723.601 456.715 723.858C457.211 724.144 457.611 724.225 457.916 724.1C458.22 723.968 458.433 723.665 458.554 723.192L456.429 721.966L456.429 720.668L460.002 722.73L460.002 727.043L458.973 726.449L458.973 725.074C458.744 725.426 458.427 725.616 458.02 725.646C457.62 725.671 457.122 725.512 456.525 725.167ZM465.548 730.244L464.29 729.518L464.29 728.737C464.106 728.91 463.884 729.005 463.624 729.023C463.363 729.034 463.065 728.943 462.728 728.748C462.353 728.532 462.033 728.259 461.766 727.929C461.506 727.595 461.305 727.216 461.166 726.79C461.032 726.369 460.966 725.92 460.966 725.443L460.966 721.879L462.252 722.621L462.252 726.009C462.252 726.369 462.325 726.697 462.471 726.994C462.617 727.284 462.849 727.52 463.166 727.703C463.344 727.806 463.512 727.859 463.671 727.863C463.836 727.863 463.973 727.788 464.081 727.637C464.195 727.491 464.252 727.249 464.252 726.911L464.252 723.776L465.548 724.524L465.548 730.244ZM468.091 731.845C467.545 731.529 467.107 731.126 466.776 730.635C466.446 730.136 466.281 729.612 466.281 729.062C466.281 728.724 466.348 728.481 466.481 728.33C466.621 728.176 466.83 728.107 467.11 728.121C467.396 728.14 467.764 728.235 468.215 728.407L469.625 728.935L469.625 728.638C469.625 728.382 469.558 728.152 469.425 727.951C469.291 727.749 469.072 727.56 468.767 727.384C468.482 727.219 468.25 727.155 468.072 727.192C467.9 727.232 467.812 727.39 467.805 727.665L466.519 726.922C466.525 726.281 466.735 725.914 467.148 725.822C467.567 725.727 468.104 725.868 468.758 726.246C469.463 726.653 469.993 727.109 470.349 727.615C470.711 728.125 470.892 728.651 470.892 729.194L470.892 733.33L469.663 732.62L469.663 731.982C469.46 732.136 469.228 732.2 468.967 732.175C468.713 732.145 468.421 732.035 468.091 731.845ZM468.415 730.954C468.631 731.078 468.828 731.148 469.005 731.163C469.19 731.181 469.339 731.128 469.453 731.003C469.568 730.879 469.625 730.673 469.625 730.387L469.625 729.903L468.462 729.507C468.158 729.397 467.939 729.359 467.805 729.392C467.672 729.417 467.605 729.544 467.605 729.771C467.605 729.991 467.672 730.206 467.805 730.415C467.945 730.62 468.148 730.8 468.415 730.954ZM471.757 728.109L473.015 728.835L473.015 729.825C473.173 729.543 473.377 729.393 473.624 729.374C473.872 729.349 474.161 729.431 474.491 729.622L474.891 729.853L474.891 731.228L474.434 730.964C474.142 730.795 473.894 730.707 473.691 730.7C473.488 730.685 473.329 730.773 473.215 730.964C473.107 731.151 473.053 731.457 473.053 731.882L473.053 734.577L471.757 733.829L471.757 728.109ZM477.609 737.34C477.145 737.072 476.748 736.715 476.418 736.267C476.088 735.813 475.837 735.312 475.666 734.766C475.494 734.212 475.408 733.649 475.408 733.077C475.408 732.498 475.494 732.034 475.666 731.686C475.837 731.33 476.088 731.119 476.418 731.053C476.748 730.987 477.145 731.088 477.609 731.356C477.939 731.547 478.228 731.783 478.476 732.065C478.73 732.351 478.943 732.676 479.114 733.039L479.114 730.157L480.41 730.905L480.41 738.825L479.152 738.099L479.152 737.34C478.981 737.527 478.768 737.624 478.514 737.631C478.26 737.639 477.958 737.542 477.609 737.34ZM477.933 736.295C478.2 736.449 478.422 736.504 478.6 736.46C478.777 736.416 478.911 736.291 479 736.086C479.089 735.873 479.133 735.587 479.133 735.228C479.133 734.869 479.089 734.531 479 734.216C478.911 733.901 478.777 733.622 478.6 733.38C478.422 733.131 478.2 732.929 477.933 732.775C477.66 732.617 477.434 732.56 477.256 732.604C477.079 732.641 476.945 732.766 476.856 732.978C476.774 733.195 476.732 733.483 476.732 733.842C476.732 734.201 476.774 734.537 476.856 734.848C476.945 735.156 477.079 735.435 477.256 735.684C477.434 735.934 477.66 736.137 477.933 736.295ZM481.395 733.674L482.653 734.4L482.653 735.39C482.811 735.108 483.015 734.957 483.262 734.939C483.51 734.913 483.799 734.996 484.129 735.186L484.529 735.417L484.529 736.792L484.072 736.528C483.78 736.36 483.532 736.272 483.329 736.264C483.126 736.25 482.967 736.338 482.853 736.528C482.745 736.715 482.691 737.022 482.691 737.447L482.691 740.142L481.395 739.394L481.395 733.674ZM486.809 742.651C486.262 742.336 485.824 741.933 485.494 741.441C485.164 740.943 484.999 740.418 484.999 739.868C484.999 739.531 485.065 739.287 485.199 739.137C485.338 738.983 485.548 738.913 485.827 738.928C486.113 738.946 486.482 739.042 486.932 739.214L488.342 739.742L488.342 739.445C488.342 739.188 488.276 738.959 488.142 738.757C488.009 738.556 487.79 738.367 487.485 738.191C487.199 738.026 486.967 737.962 486.79 737.998C486.618 738.039 486.529 738.196 486.523 738.471L485.237 737.729C485.243 737.087 485.453 736.721 485.866 736.629C486.285 736.534 486.821 736.675 487.475 737.052C488.18 737.459 488.711 737.916 489.066 738.422C489.428 738.932 489.609 739.458 489.609 740L489.609 744.136L488.38 743.427L488.38 742.789C488.177 742.943 487.945 743.007 487.685 742.981C487.431 742.952 487.139 742.842 486.809 742.651ZM487.133 741.76C487.348 741.885 487.545 741.955 487.723 741.969C487.907 741.988 488.057 741.935 488.171 741.81C488.285 741.685 488.342 741.48 488.342 741.194L488.342 740.71L487.18 740.314C486.875 740.204 486.656 740.165 486.523 740.198C486.389 740.224 486.323 740.351 486.323 740.578C486.323 740.798 486.389 741.012 486.523 741.221C486.663 741.427 486.866 741.606 487.133 741.76ZM490.465 738.911L491.761 739.659L491.761 745.379L490.465 744.631L490.465 738.911ZM490.465 736.711L491.761 737.459L491.761 738.79L490.465 738.042L490.465 736.711ZM492.745 738.027L494.04 738.775L494.04 746.695L492.745 745.947L492.745 738.027Z" fill="#5F52FF"/>
|
|
252
|
+
<path d="M693.305 484.852L691.143 483.603L691.143 482.162L696.878 485.473L696.878 486.914L694.715 485.666L694.715 492.145L693.305 491.331L693.305 484.852ZM699.067 494.79C698.521 494.474 698.083 494.071 697.753 493.58C697.422 493.081 697.257 492.557 697.257 492.007C697.257 491.669 697.324 491.425 697.457 491.275C697.597 491.121 697.807 491.051 698.086 491.066C698.372 491.084 698.74 491.18 699.191 491.352L700.601 491.88L700.601 491.583C700.601 491.326 700.534 491.097 700.401 490.896C700.268 490.694 700.048 490.505 699.744 490.329C699.458 490.164 699.226 490.1 699.048 490.137C698.877 490.177 698.788 490.335 698.781 490.61L697.495 489.867C697.502 489.225 697.711 488.859 698.124 488.767C698.543 488.672 699.08 488.813 699.734 489.191C700.439 489.598 700.969 490.054 701.325 490.56C701.687 491.07 701.868 491.596 701.868 492.139L701.868 496.275L700.639 495.565L700.639 494.927C700.436 495.081 700.204 495.145 699.944 495.12C699.69 495.09 699.397 494.98 699.067 494.79ZM699.391 493.899C699.607 494.023 699.804 494.093 699.982 494.108C700.166 494.126 700.315 494.073 700.429 493.948C700.544 493.823 700.601 493.618 700.601 493.332L700.601 492.848L699.439 492.452C699.134 492.342 698.915 492.304 698.781 492.337C698.648 492.362 698.581 492.489 698.581 492.716C698.581 492.936 698.648 493.151 698.781 493.36C698.921 493.565 699.124 493.745 699.391 493.899ZM704.715 498.05C704.01 497.643 703.457 497.163 703.057 496.609C702.664 496.059 702.448 495.425 702.41 494.706L703.667 495.432C703.699 495.803 703.804 496.112 703.981 496.362C704.166 496.615 704.426 496.838 704.762 497.033C705.036 497.19 705.255 497.262 705.42 497.247C705.585 497.225 705.667 497.115 705.667 496.917C705.667 496.778 705.642 496.653 705.591 496.543C705.54 496.433 705.433 496.298 705.267 496.136C705.109 495.971 704.861 495.762 704.524 495.509C704.016 495.113 703.616 494.75 703.324 494.42C703.032 494.09 702.822 493.775 702.695 493.474C702.575 493.177 702.514 492.864 702.514 492.534C702.514 491.991 702.705 491.676 703.086 491.588C703.467 491.5 703.978 491.641 704.62 492.011C705.331 492.422 705.874 492.911 706.249 493.48C706.623 494.041 706.817 494.629 706.83 495.245L705.629 494.552C705.623 494.204 705.528 493.911 705.344 493.672C705.159 493.434 704.918 493.229 704.62 493.056C704.372 492.913 704.169 492.851 704.01 492.869C703.857 492.891 703.781 492.998 703.781 493.188C703.781 493.328 703.813 493.46 703.877 493.584C703.946 493.705 704.064 493.846 704.229 494.008C704.4 494.165 704.651 494.369 704.982 494.618C705.483 495.003 705.877 495.359 706.163 495.685C706.449 496.004 706.652 496.316 706.773 496.62C706.893 496.917 706.954 497.231 706.954 497.561C706.954 498.125 706.747 498.446 706.334 498.523C705.928 498.597 705.388 498.439 704.715 498.05ZM707.617 491.674L708.913 492.422L708.913 496.932L710.847 495.739L712.381 496.624L710.504 497.719L712.504 502.416L710.99 501.541L709.608 498.247L708.913 498.67L708.913 500.342L707.617 499.594L707.617 491.674Z" fill="#5F52FF"/>
|
|
253
|
+
<path d="M559.373 489.21L562.297 487.521C562.844 487.206 563.406 486.995 563.984 486.889C564.555 486.779 565.105 486.766 565.632 486.85C566.165 486.931 566.648 487.096 567.08 487.345C567.512 487.595 567.8 487.875 567.947 488.187C568.093 488.491 568.074 488.81 567.889 489.144C567.699 489.474 567.331 489.797 566.784 490.112L565.251 490.997L567.623 492.367L566.232 493.17L559.373 489.21ZM565.508 489.463C565.914 489.228 566.13 489.001 566.156 488.781C566.181 488.561 566.022 488.352 565.679 488.154C565.343 487.96 564.984 487.87 564.603 487.884C564.222 487.899 563.828 488.024 563.422 488.258L561.964 489.1L564.05 490.304L565.508 489.463ZM575.283 488.076C574.762 488.377 574.197 488.575 573.587 488.67C572.977 488.758 572.377 488.749 571.787 488.643C571.196 488.529 570.653 488.329 570.158 488.043C569.662 487.757 569.316 487.444 569.119 487.103C568.929 486.758 568.913 486.412 569.072 486.063C569.237 485.711 569.58 485.385 570.101 485.084C570.628 484.78 571.193 484.582 571.796 484.49C572.406 484.395 573.006 484.404 573.597 484.518C574.187 484.632 574.73 484.831 575.226 485.117C575.721 485.403 576.067 485.717 576.264 486.058C576.455 486.395 576.47 486.742 576.312 487.097C576.153 487.446 575.81 487.772 575.283 488.076ZM574.216 487.46C574.495 487.299 574.66 487.13 574.711 486.954C574.768 486.775 574.727 486.597 574.587 486.421C574.448 486.238 574.222 486.056 573.911 485.876C573.6 485.697 573.285 485.567 572.968 485.486C572.657 485.402 572.349 485.378 572.044 485.414C571.739 485.444 571.447 485.539 571.167 485.7C570.894 485.858 570.729 486.027 570.672 486.206C570.615 486.379 570.656 486.557 570.796 486.74C570.936 486.923 571.161 487.105 571.472 487.284C571.784 487.464 572.098 487.594 572.415 487.675C572.727 487.752 573.035 487.776 573.339 487.746C573.651 487.713 573.943 487.618 574.216 487.46ZM573.909 483.018L575.167 482.292L575.843 482.682C575.786 482.436 575.818 482.198 575.938 481.967C576.053 481.732 576.278 481.518 576.615 481.324C576.989 481.107 577.386 480.97 577.805 480.911C578.225 480.845 578.65 480.86 579.082 480.955C579.52 481.047 579.946 481.212 580.358 481.45L583.445 483.232L582.159 483.975L579.225 482.281C578.914 482.101 578.596 482.002 578.272 481.984C577.942 481.962 577.618 482.042 577.3 482.226C577.123 482.328 576.992 482.451 576.91 482.594C576.827 482.73 576.821 482.884 576.891 483.056C576.967 483.225 577.151 483.393 577.443 483.562L580.158 485.13L578.863 485.878L573.909 483.018ZM586.922 481.357C586.458 481.624 585.95 481.789 585.397 481.852C584.839 481.91 584.28 481.877 583.721 481.753C583.156 481.624 582.625 481.417 582.13 481.131C581.628 480.842 581.269 480.535 581.053 480.213C580.831 479.886 580.774 479.564 580.882 479.245C580.99 478.926 581.276 478.632 581.739 478.365C582.07 478.174 582.419 478.042 582.787 477.969C583.162 477.892 583.549 477.87 583.949 477.903L581.454 476.462L582.749 475.714L589.608 479.674L588.351 480.4L587.693 480.02C587.769 480.262 587.747 480.495 587.627 480.719C587.506 480.942 587.271 481.155 586.922 481.357ZM586.179 480.554C586.445 480.4 586.604 480.235 586.655 480.059C586.706 479.883 586.664 479.705 586.531 479.525C586.391 479.342 586.166 479.16 585.855 478.981C585.544 478.801 585.229 478.671 584.912 478.59C584.594 478.51 584.286 478.486 583.988 478.519C583.683 478.548 583.397 478.64 583.13 478.794C582.857 478.951 582.695 479.118 582.644 479.294C582.587 479.467 582.628 479.644 582.768 479.828C582.914 480.007 583.143 480.187 583.454 480.367C583.765 480.546 584.076 480.678 584.388 480.763C584.699 480.84 585.007 480.864 585.312 480.834C585.617 480.805 585.906 480.711 586.179 480.554ZM593.366 477.636C592.858 477.93 592.302 478.122 591.699 478.214C591.095 478.298 590.501 478.285 589.917 478.175C589.327 478.062 588.784 477.862 588.288 477.576C587.793 477.29 587.447 476.976 587.25 476.635C587.053 476.294 587.031 475.951 587.183 475.607C587.342 475.258 587.675 474.938 588.183 474.644C588.698 474.347 589.253 474.155 589.85 474.067C590.441 473.975 591.038 473.993 591.641 474.122C592.245 474.243 592.819 474.461 593.366 474.776L593.651 474.941L589.974 477.064C590.254 477.189 590.533 477.273 590.813 477.317C591.092 477.354 591.365 477.354 591.632 477.317C591.899 477.273 592.143 477.187 592.365 477.059C592.645 476.897 592.823 476.732 592.899 476.564C592.975 476.388 592.962 476.212 592.861 476.036L594.118 475.31C594.455 475.695 594.563 476.094 594.442 476.509C594.321 476.916 593.963 477.292 593.366 477.636ZM591.46 475.172C591.054 475.011 590.654 474.934 590.26 474.941C589.86 474.945 589.501 475.038 589.184 475.222C588.86 475.409 588.695 475.618 588.688 475.849C588.676 476.076 588.809 476.307 589.088 476.542L591.46 475.172ZM591.937 472.609L593.195 471.883L594.052 472.378C593.887 472.099 593.858 471.848 593.966 471.624C594.068 471.397 594.284 471.188 594.614 470.997L595.014 470.766L596.205 471.454L595.748 471.718C595.456 471.887 595.256 472.057 595.148 472.229C595.033 472.398 595.03 472.58 595.138 472.774C595.246 472.961 595.484 473.161 595.853 473.373L598.186 474.721L596.891 475.469L591.937 472.609Z" fill="#465358"/>
|
|
254
|
+
<path d="M534.373 475.21L535.907 474.324L543.794 475.413L538.907 472.592L540.251 471.816L547.11 475.776L545.576 476.662L537.688 475.573L542.575 478.394L541.232 479.17L534.373 475.21ZM550.952 473.69C550.443 473.984 549.888 474.176 549.284 474.268C548.681 474.352 548.087 474.339 547.503 474.229C546.912 474.116 546.369 473.916 545.874 473.63C545.379 473.344 545.033 473.03 544.836 472.689C544.639 472.348 544.617 472.005 544.769 471.661C544.928 471.312 545.261 470.992 545.769 470.698C546.284 470.401 546.839 470.209 547.436 470.121C548.027 470.029 548.624 470.047 549.227 470.176C549.831 470.297 550.405 470.515 550.952 470.83L551.237 470.995L547.56 473.118C547.84 473.243 548.119 473.327 548.398 473.371C548.678 473.408 548.951 473.408 549.218 473.371C549.484 473.327 549.729 473.241 549.951 473.113C550.231 472.951 550.409 472.786 550.485 472.618C550.561 472.442 550.548 472.266 550.447 472.09L551.704 471.364C552.041 471.749 552.149 472.148 552.028 472.563C551.907 472.97 551.549 473.346 550.952 473.69ZM549.046 471.226C548.64 471.065 548.24 470.988 547.846 470.995C547.446 470.999 547.087 471.092 546.77 471.276C546.446 471.463 546.28 471.672 546.274 471.903C546.261 472.13 546.395 472.361 546.674 472.596L549.046 471.226ZM549.075 468.922L550.476 468.113L554.944 469.461L552.495 466.947L553.724 466.238L558.078 467.651L555.744 465.072L557.144 464.263L560.374 468.119L559.021 468.9L554.734 467.525L557.106 470.005L555.753 470.786L549.075 468.922ZM561.727 460.858L559.565 462.107L558.317 461.386L564.051 458.075L565.299 458.796L563.137 460.044L568.748 463.284L567.338 464.098L561.727 460.858ZM565.069 457.487L566.365 456.739L568.899 458.202C568.854 457.964 568.892 457.733 569.013 457.509C569.134 457.286 569.356 457.08 569.68 456.893C570.055 456.677 570.452 456.54 570.871 456.481C571.29 456.415 571.715 456.43 572.147 456.525C572.585 456.617 573.011 456.782 573.424 457.02L576.51 458.802L575.224 459.544L572.29 457.85C571.979 457.671 571.661 457.572 571.337 457.553C571.007 457.531 570.683 457.612 570.366 457.795C570.188 457.898 570.058 458.021 569.975 458.164C569.893 458.3 569.886 458.454 569.956 458.626C570.032 458.795 570.217 458.963 570.509 459.132L573.224 460.699L571.928 461.447L565.069 457.487ZM580.32 456.734C579.8 457.035 579.234 457.233 578.625 457.328C578.015 457.416 577.415 457.407 576.824 457.301C576.234 457.187 575.691 456.987 575.195 456.701C574.7 456.415 574.354 456.102 574.157 455.761C573.966 455.416 573.95 455.07 574.109 454.721C574.274 454.369 574.617 454.043 575.138 453.742C575.665 453.438 576.23 453.24 576.834 453.148C577.443 453.053 578.044 453.062 578.634 453.176C579.225 453.289 579.768 453.489 580.263 453.775C580.759 454.061 581.105 454.375 581.302 454.716C581.492 455.053 581.508 455.4 581.349 455.755C581.19 456.104 580.848 456.43 580.32 456.734ZM579.253 456.118C579.533 455.957 579.698 455.788 579.749 455.612C579.806 455.433 579.765 455.255 579.625 455.079C579.485 454.895 579.26 454.714 578.949 454.534C578.637 454.355 578.323 454.224 578.006 454.144C577.694 454.059 577.386 454.036 577.081 454.072C576.777 454.102 576.484 454.197 576.205 454.358C575.932 454.516 575.767 454.685 575.71 454.864C575.653 455.037 575.694 455.214 575.834 455.398C575.973 455.581 576.199 455.763 576.51 455.942C576.821 456.122 577.135 456.252 577.453 456.333C577.764 456.41 578.072 456.434 578.377 456.404C578.688 456.371 578.98 456.276 579.253 456.118ZM588.482 451.89L587.225 452.616L586.549 452.225C586.606 452.471 586.577 452.711 586.463 452.946C586.342 453.177 586.114 453.389 585.777 453.584C585.402 453.8 585.005 453.941 584.586 454.007C584.167 454.066 583.738 454.049 583.3 453.958C582.868 453.862 582.446 453.696 582.033 453.457L578.947 451.675L580.233 450.933L583.167 452.627C583.478 452.806 583.799 452.907 584.129 452.929C584.453 452.948 584.774 452.865 585.091 452.682C585.269 452.579 585.399 452.46 585.482 452.324C585.564 452.181 585.567 452.025 585.491 451.857C585.421 451.684 585.24 451.514 584.948 451.345L582.233 449.778L583.529 449.03L588.482 451.89ZM594.122 450.966C593.423 451.369 592.724 451.593 592.026 451.637C591.327 451.681 590.686 451.556 590.102 451.263L591.378 450.526C591.67 450.658 591.966 450.708 592.264 450.675C592.569 450.638 592.871 450.533 593.169 450.361C593.518 450.159 593.718 449.945 593.769 449.718C593.833 449.49 593.649 449.252 593.217 449.003L592.617 448.656C592.667 448.883 592.626 449.105 592.493 449.322C592.359 449.531 592.127 449.73 591.797 449.921C591.334 450.189 590.829 450.356 590.283 450.422C589.736 450.488 589.19 450.462 588.644 450.345C588.092 450.224 587.574 450.024 587.091 449.745C586.602 449.463 586.256 449.164 586.053 448.849C585.843 448.53 585.796 448.212 585.91 447.897C586.024 447.582 586.313 447.29 586.777 447.023C587.12 446.825 587.482 446.689 587.863 446.616C588.25 446.539 588.65 446.52 589.063 446.561L588.434 446.198L589.692 445.472L594.512 448.255C594.989 448.53 595.274 448.823 595.37 449.135C595.471 449.45 595.411 449.763 595.189 450.075C594.966 450.387 594.611 450.684 594.122 450.966ZM591.102 449.146C591.369 448.992 591.531 448.828 591.588 448.656C591.638 448.48 591.6 448.304 591.473 448.128C591.34 447.948 591.121 447.771 590.816 447.595C590.511 447.419 590.203 447.292 589.892 447.215C589.581 447.138 589.276 447.116 588.977 447.149C588.673 447.178 588.387 447.27 588.12 447.424C587.847 447.582 587.685 447.749 587.634 447.925C587.577 448.097 587.615 448.273 587.749 448.453C587.888 448.629 588.111 448.805 588.415 448.981C588.72 449.157 589.025 449.285 589.33 449.366C589.635 449.439 589.94 449.461 590.244 449.432C590.543 449.399 590.829 449.303 591.102 449.146ZM589.153 443.583L590.449 442.835L592.983 444.298C592.938 444.059 592.976 443.828 593.097 443.605C593.218 443.381 593.44 443.176 593.764 442.989C594.139 442.772 594.536 442.635 594.955 442.576C595.374 442.51 595.799 442.525 596.231 442.62C596.669 442.712 597.095 442.877 597.508 443.115L600.594 444.897L599.308 445.64L596.374 443.946C596.063 443.766 595.745 443.667 595.421 443.649C595.091 443.627 594.767 443.707 594.45 443.891C594.272 443.993 594.142 444.116 594.059 444.259C593.977 444.395 593.97 444.549 594.04 444.721C594.116 444.89 594.301 445.058 594.593 445.227L597.308 446.795L596.012 447.543L589.153 443.583ZM603.899 442.989C603.588 443.168 603.296 443.297 603.023 443.374C602.744 443.447 602.448 443.464 602.137 443.423C601.832 443.379 601.508 443.258 601.165 443.06L598.498 441.52L597.641 442.015L596.66 441.449L597.517 440.954L595.993 440.074L597.288 439.326L598.812 440.206L600.051 439.491L601.032 440.057L599.794 440.772L602.328 442.235C602.486 442.327 602.639 442.375 602.785 442.378C602.925 442.378 603.08 442.329 603.252 442.23L604.023 441.784L605.005 442.351L603.899 442.989Z" fill="#465358"/>
|
|
255
|
+
<path d="M763.572 523.41L768.668 526.352L768.668 527.793L764.962 525.654L764.962 527.392L768.392 529.372L768.392 530.747L764.962 528.767L764.962 530.692L768.649 532.821L768.649 534.262L763.572 531.33L763.572 523.41ZM771.365 535.829C771.053 535.65 770.796 535.461 770.593 535.263C770.39 535.057 770.228 534.81 770.107 534.52C769.993 534.234 769.936 533.893 769.936 533.497L769.936 530.417L769.078 529.922L769.078 528.789L769.936 529.284L769.936 527.524L771.231 528.272L771.231 530.032L772.47 530.747L772.47 531.88L771.231 531.165L771.231 534.091C771.231 534.275 771.266 534.43 771.336 534.559C771.406 534.68 771.526 534.79 771.698 534.889L772.47 535.334L772.47 536.467L771.365 535.829ZM773.208 528.973L774.503 529.721L774.503 532.647C774.687 532.49 774.907 532.407 775.161 532.4C775.415 532.393 775.704 532.482 776.027 532.669C776.402 532.886 776.72 533.161 776.98 533.494C777.247 533.824 777.447 534.2 777.58 534.622C777.72 535.047 777.79 535.498 777.79 535.975L777.79 539.539L776.504 538.796L776.504 535.408C776.504 535.049 776.431 534.725 776.285 534.435C776.139 534.138 775.907 533.898 775.589 533.714C775.411 533.612 775.24 533.56 775.075 533.56C774.916 533.557 774.78 533.628 774.665 533.775C774.557 533.925 774.503 534.169 774.503 534.506L774.503 537.641L773.208 536.893L773.208 528.973ZM778.771 534.385L780.066 535.133L780.066 540.853L778.771 540.105L778.771 534.385ZM778.771 532.185L780.066 532.933L780.066 534.264L778.771 533.516L778.771 532.185ZM783.327 542.868C782.819 542.574 782.377 542.191 782.003 541.718C781.634 541.242 781.352 540.723 781.155 540.162C780.958 539.593 780.86 539.023 780.86 538.451C780.86 537.879 780.958 537.423 781.155 537.082C781.352 536.741 781.634 536.548 782.003 536.504C782.377 536.464 782.819 536.59 783.327 536.884C784.006 537.276 784.546 537.786 784.946 538.413C785.346 539.04 785.585 539.713 785.661 540.431L784.365 539.683C784.308 539.35 784.187 539.045 784.003 538.77C783.825 538.492 783.6 538.273 783.327 538.116C783.073 537.969 782.86 537.92 782.689 537.967C782.517 538.008 782.387 538.134 782.298 538.347C782.216 538.563 782.174 538.851 782.174 539.21C782.174 539.57 782.216 539.905 782.298 540.217C782.387 540.525 782.517 540.802 782.689 541.047C782.86 541.293 783.073 541.489 783.327 541.636C783.613 541.801 783.845 541.843 784.022 541.762C784.207 541.685 784.321 541.491 784.365 541.179L785.661 541.927C785.585 542.58 785.343 542.998 784.937 543.181C784.53 543.357 783.994 543.253 783.327 542.868ZM788.344 545.764C787.639 545.357 787.086 544.877 786.686 544.323C786.292 543.773 786.076 543.139 786.038 542.42L787.296 543.146C787.327 543.516 787.432 543.826 787.61 544.076C787.794 544.329 788.055 544.552 788.391 544.747C788.664 544.904 788.883 544.976 789.049 544.961C789.214 544.939 789.296 544.829 789.296 544.631C789.296 544.492 789.271 544.367 789.22 544.257C789.169 544.147 789.061 544.011 788.896 543.85C788.737 543.685 788.49 543.476 788.153 543.223C787.645 542.827 787.245 542.464 786.953 542.134C786.661 541.804 786.451 541.489 786.324 541.188C786.203 540.891 786.143 540.578 786.143 540.248C786.143 539.705 786.334 539.39 786.715 539.302C787.096 539.214 787.607 539.355 788.248 539.725C788.96 540.136 789.503 540.625 789.877 541.194C790.252 541.755 790.446 542.343 790.458 542.959L789.258 542.266C789.252 541.918 789.157 541.624 788.972 541.386C788.788 541.148 788.547 540.942 788.248 540.77C788.001 540.627 787.797 540.565 787.639 540.583C787.486 540.605 787.41 540.711 787.41 540.902C787.41 541.041 787.442 541.173 787.505 541.298C787.575 541.419 787.693 541.56 787.858 541.722C788.029 541.879 788.28 542.083 788.61 542.332C789.112 542.717 789.506 543.073 789.792 543.399C790.077 543.718 790.281 544.03 790.401 544.334C790.522 544.631 790.582 544.945 790.582 545.275C790.582 545.839 790.376 546.16 789.963 546.237C789.557 546.31 789.017 546.153 788.344 545.764Z" fill="#5F52FF"/>
|
|
256
|
+
<path d="M668.563 660.612C667.82 660.183 667.248 659.614 666.848 658.906C666.454 658.195 666.257 657.425 666.257 656.596L666.257 656.156L667.6 656.932L667.6 657.372C667.6 657.797 667.677 658.164 667.829 658.472C667.981 658.78 668.226 659.031 668.563 659.226C668.899 659.42 669.144 659.451 669.296 659.319C669.449 659.187 669.525 658.908 669.525 658.483L669.525 653.115L670.916 653.918L670.916 659.286C670.916 660.107 670.709 660.641 670.296 660.887C669.89 661.136 669.312 661.044 668.563 660.612ZM674.216 663.875C673.695 663.575 673.241 663.184 672.853 662.704C672.472 662.22 672.18 661.695 671.977 661.131C671.78 660.562 671.682 659.992 671.682 659.42C671.682 658.848 671.78 658.392 671.977 658.051C672.18 657.713 672.472 657.526 672.853 657.49C673.241 657.457 673.695 657.591 674.216 657.891C674.743 658.196 675.197 658.586 675.578 659.063C675.965 659.543 676.257 660.067 676.454 660.636C676.651 661.204 676.75 661.774 676.75 662.346C676.75 662.918 676.651 663.375 676.454 663.716C676.257 664.049 675.965 664.236 675.578 664.277C675.197 664.313 674.743 664.18 674.216 663.875ZM674.216 662.643C674.495 662.805 674.724 662.863 674.901 662.819C675.086 662.779 675.219 662.654 675.302 662.445C675.39 662.233 675.435 661.947 675.435 661.587C675.435 661.228 675.39 660.891 675.302 660.575C675.219 660.264 675.086 659.985 674.901 659.739C674.724 659.49 674.495 659.285 674.216 659.123C673.942 658.966 673.714 658.907 673.53 658.947C673.352 658.984 673.218 659.109 673.13 659.321C673.041 659.534 672.996 659.82 672.996 660.179C672.996 660.539 673.041 660.876 673.13 661.191C673.218 661.499 673.352 661.778 673.53 662.027C673.714 662.28 673.942 662.486 674.216 662.643ZM680.329 667.405C679.98 667.203 679.678 666.952 679.424 666.652C679.17 666.351 678.958 666.008 678.786 665.623L678.786 666.382L677.529 665.656L677.529 657.736L678.824 658.484L678.824 661.366C678.996 661.201 679.205 661.12 679.453 661.124C679.707 661.131 679.999 661.23 680.329 661.421C680.793 661.689 681.19 662.046 681.52 662.494C681.85 662.941 682.101 663.441 682.273 663.995C682.444 664.541 682.53 665.104 682.53 665.684C682.53 666.256 682.444 666.719 682.273 667.075C682.101 667.423 681.85 667.634 681.52 667.708C681.19 667.774 680.793 667.673 680.329 667.405ZM680.006 665.986C680.279 666.144 680.504 666.201 680.682 666.157C680.86 666.113 680.99 665.986 681.073 665.777C681.161 665.564 681.206 665.278 681.206 664.919C681.206 664.56 681.161 664.222 681.073 663.907C680.99 663.595 680.86 663.319 680.682 663.077C680.504 662.827 680.279 662.624 680.006 662.466C679.739 662.312 679.517 662.257 679.339 662.301C679.161 662.338 679.028 662.462 678.939 662.675C678.85 662.888 678.805 663.174 678.805 663.533C678.805 663.892 678.85 664.23 678.939 664.545C679.028 664.853 679.161 665.132 679.339 665.381C679.517 665.63 679.739 665.832 680.006 665.986ZM666.572 662.41L669.496 664.098C670.042 664.414 670.506 664.795 670.887 665.242C671.268 665.682 671.554 666.152 671.744 666.651C671.941 667.153 672.04 667.653 672.04 668.152C672.04 668.651 671.941 669.041 671.744 669.324C671.554 669.602 671.268 669.745 670.887 669.752C670.506 669.752 670.042 669.595 669.496 669.279L667.962 668.394L667.962 671.133L666.572 670.33L666.572 662.41ZM669.42 667.849C669.826 668.084 670.131 668.157 670.334 668.069C670.538 667.981 670.639 667.739 670.639 667.343C670.639 666.955 670.538 666.599 670.334 666.276C670.131 665.954 669.826 665.675 669.42 665.44L667.962 664.599L667.962 667.008L669.42 667.849ZM672.803 668.208L674.06 668.934L674.06 669.924C674.219 669.641 674.422 669.491 674.67 669.473C674.918 669.447 675.207 669.529 675.537 669.72L675.937 669.951L675.937 671.326L675.48 671.062C675.188 670.893 674.94 670.805 674.737 670.798C674.533 670.783 674.375 670.871 674.26 671.062C674.152 671.249 674.098 671.555 674.098 671.981L674.098 674.676L672.803 673.928L672.803 668.208ZM678.988 677.631C678.467 677.33 678.013 676.939 677.626 676.459C677.245 675.975 676.953 675.451 676.749 674.886C676.552 674.318 676.454 673.748 676.454 673.176C676.454 672.604 676.552 672.147 676.749 671.806C676.953 671.469 677.245 671.282 677.626 671.245C678.013 671.212 678.467 671.346 678.988 671.647C679.515 671.951 679.969 672.341 680.35 672.818C680.738 673.298 681.03 673.823 681.227 674.391C681.424 674.959 681.522 675.53 681.522 676.102C681.522 676.674 681.424 677.13 681.227 677.471C681.03 677.805 680.738 677.992 680.35 678.032C679.969 678.069 679.515 677.935 678.988 677.631ZM678.988 676.399C679.267 676.56 679.496 676.619 679.674 676.575C679.858 676.534 679.991 676.41 680.074 676.201C680.163 675.988 680.207 675.702 680.207 675.343C680.207 674.983 680.163 674.646 680.074 674.331C679.991 674.019 679.858 673.74 679.674 673.495C679.496 673.245 679.267 673.04 678.988 672.879C678.715 672.721 678.486 672.662 678.302 672.703C678.124 672.739 677.991 672.864 677.902 673.077C677.813 673.289 677.769 673.575 677.769 673.935C677.769 674.294 677.813 674.631 677.902 674.947C677.991 675.255 678.124 675.533 678.302 675.783C678.486 676.036 678.715 676.241 678.988 676.399ZM682.806 675.116L681.949 674.621L681.949 673.488L682.806 673.983L682.806 673.279C682.806 672.89 682.863 672.619 682.978 672.465C683.098 672.315 683.26 672.258 683.463 672.294C683.667 672.324 683.924 672.428 684.235 672.608L685.34 673.246L685.34 674.379L684.568 673.933C684.397 673.834 684.276 673.805 684.206 673.845C684.137 673.886 684.102 673.998 684.102 674.181L684.102 674.731L685.34 675.446L685.34 676.579L684.102 675.864L684.102 680.451L682.806 679.703L682.806 675.116ZM686.069 675.867L687.364 676.615L687.364 682.335L686.069 681.587L686.069 675.867ZM686.069 673.667L687.364 674.415L687.364 675.746L686.069 674.998L686.069 673.667ZM688.348 674.983L689.644 675.731L689.644 683.651L688.348 682.903L688.348 674.983ZM692.913 685.67C692.405 685.377 691.961 684.992 691.58 684.515C691.205 684.035 690.919 683.514 690.722 682.953C690.526 682.385 690.427 681.815 690.427 681.243C690.427 680.671 690.526 680.214 690.722 679.873C690.919 679.532 691.205 679.342 691.58 679.301C691.961 679.265 692.405 679.393 692.913 679.686C693.428 679.983 693.872 680.368 694.247 680.841C694.622 681.307 694.904 681.833 695.095 682.42C695.292 683.003 695.39 683.61 695.39 684.24L695.39 684.57L691.713 682.447C691.745 682.752 691.812 683.036 691.913 683.3C692.021 683.56 692.158 683.797 692.323 684.009C692.494 684.218 692.691 684.387 692.913 684.515C693.193 684.677 693.425 684.748 693.609 684.73C693.799 684.708 693.945 684.609 694.047 684.433L695.305 685.159C695.139 685.643 694.847 685.936 694.428 686.039C694.015 686.138 693.51 686.015 692.913 685.67ZM694.095 682.788C694.031 682.356 693.898 681.971 693.695 681.633C693.491 681.289 693.231 681.025 692.913 680.841C692.59 680.654 692.326 680.616 692.123 680.726C691.92 680.829 691.786 681.06 691.723 681.419L694.095 682.788Z" fill="#5F52FF"/>
|
|
257
|
+
<path d="M319.706 527.272C318.988 526.857 318.369 526.32 317.848 525.66C317.334 524.996 316.943 524.276 316.676 523.498C316.416 522.725 316.286 521.96 316.286 521.205C316.286 520.442 316.416 519.828 316.676 519.362C316.943 518.893 317.334 518.627 317.848 518.565C318.369 518.499 318.988 518.673 319.706 519.087C320.43 519.505 321.049 520.046 321.563 520.71C322.084 521.37 322.475 522.087 322.735 522.86C323.002 523.638 323.135 524.404 323.135 525.159C323.135 525.915 323.002 526.527 322.735 526.997C322.475 527.47 322.084 527.739 321.563 527.805C321.049 527.867 320.43 527.69 319.706 527.272ZM319.706 525.842C320.157 526.102 320.528 526.199 320.82 526.133C321.119 526.063 321.338 525.871 321.478 525.556C321.617 525.233 321.687 524.822 321.687 524.323C321.687 523.817 321.617 523.326 321.478 522.85C321.338 522.365 321.119 521.92 320.82 521.513C320.528 521.11 320.157 520.778 319.706 520.517C319.268 520.264 318.899 520.169 318.601 520.231C318.302 520.294 318.083 520.486 317.943 520.809C317.804 521.132 317.734 521.542 317.734 522.041C317.734 522.54 317.804 523.031 317.943 523.515C318.083 523.992 318.302 524.437 318.601 524.851C318.899 525.259 319.268 525.589 319.706 525.842ZM326.72 525.337C327.184 525.605 327.58 525.962 327.911 526.41C328.241 526.857 328.492 527.357 328.663 527.911C328.835 528.457 328.92 529.02 328.92 529.6C328.92 530.172 328.835 530.635 328.663 530.991C328.492 531.339 328.241 531.55 327.911 531.624C327.58 531.69 327.184 531.589 326.72 531.321C326.39 531.13 326.098 530.892 325.843 530.606C325.596 530.316 325.386 529.99 325.215 529.627L325.215 532.52L323.919 531.772L323.919 523.852L325.177 524.578L325.177 525.337C325.348 525.15 325.561 525.053 325.815 525.046C326.069 525.038 326.371 525.135 326.72 525.337ZM326.396 526.382C326.129 526.228 325.907 526.173 325.729 526.217C325.551 526.254 325.418 526.378 325.329 526.591C325.24 526.804 325.196 527.09 325.196 527.449C325.196 527.808 325.24 528.146 325.329 528.461C325.418 528.769 325.551 529.048 325.729 529.297C325.907 529.546 326.129 529.748 326.396 529.902C326.669 530.06 326.895 530.117 327.072 530.073C327.25 530.029 327.38 529.902 327.463 529.693C327.552 529.48 327.596 529.194 327.596 528.835C327.596 528.476 327.552 528.138 327.463 527.823C327.38 527.511 327.25 527.235 327.072 526.993C326.895 526.743 326.669 526.54 326.396 526.382ZM331.63 534.024C331.319 533.844 331.062 533.656 330.859 533.458C330.655 533.252 330.493 533.005 330.373 532.715C330.258 532.429 330.201 532.088 330.201 531.692L330.201 528.612L329.344 528.117L329.344 526.984L330.201 527.479L330.201 525.719L331.497 526.467L331.497 528.227L332.735 528.942L332.735 530.075L331.497 529.36L331.497 532.286C331.497 532.469 331.532 532.625 331.602 532.754C331.671 532.875 331.792 532.985 331.964 533.084L332.735 533.529L332.735 534.662L331.63 534.024ZM333.464 529.363L334.759 530.111L334.759 535.831L333.464 535.083L333.464 529.363ZM333.464 527.163L334.759 527.911L334.759 529.242L333.464 528.494L333.464 527.163ZM338.068 537.873C337.547 537.572 337.093 537.182 336.705 536.701C336.324 536.217 336.032 535.693 335.829 535.128C335.632 534.56 335.534 533.99 335.534 533.418C335.534 532.846 335.632 532.389 335.829 532.048C336.032 531.711 336.324 531.524 336.705 531.487C337.093 531.454 337.547 531.588 338.068 531.889C338.595 532.193 339.049 532.584 339.43 533.06C339.817 533.541 340.109 534.065 340.306 534.633C340.503 535.202 340.602 535.772 340.602 536.344C340.602 536.916 340.503 537.372 340.306 537.713C340.109 538.047 339.817 538.234 339.43 538.274C339.049 538.311 338.595 538.177 338.068 537.873ZM338.068 536.641C338.347 536.802 338.576 536.861 338.754 536.817C338.938 536.776 339.071 536.652 339.154 536.443C339.243 536.23 339.287 535.944 339.287 535.585C339.287 535.225 339.243 534.888 339.154 534.573C339.071 534.261 338.938 533.982 338.754 533.737C338.576 533.487 338.347 533.282 338.068 533.121C337.795 532.963 337.566 532.904 337.382 532.945C337.204 532.981 337.071 533.106 336.982 533.319C336.893 533.531 336.848 533.817 336.848 534.177C336.848 534.536 336.893 534.873 336.982 535.189C337.071 535.497 337.204 535.775 337.382 536.025C337.566 536.278 337.795 536.483 338.068 536.641ZM341.381 533.934L342.638 534.66L342.638 535.441C342.823 535.268 343.045 535.177 343.305 535.166C343.566 535.147 343.864 535.235 344.201 535.43C344.575 535.646 344.893 535.921 345.153 536.255C345.42 536.585 345.62 536.961 345.753 537.382C345.893 537.808 345.963 538.259 345.963 538.735L345.963 542.299L344.677 541.557L344.677 538.169C344.677 537.809 344.604 537.485 344.458 537.195C344.312 536.898 344.08 536.658 343.762 536.475C343.585 536.372 343.413 536.321 343.248 536.321C343.089 536.317 342.953 536.389 342.838 536.535C342.73 536.686 342.676 536.929 342.676 537.267L342.676 540.402L341.381 539.654L341.381 533.934ZM316.572 528.41L317.962 529.213L317.962 532.348L321.011 534.108L321.011 530.973L322.402 531.776L322.402 539.696L321.011 538.893L321.011 535.56L317.962 533.8L317.962 537.133L316.572 536.33L316.572 528.41ZM325.025 541.343C324.479 541.027 324.041 540.624 323.711 540.133C323.381 539.634 323.215 539.11 323.215 538.56C323.215 538.222 323.282 537.979 323.415 537.828C323.555 537.674 323.765 537.605 324.044 537.619C324.33 537.638 324.698 537.733 325.149 537.905L326.559 538.433L326.559 538.136C326.559 537.88 326.492 537.65 326.359 537.449C326.226 537.247 326.007 537.058 325.702 536.882C325.416 536.717 325.184 536.653 325.006 536.69C324.835 536.73 324.746 536.888 324.74 537.163L323.454 536.42C323.46 535.779 323.669 535.412 324.082 535.32C324.501 535.225 325.038 535.366 325.692 535.744C326.397 536.151 326.927 536.607 327.283 537.113C327.645 537.623 327.826 538.149 327.826 538.692L327.826 542.828L326.597 542.118L326.597 541.48C326.394 541.634 326.162 541.698 325.902 541.673C325.648 541.643 325.356 541.533 325.025 541.343ZM325.349 540.452C325.565 540.576 325.762 540.646 325.94 540.661C326.124 540.679 326.273 540.626 326.388 540.501C326.502 540.377 326.559 540.171 326.559 539.885L326.559 539.401L325.397 539.005C325.092 538.895 324.873 538.857 324.74 538.89C324.606 538.915 324.54 539.042 324.54 539.269C324.54 539.489 324.606 539.704 324.74 539.913C324.879 540.118 325.083 540.298 325.349 540.452ZM328.692 537.608L329.949 538.334L329.949 539.115C330.133 538.942 330.356 538.851 330.616 538.84C330.876 538.821 331.175 538.909 331.511 539.104C331.886 539.32 332.204 539.595 332.464 539.929C332.731 540.259 332.931 540.634 333.064 541.056C333.204 541.481 333.274 541.932 333.274 542.409L333.274 545.973L331.988 545.231L331.988 541.843C331.988 541.483 331.915 541.159 331.769 540.869C331.623 540.572 331.391 540.332 331.073 540.149C330.895 540.046 330.724 539.995 330.559 539.995C330.4 539.991 330.263 540.062 330.149 540.209C330.041 540.359 329.987 540.603 329.987 540.941L329.987 544.076L328.692 543.328L328.692 537.608ZM336.255 547.826C335.791 547.559 335.395 547.201 335.064 546.754C334.734 546.299 334.483 545.799 334.312 545.252C334.14 544.699 334.055 544.136 334.055 543.564C334.055 542.984 334.14 542.521 334.312 542.172C334.483 541.817 334.734 541.606 335.064 541.54C335.395 541.474 335.791 541.575 336.255 541.842C336.585 542.033 336.874 542.269 337.122 542.552C337.376 542.838 337.589 543.162 337.76 543.525L337.76 540.643L339.056 541.391L339.056 549.311L337.798 548.585L337.798 547.826C337.627 548.013 337.414 548.11 337.16 548.118C336.906 548.125 336.604 548.028 336.255 547.826ZM336.579 546.781C336.846 546.935 337.068 546.99 337.246 546.946C337.424 546.902 337.557 546.778 337.646 546.572C337.735 546.36 337.779 546.074 337.779 545.714C337.779 545.355 337.735 545.018 337.646 544.702C337.557 544.387 337.424 544.108 337.246 543.866C337.068 543.617 336.846 543.415 336.579 543.261C336.306 543.104 336.08 543.047 335.903 543.091C335.725 543.127 335.591 543.252 335.503 543.465C335.42 543.681 335.379 543.969 335.379 544.328C335.379 544.688 335.42 545.023 335.503 545.335C335.591 545.643 335.725 545.921 335.903 546.171C336.08 546.42 336.306 546.624 336.579 546.781ZM340.041 541.96L341.337 542.708L341.337 550.628L340.041 549.88L340.041 541.96ZM344.607 552.648C344.099 552.355 343.654 551.97 343.273 551.493C342.898 551.013 342.612 550.492 342.416 549.931C342.219 549.363 342.12 548.793 342.12 548.221C342.12 547.649 342.219 547.192 342.416 546.851C342.612 546.51 342.898 546.319 343.273 546.279C343.654 546.242 344.099 546.371 344.607 546.664C345.121 546.961 345.566 547.346 345.94 547.819C346.315 548.285 346.598 548.811 346.788 549.398C346.985 549.981 347.083 550.587 347.083 551.218L347.083 551.548L343.406 549.425C343.438 549.729 343.505 550.014 343.606 550.278C343.714 550.538 343.851 550.774 344.016 550.987C344.187 551.196 344.384 551.365 344.607 551.493C344.886 551.654 345.118 551.726 345.302 551.708C345.493 551.686 345.639 551.587 345.74 551.411L346.998 552.137C346.833 552.621 346.54 552.914 346.121 553.017C345.708 553.116 345.204 552.993 344.607 552.648ZM345.788 549.766C345.724 549.333 345.591 548.948 345.388 548.611C345.185 548.266 344.924 548.002 344.607 547.819C344.283 547.632 344.019 547.594 343.816 547.704C343.613 547.806 343.479 548.037 343.416 548.397L345.788 549.766ZM347.865 548.677L349.123 549.403L349.123 550.393C349.281 550.111 349.485 549.961 349.732 549.942C349.98 549.917 350.269 549.999 350.599 550.19L350.999 550.421L350.999 551.796L350.542 551.532C350.25 551.363 350.002 551.275 349.799 551.268C349.596 551.253 349.437 551.341 349.323 551.532C349.215 551.719 349.161 552.025 349.161 552.45L349.161 555.145L347.865 554.397L347.865 548.677ZM353.707 557.902C353.002 557.495 352.45 557.015 352.05 556.461C351.656 555.911 351.44 555.277 351.402 554.558L352.659 555.284C352.691 555.655 352.796 555.964 352.974 556.214C353.158 556.467 353.418 556.69 353.755 556.885C354.028 557.042 354.247 557.114 354.412 557.099C354.577 557.077 354.66 556.967 354.66 556.769C354.66 556.63 354.635 556.505 354.584 556.395C354.533 556.285 354.425 556.15 354.26 555.988C354.101 555.823 353.853 555.614 353.517 555.361C353.009 554.965 352.609 554.602 352.316 554.272C352.024 553.942 351.815 553.627 351.688 553.326C351.567 553.029 351.507 552.716 351.507 552.386C351.507 551.843 351.697 551.528 352.078 551.44C352.459 551.352 352.971 551.493 353.612 551.863C354.323 552.274 354.866 552.763 355.241 553.332C355.616 553.893 355.809 554.481 355.822 555.097L354.622 554.404C354.615 554.056 354.52 553.763 354.336 553.524C354.152 553.286 353.911 553.081 353.612 552.908C353.364 552.765 353.161 552.703 353.002 552.721C352.85 552.743 352.774 552.85 352.774 553.04C352.774 553.18 352.805 553.312 352.869 553.436C352.939 553.557 353.056 553.698 353.221 553.86C353.393 554.017 353.644 554.221 353.974 554.47C354.476 554.855 354.87 555.211 355.155 555.537C355.441 555.856 355.644 556.168 355.765 556.472C355.886 556.769 355.946 557.083 355.946 557.413C355.946 557.977 355.74 558.298 355.327 558.375C354.92 558.449 354.381 558.291 353.707 557.902Z" fill="#5F52FF"/>
|
|
258
|
+
<path d="M704.008 512.905L811.23 451L866.664 483.005" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
259
|
+
<path d="M707.706 525.274L811.231 465.505L866.664 497.509" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
260
|
+
<path d="M709.298 538.859L811.231 480.008L866.664 512.013" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
261
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 829.232 543.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
262
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 829.232 528.778)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
263
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 829.232 513.778)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
264
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 829.232 498.778)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
265
|
+
<path d="M893 505.996V533.496" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
266
|
+
<rect x="1.73205" width="43.616" height="43.616" transform="matrix(0.866025 -0.5 0.866025 0.5 853.661 484.674)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
267
|
+
<path d="M764 572.879L861.643 516.505" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
268
|
+
<path d="M764 587.879L861.643 531.505" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
269
|
+
<path d="M764 602.879L861.643 546.505" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
270
|
+
<path d="M925.49 516.504L977.543 546.557L851.526 619.313" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
271
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 649.116 468.567)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
272
|
+
<rect x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 655.116 498.05)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
273
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 662 511)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
274
|
+
<path d="M684.5 516L711.5 507" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
275
|
+
<path d="M650.5 471.5L656 500.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
276
|
+
<path d="M650.5 542L656 533" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
277
|
+
<path d="M684 548.5L711.5 577.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
278
|
+
<path d="M680.937 620.282L592.512 569.23L673.628 522.398" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
279
|
+
<path d="M925.49 530.504L978.119 560.89L853.697 632.725" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
280
|
+
<path d="M926.004 544.801L978.754 575.256L855.003 646.704" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
281
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 804.116 557.567)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
282
|
+
<rect x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 810.116 587.05)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
283
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 817 600)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
284
|
+
<path d="M839.5 605L866.5 596" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
285
|
+
<path d="M805.5 560.5L811 589.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
286
|
+
<path d="M805.5 631L811 622" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
287
|
+
<path d="M839 637.5L866.5 666.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
288
|
+
<path d="M828.5 609.55L745.486 657.478L681.326 620.435" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
289
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 727.116 513.567)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
290
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 752 557)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
291
|
+
<path d="M655 629.5L763.253 567" stroke="#C7BA41" stroke-linecap="round" stroke-linejoin="round"/>
|
|
292
|
+
<rect width="44.8221" height="104.742" transform="matrix(0.866025 -0.5 0.866025 0.5 559.699 668.612)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
293
|
+
<rect x="0.866025" width="43.8221" height="103.742" transform="matrix(0.866025 -0.5 0.866025 0.5 559.815 669.045)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
294
|
+
<path d="M510 706.5L618.253 644" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
295
|
+
<path d="M342 609L872.008 303" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
296
|
+
<path d="M338 604L868.008 298" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
297
|
+
<path d="M513 711.5L621.253 649" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
298
|
+
<path d="M513 718.5L621.253 656" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
299
|
+
<path d="M483.253 706.5L355.081 632.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
300
|
+
<path d="M480.253 718.5L348.617 642.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
301
|
+
<path d="M480.253 711.5L346.019 634" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
302
|
+
<path d="M863.253 281.5L778.382 232.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
303
|
+
<path d="M912.305 196.852L910.143 195.603L910.143 194.162L915.878 197.473L915.878 198.914L913.715 197.666L913.715 204.145L912.305 203.331L912.305 196.852ZM916.514 197.841L917.81 198.589L917.81 201.515C917.994 201.357 918.213 201.275 918.467 201.268C918.721 201.26 919.01 201.35 919.334 201.537C919.709 201.753 920.026 202.028 920.287 202.362C920.554 202.692 920.754 203.068 920.887 203.49C921.027 203.915 921.097 204.366 921.097 204.843L921.097 208.407L919.811 207.664L919.811 204.276C919.811 203.917 919.737 203.592 919.591 203.303C919.445 203.006 919.214 202.765 918.896 202.582C918.718 202.479 918.547 202.428 918.382 202.428C918.223 202.424 918.086 202.496 917.972 202.643C917.864 202.793 917.81 203.037 917.81 203.374L917.81 206.509L916.514 205.761L916.514 197.841ZM924.411 210.452C923.891 210.152 923.436 209.761 923.049 209.281C922.668 208.797 922.376 208.273 922.173 207.708C921.976 207.14 921.877 206.569 921.877 205.997C921.877 205.425 921.976 204.969 922.173 204.628C922.376 204.291 922.668 204.104 923.049 204.067C923.436 204.034 923.891 204.168 924.411 204.468C924.938 204.773 925.393 205.163 925.774 205.64C926.161 206.12 926.453 206.645 926.65 207.213C926.847 207.781 926.945 208.351 926.945 208.923C926.945 209.495 926.847 209.952 926.65 210.293C926.453 210.627 926.161 210.814 925.774 210.854C925.393 210.891 924.938 210.757 924.411 210.452ZM924.411 209.22C924.691 209.382 924.919 209.44 925.097 209.396C925.281 209.356 925.415 209.231 925.497 209.022C925.586 208.81 925.631 208.524 925.631 208.164C925.631 207.805 925.586 207.468 925.497 207.152C925.415 206.841 925.281 206.562 925.097 206.316C924.919 206.067 924.691 205.862 924.411 205.7C924.138 205.543 923.91 205.484 923.725 205.524C923.548 205.561 923.414 205.686 923.325 205.898C923.236 206.111 923.192 206.397 923.192 206.756C923.192 207.116 923.236 207.453 923.325 207.768C923.414 208.076 923.548 208.355 923.725 208.604C923.91 208.857 924.138 209.063 924.411 209.22ZM932.307 214.879L931.049 214.153L931.049 213.372C930.865 213.544 930.643 213.639 930.382 213.658C930.122 213.669 929.823 213.577 929.487 213.383C929.112 213.166 928.791 212.893 928.525 212.563C928.264 212.23 928.064 211.85 927.925 211.425C927.791 211.003 927.725 210.554 927.725 210.077L927.725 206.513L929.011 207.256L929.011 210.644C929.011 211.003 929.084 211.331 929.23 211.628C929.376 211.918 929.608 212.154 929.925 212.338C930.103 212.44 930.271 212.494 930.43 212.497C930.595 212.497 930.732 212.422 930.84 212.272C930.954 212.125 931.011 211.883 931.011 211.546L931.011 208.411L932.307 209.159L932.307 214.879ZM935.545 219.081C934.847 218.677 934.304 218.184 933.916 217.601C933.529 217.018 933.316 216.4 933.278 215.748L934.555 216.485C934.586 216.804 934.691 217.084 934.869 217.326C935.053 217.572 935.294 217.781 935.593 217.953C935.942 218.155 936.228 218.221 936.45 218.151C936.679 218.092 936.793 217.814 936.793 217.315L936.793 216.622C936.622 216.78 936.409 216.855 936.155 216.848C935.907 216.837 935.618 216.736 935.288 216.545C934.824 216.277 934.427 215.924 934.097 215.484C933.767 215.044 933.516 214.558 933.345 214.026C933.173 213.487 933.087 212.939 933.087 212.382C933.087 211.817 933.173 211.368 933.345 211.034C933.516 210.693 933.767 210.493 934.097 210.435C934.427 210.376 934.824 210.48 935.288 210.748C935.631 210.946 935.929 211.192 936.183 211.485C936.444 211.782 936.66 212.119 936.831 212.497L936.831 211.771L938.089 212.497L938.089 218.063C938.089 218.613 937.978 219.007 937.755 219.246C937.533 219.491 937.231 219.596 936.85 219.559C936.469 219.522 936.034 219.363 935.545 219.081ZM935.612 215.555C935.879 215.709 936.101 215.768 936.279 215.731C936.457 215.687 936.59 215.566 936.679 215.368C936.768 215.163 936.812 214.884 936.812 214.532C936.812 214.18 936.768 213.85 936.679 213.542C936.59 213.234 936.457 212.959 936.279 212.717C936.101 212.468 935.879 212.266 935.612 212.112C935.339 211.954 935.113 211.898 934.936 211.942C934.758 211.978 934.624 212.099 934.535 212.305C934.453 212.514 934.412 212.794 934.412 213.146C934.412 213.498 934.453 213.826 934.535 214.131C934.624 214.431 934.758 214.706 934.936 214.956C935.113 215.198 935.339 215.397 935.612 215.555ZM939.074 210.866L940.37 211.614L940.37 214.54C940.554 214.382 940.773 214.3 941.027 214.292C941.281 214.285 941.57 214.375 941.894 214.562C942.269 214.778 942.586 215.053 942.847 215.387C943.113 215.717 943.313 216.093 943.447 216.514C943.586 216.94 943.656 217.391 943.656 217.868L943.656 221.432L942.37 220.689L942.37 217.301C942.37 216.942 942.297 216.617 942.151 216.327C942.005 216.03 941.773 215.79 941.456 215.607C941.278 215.504 941.106 215.453 940.941 215.453C940.783 215.449 940.646 215.521 940.532 215.667C940.424 215.818 940.37 216.062 940.37 216.399L940.37 219.534L939.074 218.786L939.074 210.866ZM946.581 223.12C946.269 222.94 946.012 222.751 945.809 222.553C945.606 222.348 945.444 222.1 945.323 221.811C945.209 221.525 945.152 221.184 945.152 220.788L945.152 217.708L944.294 217.213L944.294 216.08L945.152 216.575L945.152 214.815L946.447 215.563L946.447 217.323L947.686 218.038L947.686 219.171L946.447 218.456L946.447 221.382C946.447 221.565 946.482 221.721 946.552 221.849C946.622 221.97 946.742 222.08 946.914 222.179L947.686 222.625L947.686 223.758L946.581 223.12ZM914.83 215.734C914.493 215.664 914.122 215.512 913.715 215.277C912.991 214.859 912.369 214.32 911.848 213.66C911.334 212.996 910.943 212.276 910.676 211.498C910.416 210.725 910.286 209.96 910.286 209.205C910.286 208.442 910.416 207.828 910.676 207.362C910.943 206.893 911.334 206.627 911.848 206.565C912.369 206.499 912.991 206.675 913.715 207.093C914.433 207.507 915.049 208.046 915.563 208.71C916.084 209.37 916.475 210.087 916.735 210.86C917.002 211.63 917.135 212.397 917.135 213.159C917.135 213.864 917.021 214.447 916.792 214.909C916.57 215.367 916.24 215.649 915.802 215.756L916.659 217.714L915.373 216.971L914.83 215.734ZM914.468 212.708L915.039 214.007C915.255 213.904 915.417 213.704 915.525 213.407C915.633 213.11 915.687 212.749 915.687 212.323C915.687 211.817 915.617 211.326 915.478 210.85C915.338 210.365 915.119 209.92 914.82 209.513C914.528 209.11 914.16 208.78 913.715 208.523C913.271 208.266 912.899 208.169 912.601 208.231C912.302 208.294 912.083 208.486 911.943 208.809C911.804 209.124 911.734 209.535 911.734 210.041C911.734 210.525 911.797 210.998 911.924 211.46C912.058 211.926 912.261 212.358 912.534 212.758C912.813 213.154 913.16 213.486 913.572 213.754C913.757 213.867 913.925 213.95 914.077 214.001L913.182 211.966L914.468 212.708ZM922.501 220.218L921.244 219.492L921.244 218.711C921.06 218.883 920.837 218.978 920.577 218.997C920.317 219.008 920.018 218.916 919.682 218.722C919.307 218.505 918.986 218.232 918.719 217.902C918.459 217.568 918.259 217.189 918.119 216.764C917.986 216.342 917.919 215.893 917.919 215.416L917.919 211.852L919.205 212.595L919.205 215.983C919.205 216.342 919.278 216.67 919.424 216.967C919.57 217.257 919.802 217.493 920.12 217.677C920.298 217.779 920.466 217.832 920.625 217.836C920.79 217.836 920.926 217.761 921.034 217.611C921.149 217.464 921.206 217.222 921.206 216.885L921.206 213.75L922.501 214.498L922.501 220.218ZM925.768 222.236C925.26 221.943 924.816 221.558 924.435 221.081C924.06 220.601 923.774 220.08 923.577 219.519C923.381 218.951 923.282 218.38 923.282 217.808C923.282 217.236 923.381 216.78 923.577 216.439C923.774 216.098 924.06 215.907 924.435 215.867C924.816 215.83 925.26 215.959 925.768 216.252C926.283 216.549 926.727 216.934 927.102 217.407C927.477 217.873 927.759 218.399 927.95 218.985C928.147 219.568 928.245 220.175 928.245 220.806L928.245 221.136L924.568 219.013C924.6 219.317 924.667 219.601 924.768 219.865C924.876 220.126 925.013 220.362 925.178 220.575C925.349 220.784 925.546 220.953 925.768 221.081C926.048 221.242 926.28 221.314 926.464 221.295C926.654 221.273 926.8 221.174 926.902 220.998L928.16 221.724C927.994 222.208 927.702 222.502 927.283 222.604C926.87 222.703 926.365 222.581 925.768 222.236ZM926.95 219.354C926.886 218.921 926.753 218.536 926.55 218.199C926.346 217.854 926.086 217.59 925.768 217.407C925.445 217.22 925.181 217.181 924.978 217.291C924.775 217.394 924.641 217.625 924.578 217.984L926.95 219.354ZM933.609 226.631L932.352 225.905L932.352 225.124C932.167 225.296 931.945 225.391 931.685 225.41C931.424 225.421 931.126 225.329 930.789 225.135C930.415 224.918 930.094 224.645 929.827 224.315C929.567 223.982 929.367 223.602 929.227 223.177C929.094 222.755 929.027 222.306 929.027 221.829L929.027 218.265L930.313 219.008L930.313 222.396C930.313 222.755 930.386 223.083 930.532 223.38C930.678 223.67 930.91 223.906 931.228 224.09C931.405 224.192 931.574 224.246 931.732 224.249C931.898 224.249 932.034 224.174 932.142 224.024C932.256 223.877 932.314 223.635 932.314 223.298L932.314 220.163L933.609 220.911L933.609 226.631ZM936.876 228.649C936.368 228.356 935.924 227.971 935.543 227.494C935.168 227.014 934.882 226.493 934.685 225.932C934.488 225.364 934.39 224.794 934.39 224.222C934.39 223.65 934.488 223.193 934.685 222.852C934.882 222.511 935.168 222.32 935.543 222.28C935.924 222.243 936.368 222.372 936.876 222.665C937.391 222.962 937.835 223.347 938.21 223.82C938.585 224.286 938.867 224.812 939.058 225.399C939.255 225.982 939.353 226.588 939.353 227.219L939.353 227.549L935.676 225.426C935.708 225.73 935.774 226.015 935.876 226.279C935.984 226.539 936.12 226.775 936.286 226.988C936.457 227.197 936.654 227.366 936.876 227.494C937.156 227.655 937.387 227.727 937.572 227.709C937.762 227.687 937.908 227.588 938.01 227.412L939.267 228.138C939.102 228.622 938.81 228.915 938.391 229.018C937.978 229.117 937.473 228.994 936.876 228.649ZM938.057 225.767C937.994 225.334 937.861 224.949 937.657 224.612C937.454 224.267 937.194 224.003 936.876 223.82C936.552 223.633 936.289 223.595 936.086 223.705C935.882 223.807 935.749 224.038 935.685 224.398L938.057 225.767Z" fill="#5F52FF"/>
|
|
304
|
+
<path d="M770.305 150.852L768.143 149.603L768.143 148.162L773.878 151.473L773.878 152.914L771.715 151.666L771.715 158.145L770.305 157.331L770.305 150.852ZM776.067 160.79C775.521 160.474 775.083 160.071 774.753 159.58C774.422 159.081 774.257 158.557 774.257 158.007C774.257 157.669 774.324 157.425 774.457 157.275C774.597 157.121 774.807 157.051 775.086 157.066C775.372 157.084 775.74 157.18 776.191 157.352L777.601 157.88L777.601 157.583C777.601 157.326 777.534 157.097 777.401 156.896C777.268 156.694 777.048 156.505 776.744 156.329C776.458 156.164 776.226 156.1 776.048 156.137C775.877 156.177 775.788 156.335 775.781 156.61L774.495 155.867C774.502 155.225 774.711 154.859 775.124 154.767C775.543 154.672 776.08 154.813 776.734 155.191C777.439 155.598 777.969 156.054 778.325 156.56C778.687 157.07 778.868 157.596 778.868 158.139L778.868 162.275L777.639 161.565L777.639 160.927C777.436 161.081 777.204 161.145 776.944 161.12C776.69 161.09 776.397 160.98 776.067 160.79ZM776.391 159.899C776.607 160.023 776.804 160.093 776.982 160.108C777.166 160.126 777.315 160.073 777.429 159.948C777.544 159.823 777.601 159.618 777.601 159.332L777.601 158.848L776.439 158.452C776.134 158.342 775.915 158.304 775.781 158.337C775.648 158.362 775.581 158.489 775.581 158.716C775.581 158.936 775.648 159.151 775.781 159.36C775.921 159.565 776.124 159.745 776.391 159.899ZM781.715 164.05C781.01 163.643 780.457 163.163 780.057 162.609C779.664 162.059 779.448 161.425 779.41 160.706L780.667 161.432C780.699 161.803 780.804 162.112 780.981 162.362C781.166 162.615 781.426 162.838 781.762 163.033C782.036 163.19 782.255 163.262 782.42 163.247C782.585 163.225 782.667 163.115 782.667 162.917C782.667 162.778 782.642 162.653 782.591 162.543C782.54 162.433 782.433 162.298 782.267 162.136C782.109 161.971 781.861 161.762 781.524 161.509C781.016 161.113 780.616 160.75 780.324 160.42C780.032 160.09 779.822 159.775 779.695 159.474C779.575 159.177 779.514 158.864 779.514 158.534C779.514 157.991 779.705 157.676 780.086 157.588C780.467 157.5 780.978 157.641 781.62 158.011C782.331 158.422 782.874 158.911 783.249 159.48C783.623 160.041 783.817 160.629 783.83 161.245L782.629 160.552C782.623 160.204 782.528 159.911 782.344 159.672C782.159 159.434 781.918 159.229 781.62 159.056C781.372 158.913 781.169 158.851 781.01 158.869C780.857 158.891 780.781 158.998 780.781 159.188C780.781 159.328 780.813 159.46 780.877 159.584C780.946 159.705 781.064 159.846 781.229 160.008C781.4 160.165 781.651 160.369 781.982 160.618C782.483 161.003 782.877 161.359 783.163 161.685C783.449 162.004 783.652 162.316 783.773 162.62C783.893 162.917 783.954 163.231 783.954 163.561C783.954 164.125 783.747 164.446 783.334 164.523C782.928 164.597 782.388 164.439 781.715 164.05ZM784.617 157.674L785.913 158.422L785.913 162.932L787.847 161.739L789.381 162.624L787.504 163.719L789.504 168.416L787.99 167.541L786.608 164.247L785.913 164.67L785.913 166.342L784.617 165.594L784.617 157.674ZM792.004 169.991C791.299 169.584 790.747 169.103 790.346 168.55C789.953 168 789.737 167.365 789.699 166.647L790.956 167.373C790.988 167.743 791.093 168.053 791.27 168.302C791.455 168.555 791.715 168.779 792.052 168.973C792.325 169.131 792.544 169.202 792.709 169.188C792.874 169.166 792.957 169.056 792.957 168.858C792.957 168.718 792.931 168.594 792.88 168.484C792.83 168.374 792.722 168.238 792.557 168.077C792.398 167.912 792.15 167.703 791.813 167.45C791.305 167.054 790.905 166.691 790.613 166.361C790.321 166.031 790.111 165.715 789.984 165.415C789.864 165.118 789.803 164.804 789.803 164.474C789.803 163.932 789.994 163.616 790.375 163.528C790.756 163.44 791.267 163.581 791.909 163.952C792.62 164.362 793.163 164.852 793.538 165.42C793.912 165.981 794.106 166.57 794.119 167.186L792.919 166.493C792.912 166.144 792.817 165.851 792.633 165.613C792.449 165.374 792.207 165.169 791.909 164.997C791.661 164.854 791.458 164.791 791.299 164.81C791.147 164.832 791.07 164.938 791.07 165.129C791.07 165.268 791.102 165.4 791.166 165.525C791.236 165.646 791.353 165.787 791.518 165.948C791.69 166.106 791.94 166.309 792.271 166.559C792.772 166.944 793.166 167.299 793.452 167.626C793.738 167.945 793.941 168.256 794.062 168.561C794.182 168.858 794.243 169.171 794.243 169.501C794.243 170.066 794.036 170.387 793.623 170.464C793.217 170.537 792.677 170.379 792.004 169.991ZM772.83 169.734C772.493 169.664 772.122 169.512 771.715 169.277C770.991 168.859 770.369 168.32 769.848 167.66C769.334 166.996 768.943 166.276 768.676 165.498C768.416 164.725 768.286 163.96 768.286 163.205C768.286 162.442 768.416 161.828 768.676 161.362C768.943 160.893 769.334 160.627 769.848 160.565C770.369 160.499 770.991 160.675 771.715 161.093C772.433 161.507 773.049 162.046 773.563 162.71C774.084 163.37 774.475 164.087 774.735 164.86C775.002 165.63 775.135 166.397 775.135 167.159C775.135 167.864 775.021 168.447 774.792 168.909C774.57 169.367 774.24 169.649 773.802 169.756L774.659 171.714L773.373 170.971L772.83 169.734ZM772.468 166.708L773.039 168.007C773.255 167.904 773.417 167.704 773.525 167.407C773.633 167.11 773.687 166.749 773.687 166.323C773.687 165.817 773.617 165.326 773.478 164.85C773.338 164.365 773.119 163.92 772.82 163.513C772.528 163.11 772.16 162.78 771.715 162.523C771.271 162.266 770.899 162.169 770.601 162.231C770.302 162.294 770.083 162.486 769.943 162.809C769.804 163.124 769.734 163.535 769.734 164.041C769.734 164.525 769.797 164.998 769.924 165.46C770.058 165.926 770.261 166.358 770.534 166.758C770.813 167.154 771.16 167.486 771.572 167.754C771.757 167.867 771.925 167.95 772.077 168.001L771.182 165.966L772.468 166.708ZM780.501 174.218L779.244 173.492L779.244 172.711C779.06 172.883 778.837 172.978 778.577 172.997C778.317 173.008 778.018 172.916 777.682 172.722C777.307 172.505 776.986 172.232 776.719 171.902C776.459 171.568 776.259 171.189 776.119 170.764C775.986 170.342 775.919 169.893 775.919 169.416L775.919 165.852L777.205 166.595L777.205 169.983C777.205 170.342 777.278 170.67 777.424 170.967C777.57 171.257 777.802 171.493 778.12 171.677C778.298 171.779 778.466 171.832 778.625 171.836C778.79 171.836 778.926 171.761 779.034 171.611C779.149 171.464 779.206 171.222 779.206 170.885L779.206 167.75L780.501 168.498L780.501 174.218ZM783.768 176.236C783.26 175.943 782.816 175.558 782.435 175.081C782.06 174.601 781.774 174.08 781.577 173.519C781.381 172.951 781.282 172.38 781.282 171.808C781.282 171.236 781.381 170.78 781.577 170.439C781.774 170.098 782.06 169.907 782.435 169.867C782.816 169.83 783.26 169.959 783.768 170.252C784.283 170.549 784.727 170.934 785.102 171.407C785.477 171.873 785.759 172.399 785.95 172.985C786.147 173.568 786.245 174.175 786.245 174.806L786.245 175.136L782.568 173.013C782.6 173.317 782.667 173.601 782.768 173.865C782.876 174.126 783.013 174.362 783.178 174.575C783.349 174.784 783.546 174.953 783.768 175.081C784.048 175.242 784.28 175.314 784.464 175.295C784.654 175.273 784.8 175.174 784.902 174.998L786.16 175.724C785.994 176.208 785.702 176.502 785.283 176.604C784.87 176.703 784.365 176.581 783.768 176.236ZM784.95 173.354C784.886 172.921 784.753 172.536 784.55 172.199C784.346 171.854 784.086 171.59 783.768 171.407C783.445 171.22 783.181 171.181 782.978 171.291C782.775 171.394 782.641 171.625 782.578 171.984L784.95 173.354ZM791.609 180.631L790.352 179.905L790.352 179.124C790.167 179.296 789.945 179.391 789.685 179.41C789.424 179.421 789.126 179.329 788.789 179.135C788.415 178.918 788.094 178.645 787.827 178.315C787.567 177.982 787.367 177.602 787.227 177.177C787.094 176.755 787.027 176.306 787.027 175.829L787.027 172.265L788.313 173.008L788.313 176.396C788.313 176.755 788.386 177.083 788.532 177.38C788.678 177.67 788.91 177.906 789.228 178.09C789.405 178.192 789.574 178.246 789.732 178.249C789.898 178.249 790.034 178.174 790.142 178.024C790.256 177.877 790.314 177.635 790.314 177.298L790.314 174.163L791.609 174.911L791.609 180.631ZM794.876 182.649C794.368 182.356 793.924 181.971 793.543 181.494C793.168 181.014 792.882 180.493 792.685 179.932C792.488 179.364 792.39 178.794 792.39 178.222C792.39 177.65 792.488 177.193 792.685 176.852C792.882 176.511 793.168 176.32 793.543 176.28C793.924 176.243 794.368 176.372 794.876 176.665C795.391 176.962 795.835 177.347 796.21 177.82C796.585 178.286 796.867 178.812 797.058 179.399C797.255 179.982 797.353 180.588 797.353 181.219L797.353 181.549L793.676 179.426C793.708 179.73 793.774 180.015 793.876 180.279C793.984 180.539 794.12 180.775 794.286 180.988C794.457 181.197 794.654 181.366 794.876 181.494C795.156 181.655 795.387 181.727 795.572 181.709C795.762 181.687 795.908 181.588 796.01 181.412L797.267 182.138C797.102 182.622 796.81 182.915 796.391 183.018C795.978 183.117 795.473 182.994 794.876 182.649ZM796.057 179.767C795.994 179.334 795.861 178.949 795.657 178.612C795.454 178.267 795.194 178.003 794.876 177.82C794.552 177.633 794.289 177.595 794.086 177.705C793.882 177.807 793.749 178.038 793.685 178.398L796.057 179.767Z" fill="#5F52FF"/>
|
|
305
|
+
<path d="M910.715 468.277C909.991 467.859 909.369 467.32 908.848 466.66C908.334 465.996 907.943 465.276 907.676 464.498C907.416 463.725 907.286 462.96 907.286 462.205C907.286 461.442 907.416 460.828 907.676 460.362C907.943 459.893 908.334 459.627 908.848 459.565C909.369 459.499 909.991 459.675 910.715 460.093C911.274 460.416 911.773 460.828 912.211 461.331C912.649 461.833 913.002 462.385 913.268 462.986C913.535 463.587 913.71 464.194 913.792 464.806L912.382 463.992C912.319 463.655 912.211 463.329 912.058 463.014C911.912 462.702 911.722 462.416 911.487 462.155C911.258 461.899 911.001 461.688 910.715 461.523C910.271 461.266 909.899 461.169 909.601 461.231C909.302 461.294 909.083 461.486 908.943 461.809C908.804 462.124 908.734 462.535 908.734 463.041C908.734 463.54 908.804 464.031 908.943 464.515C909.083 464.992 909.302 465.437 909.601 465.851C909.899 466.259 910.271 466.59 910.715 466.847C911.026 467.027 911.3 467.111 911.535 467.1C911.769 467.089 911.96 466.997 912.106 466.825C912.259 466.656 912.36 466.422 912.411 466.121L913.811 466.93C913.748 467.487 913.583 467.927 913.316 468.25C913.056 468.576 912.7 468.745 912.249 468.755C911.804 468.77 911.293 468.611 910.715 468.277ZM916.918 471.858C916.397 471.557 915.943 471.167 915.556 470.687C915.175 470.203 914.883 469.678 914.679 469.114C914.482 468.545 914.384 467.975 914.384 467.403C914.384 466.831 914.482 466.375 914.679 466.034C914.883 465.696 915.175 465.509 915.556 465.473C915.943 465.44 916.397 465.573 916.918 465.874C917.445 466.178 917.899 466.569 918.28 467.046C918.668 467.526 918.96 468.05 919.157 468.619C919.354 469.187 919.452 469.757 919.452 470.329C919.452 470.901 919.354 471.358 919.157 471.699C918.96 472.032 918.668 472.219 918.28 472.26C917.899 472.296 917.445 472.162 916.918 471.858ZM916.918 470.626C917.197 470.787 917.426 470.846 917.604 470.802C917.788 470.762 917.921 470.637 918.004 470.428C918.093 470.215 918.137 469.929 918.137 469.57C918.137 469.211 918.093 468.873 918.004 468.558C917.921 468.246 917.788 467.968 917.604 467.722C917.426 467.473 917.197 467.267 916.918 467.106C916.645 466.948 916.416 466.89 916.232 466.93C916.054 466.967 915.921 467.091 915.832 467.304C915.743 467.517 915.699 467.803 915.699 468.162C915.699 468.521 915.743 468.859 915.832 469.174C915.921 469.482 916.054 469.761 916.232 470.01C916.416 470.263 916.645 470.468 916.918 470.626ZM920.231 467.919L921.489 468.645L921.489 469.426C921.673 469.254 921.895 469.162 922.155 469.151C922.416 469.133 922.714 469.221 923.051 469.415C923.426 469.631 923.743 469.906 924.004 470.24C924.27 470.57 924.47 470.946 924.604 471.368C924.743 471.793 924.813 472.244 924.813 472.721L924.813 476.285L923.527 475.542L923.527 472.154C923.527 471.795 923.454 471.47 923.308 471.181C923.162 470.884 922.93 470.643 922.613 470.46C922.435 470.357 922.263 470.306 922.098 470.306C921.94 470.302 921.803 470.374 921.689 470.521C921.581 470.671 921.527 470.915 921.527 471.252L921.527 474.387L920.231 473.639L920.231 467.919ZM927.738 477.973C927.426 477.793 927.169 477.604 926.966 477.406C926.763 477.201 926.601 476.953 926.48 476.664C926.366 476.378 926.309 476.037 926.309 475.641L926.309 472.561L925.451 472.066L925.451 470.933L926.309 471.428L926.309 469.668L927.604 470.416L927.604 472.176L928.843 472.891L928.843 474.024L927.604 473.309L927.604 476.235C927.604 476.418 927.639 476.574 927.709 476.702C927.779 476.823 927.899 476.933 928.071 477.032L928.843 477.478L928.843 478.611L927.738 477.973ZM931.857 480.483C931.349 480.19 930.905 479.805 930.524 479.328C930.149 478.848 929.863 478.327 929.666 477.766C929.47 477.198 929.371 476.628 929.371 476.056C929.371 475.484 929.47 475.027 929.666 474.686C929.863 474.345 930.149 474.155 930.524 474.114C930.905 474.078 931.349 474.206 931.857 474.499C932.372 474.796 932.816 475.181 933.191 475.654C933.566 476.12 933.848 476.646 934.039 477.233C934.236 477.816 934.334 478.423 934.334 479.053L934.334 479.383L930.657 477.26C930.689 477.565 930.756 477.849 930.857 478.113C930.965 478.373 931.102 478.61 931.267 478.822C931.438 479.031 931.635 479.2 931.857 479.328C932.137 479.49 932.369 479.561 932.553 479.543C932.743 479.521 932.889 479.422 932.991 479.246L934.249 479.972C934.083 480.456 933.791 480.749 933.372 480.852C932.959 480.951 932.454 480.828 931.857 480.483ZM933.039 477.601C932.975 477.169 932.842 476.784 932.639 476.446C932.435 476.102 932.175 475.838 931.857 475.654C931.534 475.467 931.27 475.429 931.067 475.539C930.864 475.642 930.73 475.873 930.667 476.232L933.039 477.601ZM936.45 480.066L934.744 476.298L936.221 477.151L937.193 479.274L938.155 478.267L939.612 479.109L937.917 480.891L939.727 484.895L938.25 484.042L937.183 481.688L936.107 482.805L934.649 481.963L936.45 480.066ZM942.185 486.314C941.874 486.134 941.617 485.946 941.413 485.748C941.21 485.542 941.048 485.295 940.928 485.005C940.813 484.719 940.756 484.378 940.756 483.982L940.756 480.902L939.899 480.407L939.899 479.274L940.756 479.769L940.756 478.009L942.052 478.757L942.052 480.517L943.29 481.232L943.29 482.365L942.052 481.65L942.052 484.576C942.052 484.759 942.087 484.915 942.157 485.044C942.226 485.165 942.347 485.275 942.519 485.374L943.29 485.819L943.29 486.952L942.185 486.314Z" fill="#5F52FF"/>
|
|
306
|
+
<path d="M916.411 355.591L918.04 356.532L913.83 362.021L912.353 361.168L913.277 360.019L910.372 358.341L908.371 358.869L906.942 358.044L916.411 355.591ZM914.049 359.1L915.888 356.829L911.963 357.896L914.049 359.1ZM916.566 363.732C916.058 363.439 915.728 363.12 915.576 362.775C915.436 362.431 915.461 362.09 915.652 361.752C915.849 361.411 916.195 361.098 916.69 360.812C917.186 360.526 917.729 360.326 918.319 360.212C918.91 360.099 919.5 360.084 920.091 360.168C920.688 360.256 921.241 360.447 921.749 360.74C922.428 361.133 922.797 361.543 922.854 361.972C922.911 362.401 922.685 362.807 922.177 363.188L920.882 362.44C921.085 362.257 921.168 362.07 921.129 361.879C921.104 361.688 920.955 361.514 920.682 361.356C920.428 361.21 920.151 361.124 919.853 361.098C919.561 361.069 919.256 361.094 918.938 361.175C918.627 361.259 918.316 361.391 918.005 361.571C917.694 361.751 917.465 361.93 917.319 362.11C917.186 362.29 917.141 362.466 917.186 362.638C917.23 362.81 917.379 362.97 917.633 363.116C917.919 363.281 918.23 363.369 918.567 363.38C918.91 363.395 919.25 363.331 919.586 363.188L920.882 363.936C920.202 364.24 919.478 364.38 918.71 364.354C917.948 364.325 917.233 364.117 916.566 363.732ZM921.65 366.535C921.339 366.356 921.116 366.187 920.983 366.029C920.856 365.868 920.827 365.697 920.897 365.518C920.973 365.342 921.183 365.155 921.526 364.957L924.193 363.417L923.336 362.922L924.317 362.355L925.174 362.85L926.699 361.97L927.994 362.718L926.47 363.598L927.708 364.313L926.727 364.88L925.489 364.165L922.955 365.628C922.796 365.719 922.713 365.807 922.707 365.892C922.707 365.972 922.793 366.062 922.964 366.161L923.736 366.607L922.755 367.173L921.65 366.535ZM928.437 364.734L929.733 365.482L924.779 368.342L923.483 367.594L928.437 364.734ZM930.342 363.634L931.638 364.382L930.485 365.047L929.19 364.299L930.342 363.634ZM930.269 365.792L931.669 366.6L929.164 369.455L934.089 367.997L935.48 368.8L928.668 370.588L927.182 369.73L930.269 365.792ZM933.228 373.352C932.72 373.059 932.387 372.738 932.228 372.39C932.082 372.041 932.104 371.698 932.294 371.361C932.491 371.02 932.837 370.707 933.333 370.421C933.828 370.135 934.371 369.935 934.962 369.821C935.552 369.707 936.146 369.695 936.743 369.783C937.347 369.874 937.902 370.067 938.41 370.36C938.925 370.657 939.258 370.978 939.411 371.323C939.569 371.664 939.538 372.008 939.315 372.357C939.106 372.705 938.728 373.037 938.182 373.352L937.896 373.517L934.219 371.394C934.003 371.555 933.857 371.717 933.781 371.878C933.717 372.039 933.717 372.197 933.781 372.351C933.857 372.505 934.006 372.646 934.228 372.775C934.508 372.936 934.793 373.039 935.086 373.083C935.39 373.127 935.695 373.119 936 373.061L937.258 373.787C936.591 373.981 935.899 374.043 935.181 373.974C934.476 373.904 933.825 373.697 933.228 373.352ZM937.496 372.252C937.775 372.017 937.909 371.786 937.896 371.559C937.89 371.328 937.728 371.121 937.41 370.938C937.086 370.751 936.724 370.655 936.324 370.652C935.93 370.644 935.53 370.721 935.124 370.883L937.496 372.252ZM946.152 374.203L943.99 372.954L945.238 372.234L950.972 375.545L949.725 376.265L947.562 375.017L941.951 378.256L940.541 377.442L946.152 374.203ZM951.609 375.912L952.905 376.66L950.371 378.123C950.784 378.098 951.184 378.12 951.571 378.189C951.958 378.259 952.314 378.387 952.638 378.574C953.013 378.791 953.251 379.02 953.352 379.262C953.467 379.504 953.441 379.75 953.276 379.999C953.118 380.252 952.832 380.498 952.419 380.736L949.332 382.518L948.046 381.775L950.98 380.081C951.292 379.902 951.463 379.718 951.495 379.531C951.533 379.341 951.393 379.154 951.076 378.97C950.898 378.868 950.685 378.793 950.437 378.745C950.202 378.697 949.936 378.694 949.637 378.734C949.345 378.778 949.053 378.884 948.761 379.053L946.046 380.62L944.75 379.872L951.609 375.912ZM952.533 384.498C952.012 384.197 951.669 383.871 951.504 383.519C951.352 383.167 951.367 382.82 951.552 382.479C951.749 382.138 952.095 381.825 952.59 381.539C953.085 381.253 953.628 381.053 954.219 380.939C954.816 380.829 955.416 380.82 956.019 380.912C956.629 381.007 957.194 381.205 957.715 381.506C958.242 381.81 958.585 382.136 958.744 382.485C958.909 382.837 958.893 383.183 958.696 383.524C958.499 383.865 958.153 384.179 957.658 384.465C957.163 384.751 956.62 384.951 956.029 385.064C955.445 385.174 954.845 385.183 954.229 385.092C953.625 385 953.06 384.802 952.533 384.498ZM953.6 383.882C953.879 384.043 954.171 384.138 954.476 384.168C954.787 384.201 955.095 384.177 955.4 384.096C955.718 384.016 956.032 383.885 956.343 383.706C956.655 383.526 956.88 383.345 957.02 383.161C957.166 382.982 957.207 382.804 957.144 382.628C957.093 382.452 956.928 382.283 956.648 382.122C956.375 381.964 956.083 381.869 955.772 381.836C955.473 381.803 955.165 381.827 954.848 381.907C954.53 381.988 954.216 382.118 953.905 382.298C953.593 382.477 953.368 382.659 953.228 382.842C953.095 383.022 953.054 383.2 953.104 383.376C953.162 383.555 953.327 383.724 953.6 383.882ZM960.543 388.99L959.285 388.264L959.961 387.874C959.536 387.907 959.12 387.89 958.713 387.824C958.313 387.754 957.945 387.622 957.608 387.428C957.234 387.212 956.989 386.983 956.875 386.741C956.773 386.499 956.802 386.251 956.961 385.998C957.126 385.749 957.415 385.505 957.828 385.267L960.914 383.485L962.2 384.227L959.266 385.921C958.955 386.101 958.78 386.286 958.742 386.477C958.71 386.664 958.853 386.849 959.171 387.032C959.349 387.135 959.555 387.21 959.79 387.258C960.038 387.305 960.308 387.307 960.6 387.263C960.898 387.223 961.193 387.118 961.486 386.95L964.201 385.382L965.496 386.13L960.543 388.99ZM961.762 392.026C961.063 391.623 960.676 391.219 960.599 390.816C960.523 390.413 960.739 390.042 961.247 389.705L962.524 390.442C962.295 390.611 962.209 390.781 962.266 390.953C962.33 391.129 962.511 391.304 962.809 391.476C963.159 391.678 963.53 391.793 963.924 391.822C964.318 391.859 964.731 391.753 965.162 391.503L965.763 391.157C965.369 391.186 964.985 391.162 964.61 391.085C964.248 391.008 963.902 390.875 963.572 390.684C963.108 390.416 962.819 390.125 962.705 389.809C962.59 389.494 962.635 389.179 962.838 388.863C963.048 388.544 963.394 388.246 963.876 387.967C964.365 387.685 964.883 387.485 965.429 387.367C965.982 387.246 966.531 387.219 967.077 387.285C967.623 387.351 968.128 387.518 968.592 387.785C968.935 387.983 969.17 388.192 969.297 388.412C969.43 388.636 969.462 388.867 969.392 389.105L970.021 388.742L971.278 389.468L966.458 392.251C965.982 392.526 965.474 392.691 964.934 392.746C964.388 392.805 963.845 392.77 963.305 392.642C962.765 392.514 962.251 392.308 961.762 392.026ZM964.915 390.282C965.181 390.436 965.464 390.53 965.763 390.563C966.067 390.592 966.372 390.57 966.677 390.497C966.988 390.42 967.296 390.293 967.601 390.117C967.906 389.941 968.125 389.764 968.258 389.584C968.392 389.404 968.43 389.228 968.373 389.056C968.322 388.88 968.163 388.715 967.896 388.561C967.623 388.403 967.334 388.31 967.03 388.28C966.731 388.247 966.426 388.269 966.115 388.346C965.81 388.427 965.505 388.555 965.201 388.731C964.896 388.907 964.673 389.083 964.534 389.259C964.407 389.435 964.369 389.611 964.419 389.787C964.477 389.96 964.642 390.125 964.915 390.282ZM974.169 388.937L975.465 389.685L972.931 391.148C973.343 391.123 973.743 391.145 974.131 391.214C974.518 391.284 974.874 391.412 975.198 391.599C975.573 391.816 975.811 392.045 975.912 392.287C976.027 392.529 976.001 392.774 975.836 393.024C975.677 393.277 975.392 393.522 974.979 393.761L971.892 395.543L970.606 394.8L973.54 393.106C973.851 392.927 974.023 392.743 974.055 392.556C974.093 392.366 973.953 392.179 973.636 391.995C973.458 391.893 973.245 391.817 972.997 391.77C972.762 391.722 972.496 391.718 972.197 391.759C971.905 391.803 971.613 391.909 971.321 392.078L968.606 393.645L967.31 392.897L974.169 388.937ZM974.816 397.231C974.505 397.051 974.283 396.883 974.15 396.725C974.023 396.564 973.994 396.393 974.064 396.214C974.14 396.038 974.35 395.851 974.693 395.653L977.36 394.113L976.503 393.618L977.484 393.051L978.341 393.546L979.865 392.666L981.161 393.414L979.637 394.294L980.875 395.009L979.894 395.576L978.655 394.861L976.121 396.324C975.963 396.415 975.88 396.503 975.874 396.588C975.874 396.668 975.96 396.758 976.131 396.857L976.903 397.303L975.921 397.869L974.816 397.231ZM978.895 401.786C978.596 401.613 978.377 401.436 978.237 401.252C978.104 401.073 978.075 400.884 978.152 400.686C978.222 400.491 978.428 400.295 978.771 400.097L980.991 398.816C981.2 398.695 981.292 398.572 981.267 398.447C981.254 398.323 981.092 398.17 980.781 397.991L981.857 397.369C982.169 397.549 982.429 397.644 982.639 397.655C982.861 397.666 983.074 397.613 983.277 397.496L985.506 396.209C985.843 396.014 986.179 395.897 986.516 395.857C986.859 395.813 987.186 395.829 987.497 395.906C987.815 395.987 988.123 396.113 988.421 396.286L989.612 396.973L988.535 397.595L987.602 397.056C987.43 396.957 987.243 396.907 987.04 396.907C986.836 396.907 986.655 396.953 986.497 397.045L984.277 398.326C983.991 398.491 983.709 398.577 983.429 398.585C983.156 398.588 982.867 398.528 982.562 398.403C982.778 398.579 982.88 398.748 982.867 398.909C982.861 399.067 982.715 399.228 982.429 399.393L980.219 400.669C980.054 400.765 979.971 400.871 979.971 400.988C979.971 401.106 980.057 401.214 980.228 401.313L981.162 401.852L980.086 402.473L978.895 401.786ZM988.258 400.944L989.344 397.699L990.954 398.628L990.277 400.713L993.878 400.317L995.441 401.219L989.877 401.846L988.725 405.261L987.115 404.332L987.858 402.088L983.962 402.511L982.39 401.604L988.258 400.944ZM988.131 405.875L989.064 406.414C989.242 406.517 989.43 406.566 989.626 406.563C989.83 406.563 990.014 406.515 990.179 406.42L992.389 405.144C992.675 404.979 992.954 404.894 993.227 404.891C993.513 404.887 993.809 404.948 994.113 405.072C993.897 404.896 993.789 404.728 993.789 404.566C993.802 404.405 993.951 404.242 994.237 404.077L996.457 402.795C996.616 402.704 996.695 402.599 996.695 402.482C996.701 402.368 996.616 402.26 996.438 402.157L995.504 401.618L996.581 400.997L997.781 401.69C998.079 401.862 998.295 402.038 998.429 402.218C998.562 402.397 998.591 402.586 998.515 402.784C998.445 402.979 998.241 403.173 997.905 403.367L995.676 404.654C995.472 404.772 995.38 404.894 995.399 405.023C995.425 405.147 995.59 405.298 995.895 405.474L994.818 406.095C994.513 405.919 994.25 405.826 994.028 405.815C993.812 405.8 993.599 405.853 993.389 405.974L991.17 407.256C990.827 407.454 990.487 407.573 990.15 407.613C989.807 407.657 989.48 407.641 989.169 407.564C988.858 407.487 988.553 407.362 988.255 407.19L987.054 406.497L988.131 405.875Z" fill="#5F52FF"/>
|
|
307
|
+
<path d="M909.02 450.844L907.333 449.87L907.333 448.583L909.02 449.557L909.02 447.621L910.134 448.264L910.134 450.2L911.811 451.168L911.811 452.455L910.134 451.487L910.134 453.435L909.02 452.791L909.02 450.844Z" fill="#5F52FF"/>
|
|
308
|
+
<rect x="1.73205" width="72.4008" height="72.4008" transform="matrix(0.866025 -0.5 0.866025 0.5 252.232 625.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
309
|
+
<mask id="path-307-inside-1_2105_907" fill="white">
|
|
310
|
+
<path d="M336.867 635.109L316.993 646.583L252.402 609.292L272.276 597.817L336.867 635.109ZM359.723 621.913L338.854 633.961L274.264 596.67L295.132 584.622L359.723 621.913ZM381.584 609.292L361.71 620.766L297.119 583.474L316.993 572L381.584 609.292Z"/>
|
|
311
|
+
</mask>
|
|
312
|
+
<path d="M336.867 635.109L316.993 646.583L252.402 609.292L272.276 597.817L336.867 635.109ZM359.723 621.913L338.854 633.961L274.264 596.67L295.132 584.622L359.723 621.913ZM381.584 609.292L361.71 620.766L297.119 583.474L316.993 572L381.584 609.292Z" fill="#F8F7FF"/>
|
|
313
|
+
<path d="M336.867 635.109L338.599 636.109C339.556 635.557 339.556 634.661 338.599 634.109L336.867 635.109ZM316.993 646.583L315.261 647.583C316.218 648.135 317.769 648.135 318.725 647.583L316.993 646.583ZM252.402 609.292L250.67 608.292C250.211 608.557 249.953 608.916 249.953 609.292C249.953 609.667 250.211 610.026 250.67 610.292L252.402 609.292ZM272.276 597.817L274.008 596.817C273.052 596.265 271.501 596.265 270.544 596.817L272.276 597.817ZM359.723 621.913L361.455 622.913C361.914 622.648 362.172 622.288 362.172 621.913C362.172 621.538 361.914 621.178 361.455 620.913L359.723 621.913ZM338.854 633.961L337.122 634.961C338.079 635.514 339.63 635.514 340.586 634.961L338.854 633.961ZM274.264 596.67L272.532 595.67C271.575 596.222 271.575 597.118 272.532 597.67L274.264 596.67ZM295.132 584.622L296.864 583.622C296.405 583.356 295.782 583.207 295.132 583.207C294.482 583.207 293.859 583.356 293.4 583.622L295.132 584.622ZM381.584 609.292L383.316 610.292C384.273 609.739 384.273 608.844 383.316 608.292L381.584 609.292ZM361.71 620.766L359.978 621.766C360.935 622.318 362.486 622.318 363.442 621.766L361.71 620.766ZM297.119 583.474L295.387 582.474C294.431 583.026 294.431 583.922 295.387 584.474L297.119 583.474ZM316.993 572L318.725 571C317.769 570.448 316.218 570.448 315.261 571L316.993 572ZM336.867 635.109L335.135 634.109L315.261 645.583L316.993 646.583L318.725 647.583L338.599 636.109L336.867 635.109ZM316.993 646.583L318.725 645.583L254.134 608.292L252.402 609.292L250.67 610.292L315.261 647.583L316.993 646.583ZM252.402 609.292L254.134 610.292L274.008 598.817L272.276 597.817L270.544 596.817L250.67 608.292L252.402 609.292ZM272.276 597.817L270.544 598.817L335.135 636.109L336.867 635.109L338.599 634.109L274.008 596.817L272.276 597.817ZM359.723 621.913L357.991 620.913L337.122 632.961L338.854 633.961L340.586 634.961L361.455 622.913L359.723 621.913ZM338.854 633.961L340.586 632.961L275.996 595.67L274.264 596.67L272.532 597.67L337.122 634.961L338.854 633.961ZM274.264 596.67L275.996 597.67L296.864 585.622L295.132 584.622L293.4 583.622L272.532 595.67L274.264 596.67ZM295.132 584.622L293.4 585.622L357.991 622.913L359.723 621.913L361.455 620.913L296.864 583.622L295.132 584.622ZM381.584 609.292L379.852 608.292L359.978 619.766L361.71 620.766L363.442 621.766L383.316 610.292L381.584 609.292ZM361.71 620.766L363.442 619.766L298.851 582.474L297.119 583.474L295.387 584.474L359.978 621.766L361.71 620.766ZM297.119 583.474L298.851 584.474L318.725 573L316.993 572L315.261 571L295.387 582.474L297.119 583.474ZM316.993 572L315.261 573L379.852 610.292L381.584 609.292L383.316 608.292L318.725 571L316.993 572Z" fill="#5F52FF" mask="url(#path-307-inside-1_2105_907)"/>
|
|
314
|
+
<mask id="path-309-inside-2_2105_907" fill="white">
|
|
315
|
+
<path d="M336.867 620.109L316.993 631.583L252.402 594.292L272.276 582.817L336.867 620.109ZM359.723 606.913L338.854 618.961L274.264 581.67L295.132 569.622L359.723 606.913ZM381.584 594.292L361.71 605.766L297.119 568.474L316.993 557L381.584 594.292Z"/>
|
|
316
|
+
</mask>
|
|
317
|
+
<path d="M336.867 620.109L316.993 631.583L252.402 594.292L272.276 582.817L336.867 620.109ZM359.723 606.913L338.854 618.961L274.264 581.67L295.132 569.622L359.723 606.913ZM381.584 594.292L361.71 605.766L297.119 568.474L316.993 557L381.584 594.292Z" fill="#F8F7FF"/>
|
|
318
|
+
<path d="M336.867 620.109L338.599 621.109C339.556 620.557 339.556 619.661 338.599 619.109L336.867 620.109ZM316.993 631.583L315.261 632.583C316.218 633.135 317.769 633.135 318.725 632.583L316.993 631.583ZM252.402 594.292L250.67 593.292C249.714 593.844 249.714 594.739 250.67 595.292L252.402 594.292ZM272.276 582.817L274.008 581.817C273.052 581.265 271.501 581.265 270.544 581.817L272.276 582.817ZM359.723 606.913L361.455 607.913C362.411 607.361 362.411 606.465 361.455 605.913L359.723 606.913ZM338.854 618.961L337.122 619.961C337.582 620.227 338.205 620.376 338.854 620.376C339.504 620.376 340.127 620.227 340.586 619.961L338.854 618.961ZM274.264 581.67L272.532 580.67C271.575 581.222 271.575 582.118 272.532 582.67L274.264 581.67ZM295.132 569.622L296.864 568.622C296.405 568.356 295.782 568.207 295.132 568.207C294.482 568.207 293.859 568.356 293.4 568.622L295.132 569.622ZM381.584 594.292L383.316 595.292C383.775 595.026 384.033 594.667 384.033 594.292C384.033 593.916 383.775 593.557 383.316 593.292L381.584 594.292ZM361.71 605.766L359.978 606.766C360.935 607.318 362.486 607.318 363.442 606.766L361.71 605.766ZM297.119 568.474L295.387 567.474C294.431 568.026 294.431 568.922 295.387 569.474L297.119 568.474ZM316.993 557L318.725 556C317.769 555.448 316.218 555.448 315.261 556L316.993 557ZM336.867 620.109L335.135 619.109L315.261 630.583L316.993 631.583L318.725 632.583L338.599 621.109L336.867 620.109ZM316.993 631.583L318.725 630.583L254.134 593.292L252.402 594.292L250.67 595.292L315.261 632.583L316.993 631.583ZM252.402 594.292L254.134 595.292L274.008 583.817L272.276 582.817L270.544 581.817L250.67 593.292L252.402 594.292ZM272.276 582.817L270.544 583.817L335.135 621.109L336.867 620.109L338.599 619.109L274.008 581.817L272.276 582.817ZM359.723 606.913L357.991 605.913L337.122 617.961L338.854 618.961L340.586 619.961L361.455 607.913L359.723 606.913ZM338.854 618.961L340.586 617.961L275.996 580.67L274.264 581.67L272.532 582.67L337.122 619.961L338.854 618.961ZM274.264 581.67L275.996 582.67L296.864 570.622L295.132 569.622L293.4 568.622L272.532 580.67L274.264 581.67ZM295.132 569.622L293.4 570.622L357.991 607.913L359.723 606.913L361.455 605.913L296.864 568.622L295.132 569.622ZM381.584 594.292L379.852 593.292L359.978 604.766L361.71 605.766L363.442 606.766L383.316 595.292L381.584 594.292ZM361.71 605.766L363.442 604.766L298.851 567.474L297.119 568.474L295.387 569.474L359.978 606.766L361.71 605.766ZM297.119 568.474L298.851 569.474L318.725 558L316.993 557L315.261 556L295.387 567.474L297.119 568.474ZM316.993 557L315.261 558L379.852 595.292L381.584 594.292L383.316 593.292L318.725 556L316.993 557Z" fill="#5F52FF" mask="url(#path-309-inside-2_2105_907)"/>
|
|
319
|
+
<mask id="path-311-inside-3_2105_907" fill="white">
|
|
320
|
+
<path d="M336.867 605.109L316.993 616.583L252.402 579.292L272.276 567.817L336.867 605.109ZM359.723 591.913L338.854 603.961L274.264 566.67L295.132 554.622L359.723 591.913ZM381.584 579.292L361.71 590.766L297.119 553.474L316.993 542L381.584 579.292Z"/>
|
|
321
|
+
</mask>
|
|
322
|
+
<path d="M336.867 605.109L316.993 616.583L252.402 579.292L272.276 567.817L336.867 605.109ZM359.723 591.913L338.854 603.961L274.264 566.67L295.132 554.622L359.723 591.913ZM381.584 579.292L361.71 590.766L297.119 553.474L316.993 542L381.584 579.292Z" fill="#DAFFF4"/>
|
|
323
|
+
<path d="M336.867 605.109L338.599 606.109C339.556 605.557 339.556 604.661 338.599 604.109L336.867 605.109ZM316.993 616.583L315.261 617.583C316.218 618.135 317.769 618.135 318.725 617.583L316.993 616.583ZM252.402 579.292L250.67 578.292C250.211 578.557 249.953 578.916 249.953 579.292C249.953 579.667 250.211 580.026 250.67 580.292L252.402 579.292ZM272.276 567.817L274.008 566.817C273.052 566.265 271.501 566.265 270.544 566.817L272.276 567.817ZM359.723 591.913L361.455 592.913C361.914 592.648 362.172 592.288 362.172 591.913C362.172 591.538 361.914 591.178 361.455 590.913L359.723 591.913ZM338.854 603.961L337.122 604.961C337.582 605.227 338.205 605.376 338.854 605.376C339.504 605.376 340.127 605.227 340.586 604.961L338.854 603.961ZM274.264 566.67L272.532 565.67C271.575 566.222 271.575 567.118 272.532 567.67L274.264 566.67ZM295.132 554.622L296.864 553.622C295.907 553.069 294.356 553.069 293.4 553.622L295.132 554.622ZM381.584 579.292L383.316 580.292C384.273 579.739 384.273 578.844 383.316 578.292L381.584 579.292ZM361.71 590.766L359.978 591.766C360.935 592.318 362.486 592.318 363.442 591.766L361.71 590.766ZM297.119 553.474L295.387 552.474C294.431 553.026 294.431 553.922 295.387 554.474L297.119 553.474ZM316.993 542L318.725 541C317.769 540.448 316.218 540.448 315.261 541L316.993 542ZM336.867 605.109L335.135 604.109L315.261 615.583L316.993 616.583L318.725 617.583L338.599 606.109L336.867 605.109ZM316.993 616.583L318.725 615.583L254.134 578.292L252.402 579.292L250.67 580.292L315.261 617.583L316.993 616.583ZM252.402 579.292L254.134 580.292L274.008 568.817L272.276 567.817L270.544 566.817L250.67 578.292L252.402 579.292ZM272.276 567.817L270.544 568.817L335.135 606.109L336.867 605.109L338.599 604.109L274.008 566.817L272.276 567.817ZM359.723 591.913L357.991 590.913L337.122 602.961L338.854 603.961L340.586 604.961L361.455 592.913L359.723 591.913ZM338.854 603.961L340.586 602.961L275.996 565.67L274.264 566.67L272.532 567.67L337.122 604.961L338.854 603.961ZM274.264 566.67L275.996 567.67L296.864 555.622L295.132 554.622L293.4 553.622L272.532 565.67L274.264 566.67ZM295.132 554.622L293.4 555.622L357.991 592.913L359.723 591.913L361.455 590.913L296.864 553.622L295.132 554.622ZM381.584 579.292L379.852 578.292L359.978 589.766L361.71 590.766L363.442 591.766L383.316 580.292L381.584 579.292ZM361.71 590.766L363.442 589.766L298.851 552.474L297.119 553.474L295.387 554.474L359.978 591.766L361.71 590.766ZM297.119 553.474L298.851 554.474L318.725 543L316.993 542L315.261 541L295.387 552.474L297.119 553.474ZM316.993 542L315.261 543L379.852 580.292L381.584 579.292L383.316 578.292L318.725 541L316.993 542Z" fill="#5F52FF" mask="url(#path-311-inside-3_2105_907)"/>
|
|
324
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 598.116 587.567)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
325
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 585.116 594.567)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
326
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 610 638)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
327
|
+
<rect x="858" y="272" width="72" height="21" fill="#5F52FF"/>
|
|
328
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 290.607)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
329
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 275.82)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
330
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 268.71)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
331
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 261.601)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
332
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 253.762)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
333
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 245.923)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
334
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 843 238.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
335
|
+
<rect x="717" y="205" width="72" height="21" fill="#5F52FF"/>
|
|
336
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 702 223.45)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
337
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 702 208.663)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
338
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 702 201.554)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
339
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 702 194.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
340
|
+
<mask id="path-329-inside-4_2105_907" fill="white">
|
|
341
|
+
<path d="M524 702.166V718.424L496 734.59L468 718.424V702.166L496 686L524 702.166Z"/>
|
|
342
|
+
</mask>
|
|
343
|
+
<path d="M524 702.166V718.424L496 734.59L468 718.424V702.166L496 686L524 702.166Z" fill="#F8F7FF"/>
|
|
344
|
+
<path d="M524 702.166H526V701.011L525 700.434L524 702.166ZM524 718.424L525 720.156L526 719.579V718.424H524ZM496 734.59L495 736.322L496 736.899L497 736.322L496 734.59ZM468 718.424H466V719.579L467 720.156L468 718.424ZM468 702.166L467 700.434L466 701.011V702.166H468ZM496 686L497 684.268L496 683.691L495 684.268L496 686ZM524 702.166H522V718.424H524H526V702.166H524ZM524 718.424L523 716.692L495 732.858L496 734.59L497 736.322L525 720.156L524 718.424ZM496 734.59L497 732.858L469 716.692L468 718.424L467 720.156L495 736.322L496 734.59ZM468 718.424H470V702.166H468H466V718.424H468ZM468 702.166L469 703.898L497 687.732L496 686L495 684.268L467 700.434L468 702.166ZM496 686L495 687.732L523 703.898L524 702.166L525 700.434L497 684.268L496 686Z" fill="#5F52FF" mask="url(#path-329-inside-4_2105_907)"/>
|
|
345
|
+
<rect x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 468.232 703.032)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
346
|
+
<path d="M496 718.166L496 732.166" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
347
|
+
<mask id="path-333-inside-5_2105_907" fill="white">
|
|
348
|
+
<path d="M524 678.166V694.424L496 710.59L468 694.424V678.166L496 662L524 678.166Z"/>
|
|
349
|
+
</mask>
|
|
350
|
+
<path d="M524 678.166V694.424L496 710.59L468 694.424V678.166L496 662L524 678.166Z" fill="#F8F7FF"/>
|
|
351
|
+
<path d="M524 678.166H526V677.011L525 676.434L524 678.166ZM524 694.424L525 696.156L526 695.579V694.424H524ZM496 710.59L495 712.322L496 712.899L497 712.322L496 710.59ZM468 694.424H466V695.579L467 696.156L468 694.424ZM468 678.166L467 676.434L466 677.011V678.166H468ZM496 662L497 660.268L496 659.691L495 660.268L496 662ZM524 678.166H522V694.424H524H526V678.166H524ZM524 694.424L523 692.692L495 708.858L496 710.59L497 712.322L525 696.156L524 694.424ZM496 710.59L497 708.858L469 692.692L468 694.424L467 696.156L495 712.322L496 710.59ZM468 694.424H470V678.166H468H466V694.424H468ZM468 678.166L469 679.898L497 663.732L496 662L495 660.268L467 676.434L468 678.166ZM496 662L495 663.732L523 679.898L524 678.166L525 676.434L497 660.268L496 662Z" fill="#5F52FF" mask="url(#path-333-inside-5_2105_907)"/>
|
|
352
|
+
<rect x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 468.232 679.032)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
353
|
+
<path d="M496 694.166L496 708.166" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
354
|
+
<mask id="path-337-inside-6_2105_907" fill="white">
|
|
355
|
+
<path d="M527 650.294L526.998 650.295H527V668.295L496 686.193L465 668.295V650.295H465.002L465 650.294L496 632.397L527 650.294Z"/>
|
|
356
|
+
</mask>
|
|
357
|
+
<path d="M527 650.294L526.998 650.295H527V668.295L496 686.193L465 668.295V650.295H465.002L465 650.294L496 632.397L527 650.294Z" fill="#F8F7FF"/>
|
|
358
|
+
<path d="M527 650.294L527.894 652.083L531.219 650.421L528 648.562L527 650.294ZM526.998 650.295L526.104 648.507L526.998 652.295V650.295ZM527 650.295H529V648.295H527V650.295ZM527 668.295L528 670.027L529 669.45V668.295H527ZM496 686.193L495 687.925L496 688.502L497 687.925L496 686.193ZM465 668.295H463V669.45L464 670.027L465 668.295ZM465 650.295V648.295H463V650.295H465ZM465.002 650.295V652.295L465.896 648.507L465.002 650.295ZM465 650.294L464 648.562L460.781 650.421L464.106 652.083L465 650.294ZM496 632.397L497 630.665L496 630.088L495 630.665L496 632.397ZM527 650.294L526.106 648.506L526.104 648.507L526.998 650.295L527.892 652.084L527.894 652.083L527 650.294ZM526.998 650.295V652.295H527V650.295V648.295H526.998V650.295ZM527 650.295H525V668.295H527H529V650.295H527ZM527 668.295L526 666.563L495 684.461L496 686.193L497 687.925L528 670.027L527 668.295ZM496 686.193L497 684.461L466 666.563L465 668.295L464 670.027L495 687.925L496 686.193ZM465 668.295H467V650.295H465H463V668.295H465ZM465 650.295V652.295H465.002V650.295V648.295H465V650.295ZM465.002 650.295L465.896 648.507L465.894 648.506L465 650.294L464.106 652.083L464.108 652.084L465.002 650.295ZM465 650.294L466 652.026L497 634.129L496 632.397L495 630.665L464 648.562L465 650.294ZM496 632.397L495 634.129L526 652.026L527 650.294L528 648.562L497 630.665L496 632.397Z" fill="#5F52FF" mask="url(#path-337-inside-6_2105_907)"/>
|
|
359
|
+
<rect x="1.73205" width="33.7957" height="33.7957" transform="matrix(0.866025 -0.5 0.866025 0.5 465.232 651.161)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
360
|
+
<path d="M496 668.009L496 683.509" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
361
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 459.732 642.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
362
|
+
<path d="M495.939 646V661" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
363
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 473.63 634.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
364
|
+
</g>
|
|
365
|
+
<defs>
|
|
366
|
+
<clipPath id="clip0_2105_907">
|
|
367
|
+
<rect width="1300" height="823" fill="white"/>
|
|
368
|
+
</clipPath>
|
|
369
|
+
</defs>
|
|
370
|
+
</svg>
|