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,338 @@
|
|
|
1
|
+
<svg width="1444" height="894" viewBox="0 0 1444 894" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_83_4466)">
|
|
3
|
+
<rect width="1444" height="894" fill="white"/>
|
|
4
|
+
<rect width="976.227" height="854.541" transform="matrix(0.866025 -0.5 0.866025 0.5 160.86 556.348)" fill="#A7E5FF" fill-opacity="0.2"/>
|
|
5
|
+
<rect x="0.866025" width="975.227" height="853.541" transform="matrix(0.866025 -0.5 0.866025 0.5 160.976 556.781)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
6
|
+
<rect width="754.065" height="255.299" transform="matrix(0.866025 -0.5 0.866025 0.5 -85.418 413.472)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
7
|
+
<rect x="0.866025" width="753.065" height="254.299" transform="matrix(0.866025 -0.5 0.866025 0.5 -85.3019 413.905)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M601.32 108.691C600.615 108.284 600.012 107.753 599.51 107.096C599.008 106.44 598.631 105.73 598.377 104.968C598.123 104.198 597.996 103.435 597.996 102.68C597.996 101.924 598.123 101.312 598.377 100.843C598.631 100.366 599.008 100.089 599.51 100.012C600.012 99.9353 600.615 100.1 601.32 100.507C602.025 100.914 602.625 101.444 603.121 102.097C603.622 102.753 604 103.466 604.254 104.236C604.508 104.999 604.635 105.758 604.635 106.513C604.635 107.269 604.508 107.885 604.254 108.361C604 108.831 603.622 109.104 603.121 109.181C602.625 109.261 602.025 109.098 601.32 108.691ZM601.32 107.624C601.822 107.914 602.241 108.024 602.578 107.954C602.914 107.877 603.165 107.659 603.33 107.3C603.495 106.94 603.578 106.475 603.578 105.903C603.578 105.331 603.495 104.77 603.33 104.22C603.165 103.67 602.914 103.166 602.578 102.707C602.241 102.242 601.822 101.864 601.32 101.574C600.818 101.285 600.396 101.176 600.053 101.25C599.717 101.319 599.466 101.534 599.301 101.893C599.142 102.256 599.062 102.724 599.062 103.296C599.062 103.868 599.142 104.427 599.301 104.973C599.466 105.523 599.717 106.031 600.053 106.497C600.396 106.959 600.818 107.335 601.32 107.624ZM605.536 105.273L606.451 105.801L606.451 106.769C606.629 106.491 606.848 106.35 607.108 106.346C607.369 106.342 607.667 106.438 608.004 106.632L608.385 106.852L608.385 107.897L607.975 107.66C607.677 107.488 607.416 107.396 607.194 107.385C606.978 107.371 606.806 107.459 606.679 107.649C606.552 107.84 606.489 108.159 606.489 108.606L606.489 111.543L605.536 110.993L605.536 105.273ZM609.183 107.379L610.145 107.934L610.145 113.654L609.183 113.099L609.183 107.379ZM609.183 105.179L610.145 105.734L610.145 106.922L609.183 106.367L609.183 105.179ZM613.439 117.888C612.779 117.507 612.261 117.039 611.887 116.486C611.518 115.936 611.309 115.342 611.258 114.704L612.201 115.248C612.252 115.63 612.382 115.961 612.592 116.244C612.808 116.53 613.096 116.777 613.458 116.986C613.878 117.228 614.221 117.313 614.487 117.239C614.754 117.166 614.887 116.832 614.887 116.238L614.887 115.567C614.716 115.754 614.494 115.85 614.221 115.853C613.954 115.853 613.646 115.752 613.297 115.551C612.82 115.276 612.411 114.911 612.068 114.456C611.725 114.002 611.464 113.499 611.286 112.949C611.109 112.399 611.02 111.838 611.02 111.266C611.02 110.694 611.109 110.236 611.286 109.891C611.464 109.547 611.725 109.349 612.068 109.297C612.411 109.239 612.82 109.347 613.297 109.622C613.659 109.831 613.976 110.098 614.249 110.425C614.522 110.751 614.748 111.12 614.926 111.53L614.926 110.694L615.85 111.228L615.85 116.794C615.85 117.351 615.745 117.756 615.535 118.009C615.326 118.262 615.04 118.372 614.678 118.339C614.322 118.31 613.909 118.16 613.439 117.888ZM613.458 114.698C613.782 114.885 614.049 114.955 614.259 114.907C614.475 114.856 614.637 114.711 614.745 114.473C614.852 114.234 614.906 113.914 614.906 113.51C614.906 113.114 614.852 112.735 614.745 112.372C614.637 112.001 614.475 111.67 614.259 111.376C614.049 111.087 613.782 110.848 613.458 110.661C613.141 110.478 612.874 110.408 612.658 110.452C612.449 110.5 612.29 110.647 612.182 110.892C612.074 111.131 612.02 111.448 612.02 111.844C612.02 112.247 612.074 112.63 612.182 112.993C612.29 113.356 612.449 113.686 612.658 113.983C612.874 114.277 613.141 114.515 613.458 114.698ZM616.951 111.864L617.913 112.419L617.913 118.139L616.951 117.584L616.951 111.864ZM616.951 109.664L617.913 110.219L617.913 111.407L616.951 110.852L616.951 109.664ZM619.016 113.056L619.931 113.584L619.931 114.398C620.115 114.211 620.337 114.108 620.598 114.09C620.864 114.075 621.169 114.167 621.512 114.365C621.906 114.592 622.233 114.88 622.493 115.229C622.76 115.573 622.957 115.947 623.084 116.351C623.211 116.747 623.275 117.143 623.275 117.539L623.275 121.235L622.332 120.69L622.332 117.104C622.332 116.715 622.243 116.352 622.065 116.015C621.887 115.678 621.623 115.408 621.274 115.207C621.103 115.108 620.918 115.049 620.722 115.031C620.525 115.005 620.35 115.076 620.198 115.245C620.045 115.406 619.969 115.707 619.969 116.147L619.969 119.326L619.016 118.776L619.016 113.056ZM626.146 122.893C625.854 122.724 625.616 122.542 625.432 122.348C625.254 122.157 625.12 121.937 625.032 121.688C624.943 121.431 624.898 121.138 624.898 120.808L624.898 117.365L624.003 116.848L624.003 115.935L624.898 116.452L624.898 114.692L625.86 115.248L625.86 117.008L627.165 117.761L627.165 118.674L625.86 117.921L625.86 121.243C625.86 121.441 625.898 121.609 625.975 121.749C626.051 121.881 626.178 121.998 626.356 122.101L627.165 122.568L627.165 123.481L626.146 122.893ZM627.984 118.234L628.899 118.762L628.899 119.73C629.077 119.451 629.296 119.31 629.556 119.306C629.817 119.303 630.115 119.398 630.452 119.592L630.833 119.812L630.833 120.857L630.423 120.621C630.125 120.449 629.864 120.357 629.642 120.346C629.426 120.331 629.255 120.419 629.128 120.61C629.001 120.801 628.937 121.12 628.937 121.567L628.937 124.504L627.984 123.954L627.984 118.234ZM633.165 127.077C632.612 126.758 632.174 126.358 631.85 125.878C631.532 125.394 631.374 124.88 631.374 124.338C631.374 124.008 631.44 123.767 631.574 123.617C631.713 123.463 631.917 123.386 632.183 123.386C632.456 123.39 632.796 123.469 633.203 123.623L634.708 124.162L634.708 123.766C634.708 123.465 634.622 123.195 634.451 122.957C634.285 122.722 634.035 122.508 633.698 122.314C633.368 122.123 633.092 122.044 632.869 122.077C632.653 122.106 632.536 122.292 632.517 122.633L631.564 122.083C631.577 121.445 631.783 121.083 632.183 120.999C632.583 120.915 633.085 121.047 633.688 121.395C634.336 121.769 634.822 122.196 635.146 122.677C635.476 123.161 635.641 123.667 635.641 124.195L635.641 128.375L634.746 127.858L634.746 127.165C634.543 127.341 634.308 127.418 634.041 127.396C633.781 127.37 633.488 127.264 633.165 127.077ZM633.298 126.252C633.539 126.391 633.765 126.47 633.974 126.488C634.19 126.51 634.365 126.45 634.498 126.307C634.638 126.16 634.708 125.922 634.708 125.592L634.708 125.009L633.355 124.547C633.012 124.429 632.758 124.385 632.593 124.415C632.434 124.448 632.355 124.603 632.355 124.882C632.355 125.139 632.434 125.386 632.593 125.625C632.752 125.863 632.987 126.072 633.298 126.252ZM636.617 123.218L637.579 123.774L637.579 129.494L636.617 128.938L636.617 123.218ZM636.617 121.018L637.579 121.574L637.579 122.762L636.617 122.206L636.617 121.018ZM638.683 122.211L639.636 122.761L639.636 130.681L638.683 130.131L638.683 122.211Z" fill="#465358"/>
|
|
9
|
+
<path d="M599.967 75.2993L597.805 74.0508L597.805 72.6098L603.54 75.9208L603.54 77.3618L601.377 76.1133L601.377 82.5923L599.967 81.7783L599.967 75.2993ZM605.729 85.2369C605.183 84.9215 604.745 84.5182 604.415 84.0269C604.084 83.5282 603.919 83.0039 603.919 82.4539C603.919 82.1165 603.986 81.8727 604.119 81.7224C604.259 81.5684 604.469 81.4987 604.748 81.5134C605.034 81.5317 605.402 81.627 605.853 81.7994L607.263 82.3274L607.263 82.0304C607.263 81.7737 607.196 81.5445 607.063 81.3429C606.93 81.1412 606.711 80.9524 606.406 80.7764C606.12 80.6114 605.888 80.5472 605.71 80.5839C605.539 80.6242 605.45 80.7819 605.444 81.0569L604.157 80.3144C604.164 79.6727 604.373 79.306 604.786 79.2144C605.205 79.119 605.742 79.2602 606.396 79.6379C607.101 80.0449 607.631 80.5014 607.987 81.0074C608.349 81.517 608.53 82.0432 608.53 82.5859L608.53 86.7219L607.301 86.0124L607.301 85.3744C607.098 85.5284 606.866 85.5925 606.606 85.5669C606.352 85.5375 606.06 85.4275 605.729 85.2369ZM606.053 84.3459C606.269 84.4705 606.466 84.5402 606.644 84.5549C606.828 84.5732 606.977 84.52 607.092 84.3954C607.206 84.2707 607.263 84.0654 607.263 83.7794L607.263 83.2954L606.101 82.8994C605.796 82.7894 605.577 82.7509 605.444 82.7839C605.31 82.8095 605.243 82.936 605.243 83.1634C605.243 83.3834 605.31 83.5979 605.444 83.8069C605.583 84.0122 605.786 84.1919 606.053 84.3459ZM609.396 81.5015L610.653 82.2275L610.653 83.0415C610.818 82.8435 611.021 82.7299 611.263 82.7005C611.504 82.6712 611.793 82.7537 612.13 82.948C612.472 83.146 612.768 83.4082 613.015 83.7345C613.263 84.0609 613.454 84.4349 613.587 84.8565C613.771 84.6402 614 84.5155 614.273 84.4825C614.552 84.4459 614.87 84.5302 615.226 84.7355C615.569 84.9335 615.864 85.1957 616.112 85.522C616.366 85.852 616.559 86.2279 616.693 86.6495C616.826 87.0712 616.893 87.5167 616.893 87.986L616.893 91.55L615.597 90.802L615.597 87.414C615.597 87.062 615.53 86.7412 615.397 86.4515C615.264 86.1619 615.06 85.9382 614.787 85.7805C614.514 85.6229 614.279 85.5972 614.082 85.7035C613.892 85.8135 613.797 86.1215 613.797 86.6275L613.797 89.7625L612.501 89.0145L612.501 85.6265C612.501 85.2745 612.431 84.9519 612.291 84.6585C612.158 84.3689 611.958 84.147 611.691 83.993C611.412 83.8317 611.174 83.8042 610.977 83.9105C610.786 84.0205 610.691 84.3285 610.691 84.8345L610.691 87.9695L609.396 87.2215L609.396 81.5015ZM620.681 87.885C621.144 88.1527 621.541 88.5102 621.871 88.9575C622.202 89.4048 622.452 89.9053 622.624 90.459C622.795 91.0053 622.881 91.5682 622.881 92.1475C622.881 92.7195 622.795 93.1833 622.624 93.539C622.452 93.8873 622.202 94.0982 621.871 94.1715C621.541 94.2375 621.144 94.1367 620.681 93.869C620.35 93.6783 620.058 93.44 619.804 93.154C619.556 92.8643 619.347 92.538 619.175 92.175L619.175 95.068L617.88 94.32L617.88 86.4L619.137 87.126L619.137 87.885C619.309 87.698 619.522 87.6008 619.776 87.5935C620.03 87.5862 620.331 87.6833 620.681 87.885ZM620.357 88.93C620.09 88.776 619.868 88.721 619.69 88.765C619.512 88.8017 619.379 88.9263 619.29 89.139C619.201 89.3517 619.156 89.6377 619.156 89.997C619.156 90.3563 619.201 90.6937 619.29 91.009C619.379 91.317 619.512 91.5957 619.69 91.845C619.868 92.0943 620.09 92.296 620.357 92.45C620.63 92.6077 620.855 92.6645 621.033 92.6205C621.211 92.5765 621.341 92.45 621.424 92.241C621.513 92.0283 621.557 91.7423 621.557 91.383C621.557 91.0237 621.513 90.6863 621.424 90.371C621.341 90.0593 621.211 89.7825 621.033 89.5405C620.855 89.2912 620.63 89.0877 620.357 88.93ZM625.934 96.9019C625.426 96.6086 624.981 96.2236 624.6 95.7469C624.225 95.2666 623.94 94.7459 623.743 94.1849C623.546 93.6166 623.447 93.0464 623.447 92.4744C623.447 91.9024 623.546 91.4459 623.743 91.1049C623.94 90.7639 624.225 90.5733 624.6 90.5329C624.981 90.4963 625.426 90.6246 625.934 90.9179C626.448 91.2149 626.893 91.5999 627.267 92.0729C627.642 92.5386 627.925 93.0648 628.115 93.6514C628.312 94.2344 628.411 94.8413 628.411 95.4719L628.411 95.8019L624.733 93.6789C624.765 93.9833 624.832 94.2674 624.934 94.5314C625.042 94.7918 625.178 95.0283 625.343 95.2409C625.515 95.4499 625.712 95.6186 625.934 95.7469C626.213 95.9083 626.445 95.9798 626.629 95.9614C626.82 95.9394 626.966 95.8404 627.067 95.6644L628.325 96.3904C628.16 96.8744 627.868 97.1678 627.448 97.2704C627.036 97.3694 626.531 97.2466 625.934 96.9019ZM627.115 94.0199C627.052 93.5873 626.918 93.2023 626.715 92.8649C626.512 92.5203 626.251 92.2563 625.934 92.0729C625.61 91.8859 625.346 91.8474 625.143 91.9574C624.94 92.0601 624.807 92.2911 624.743 92.6504L627.115 94.0199ZM629.192 92.9312L630.45 93.6572L630.45 94.6472C630.609 94.3649 630.812 94.2146 631.059 94.1962C631.307 94.1706 631.596 94.2531 631.926 94.4437L632.326 94.6747L632.326 96.0497L631.869 95.7857C631.577 95.6171 631.329 95.5291 631.126 95.5217C630.923 95.5071 630.764 95.5951 630.65 95.7857C630.542 95.9727 630.488 96.2789 630.488 96.7042L630.488 99.3992L629.192 98.6512L629.192 92.9312ZM635.26 94.2342L640.356 97.1767L640.356 98.6177L636.65 96.4782L636.65 98.2162L640.08 100.196L640.08 101.571L636.65 99.5912L636.65 101.516L640.337 103.645L640.337 105.086L635.26 102.154L635.26 94.2342ZM640.671 99.5585L642.071 100.367L643.291 105.372L644.491 101.764L645.882 102.567L644.024 107.214L642.538 106.356L640.671 99.5585ZM646.412 102.873L647.708 103.621L647.708 109.341L646.412 108.593L646.412 102.873ZM646.412 100.673L647.708 101.421L647.708 102.752L646.412 102.004L646.412 100.673ZM650.682 111.191C650.219 110.923 649.822 110.565 649.492 110.118C649.161 109.663 648.911 109.163 648.739 108.617C648.568 108.063 648.482 107.5 648.482 106.928C648.482 106.349 648.568 105.885 648.739 105.537C648.911 105.181 649.161 104.97 649.492 104.904C649.822 104.838 650.219 104.939 650.682 105.207C651.013 105.397 651.302 105.634 651.549 105.916C651.803 106.202 652.016 106.527 652.188 106.89L652.188 104.008L653.483 104.756L653.483 112.676L652.226 111.95L652.226 111.191C652.054 111.378 651.841 111.475 651.587 111.482C651.333 111.489 651.032 111.392 650.682 111.191ZM651.006 110.146C651.273 110.3 651.495 110.355 651.673 110.311C651.851 110.267 651.984 110.142 652.073 109.937C652.162 109.724 652.207 109.438 652.207 109.079C652.207 108.719 652.162 108.382 652.073 108.067C651.984 107.751 651.851 107.473 651.673 107.231C651.495 106.981 651.273 106.78 651.006 106.626C650.733 106.468 650.508 106.411 650.33 106.455C650.152 106.492 650.019 106.616 649.93 106.829C649.847 107.045 649.806 107.333 649.806 107.693C649.806 108.052 649.847 108.387 649.93 108.699C650.019 109.007 650.152 109.286 650.33 109.535C650.508 109.784 650.733 109.988 651.006 110.146ZM656.745 114.691C656.237 114.398 655.793 114.013 655.412 113.536C655.037 113.056 654.751 112.535 654.554 111.974C654.357 111.406 654.259 110.835 654.259 110.263C654.259 109.691 654.357 109.235 654.554 108.894C654.751 108.553 655.037 108.362 655.412 108.322C655.793 108.285 656.237 108.414 656.745 108.707C657.26 109.004 657.704 109.389 658.079 109.862C658.454 110.328 658.736 110.854 658.927 111.44C659.124 112.023 659.222 112.63 659.222 113.261L659.222 113.591L655.545 111.468C655.577 111.772 655.643 112.056 655.745 112.32C655.853 112.581 655.99 112.817 656.155 113.03C656.326 113.239 656.523 113.408 656.745 113.536C657.025 113.697 657.257 113.769 657.441 113.75C657.631 113.728 657.777 113.629 657.879 113.453L659.136 114.179C658.971 114.663 658.679 114.957 658.26 115.059C657.847 115.158 657.342 115.036 656.745 114.691ZM657.927 111.809C657.863 111.376 657.73 110.991 657.527 110.654C657.323 110.309 657.063 110.045 656.745 109.862C656.421 109.675 656.158 109.636 655.955 109.746C655.751 109.849 655.618 110.08 655.555 110.439L657.927 111.809ZM660.004 110.72L661.261 111.446L661.261 112.227C661.446 112.055 661.668 111.963 661.928 111.952C662.189 111.934 662.487 112.022 662.824 112.216C663.198 112.433 663.516 112.708 663.776 113.041C664.043 113.371 664.243 113.747 664.376 114.169C664.516 114.594 664.586 115.045 664.586 115.522L664.586 119.086L663.3 118.343L663.3 114.955C663.3 114.596 663.227 114.271 663.081 113.982C662.935 113.685 662.703 113.445 662.385 113.261C662.208 113.159 662.036 113.107 661.871 113.107C661.712 113.104 661.576 113.175 661.461 113.322C661.353 113.472 661.299 113.716 661.299 114.053L661.299 117.188L660.004 116.44L660.004 110.72ZM667.51 120.774C667.199 120.594 666.942 120.406 666.739 120.208C666.535 120.002 666.373 119.755 666.253 119.465C666.138 119.179 666.081 118.838 666.081 118.442L666.081 115.362L665.224 114.867L665.224 113.734L666.081 114.229L666.081 112.469L667.377 113.217L667.377 114.977L668.615 115.692L668.615 116.825L667.377 116.11L667.377 119.036C667.377 119.219 667.412 119.375 667.482 119.504C667.551 119.625 667.672 119.735 667.844 119.834L668.615 120.279L668.615 121.412L667.51 120.774ZM598.234 83.8573L599.625 84.6603L599.625 88.4223L602.74 86.4588L604.473 87.4598L601.72 89.0823L604.473 95.3798L602.806 94.4173L600.768 89.6543L599.625 90.3143L599.625 92.5803L598.234 91.7773L598.234 83.8573ZM605.042 89.9879L606.299 90.7139L606.299 91.4949C606.483 91.3225 606.706 91.2309 606.966 91.2199C607.226 91.2015 607.525 91.2895 607.861 91.4839C608.236 91.7002 608.554 91.9752 608.814 92.3089C609.081 92.6389 609.281 93.0147 609.414 93.4364C609.554 93.8617 609.624 94.3127 609.624 94.7894L609.624 98.3534L608.338 97.6109L608.338 94.2229C608.338 93.8635 608.265 93.539 608.119 93.2494C607.973 92.9524 607.741 92.7122 607.423 92.5289C607.245 92.4262 607.074 92.3749 606.909 92.3749C606.75 92.3712 606.614 92.4427 606.499 92.5894C606.391 92.7397 606.337 92.9835 606.337 93.3209L606.337 96.4559L605.042 95.7079L605.042 89.9879ZM612.939 100.399C612.418 100.098 611.964 99.708 611.576 99.2277C611.195 98.7437 610.903 98.2193 610.7 97.6547C610.503 97.0863 610.405 96.5162 610.405 95.9442C610.405 95.3722 610.503 94.9157 610.7 94.5747C610.903 94.2373 611.195 94.0503 611.576 94.0137C611.964 93.9807 612.418 94.1145 612.939 94.4152C613.466 94.7195 613.92 95.11 614.301 95.5867C614.688 96.067 614.98 96.5913 615.177 97.1597C615.374 97.728 615.473 98.2982 615.473 98.8702C615.473 99.4422 615.374 99.8987 615.177 100.24C614.98 100.573 614.688 100.76 614.301 100.801C613.92 100.837 613.466 100.703 612.939 100.399ZM612.939 99.1672C613.218 99.3285 613.447 99.3872 613.625 99.3432C613.809 99.3028 613.942 99.1782 614.025 98.9692C614.114 98.7565 614.158 98.4705 614.158 98.1112C614.158 97.7518 614.114 97.4145 614.025 97.0992C613.942 96.7875 613.809 96.5088 613.625 96.2632C613.447 96.0138 613.218 95.8085 612.939 95.6472C612.666 95.4895 612.437 95.4308 612.253 95.4712C612.075 95.5078 611.942 95.6325 611.853 95.8452C611.764 96.0578 611.719 96.3438 611.719 96.7032C611.719 97.0625 611.764 97.3998 611.853 97.7152C611.942 98.0232 612.075 98.3018 612.253 98.5512C612.437 98.8042 612.666 99.0095 612.939 99.1672ZM615.804 96.2015L617.204 97.01L618.271 101.553L619.224 98.176L620.453 98.8855L621.406 103.363L622.472 100.052L623.873 100.86L622.149 105.585L620.796 104.804L619.843 100.404L618.881 103.698L617.528 102.917L615.804 96.2015ZM624.411 98.9705L625.706 99.7185L625.706 107.638L624.411 106.89L624.411 98.9705ZM628.976 109.658C628.468 109.365 628.023 108.98 627.642 108.503C627.268 108.023 626.982 107.502 626.785 106.941C626.588 106.373 626.49 105.803 626.49 105.231C626.49 104.659 626.588 104.202 626.785 103.861C626.982 103.52 627.268 103.33 627.642 103.289C628.023 103.253 628.468 103.381 628.976 103.674C629.49 103.971 629.935 104.356 630.31 104.829C630.684 105.295 630.967 105.821 631.157 106.408C631.354 106.991 631.453 107.598 631.453 108.228L631.453 108.558L627.776 106.435C627.807 106.74 627.874 107.024 627.976 107.288C628.084 107.548 628.22 107.785 628.385 107.997C628.557 108.206 628.754 108.375 628.976 108.503C629.255 108.665 629.487 108.736 629.671 108.718C629.862 108.696 630.008 108.597 630.11 108.421L631.367 109.147C631.202 109.631 630.91 109.924 630.491 110.027C630.078 110.126 629.573 110.003 628.976 109.658ZM630.157 106.776C630.094 106.344 629.96 105.959 629.757 105.621C629.554 105.277 629.293 105.013 628.976 104.829C628.652 104.642 628.388 104.604 628.185 104.714C627.982 104.816 627.849 105.047 627.785 105.407L630.157 106.776ZM634.225 112.689C633.762 112.421 633.365 112.064 633.035 111.617C632.704 111.162 632.453 110.661 632.282 110.115C632.111 109.561 632.025 108.999 632.025 108.427C632.025 107.847 632.111 107.383 632.282 107.035C632.453 106.679 632.704 106.469 633.035 106.403C633.365 106.337 633.762 106.437 634.225 106.705C634.556 106.896 634.845 107.132 635.092 107.415C635.346 107.701 635.559 108.025 635.731 108.388L635.731 105.506L637.026 106.254L637.026 114.174L635.769 113.448L635.769 112.689C635.597 112.876 635.384 112.973 635.13 112.981C634.876 112.988 634.575 112.891 634.225 112.689ZM634.549 111.644C634.816 111.798 635.038 111.853 635.216 111.809C635.394 111.765 635.527 111.64 635.616 111.435C635.705 111.222 635.75 110.936 635.75 110.577C635.75 110.218 635.705 109.88 635.616 109.565C635.527 109.25 635.394 108.971 635.216 108.729C635.038 108.48 634.816 108.278 634.549 108.124C634.276 107.966 634.051 107.91 633.873 107.954C633.695 107.99 633.562 108.115 633.473 108.328C633.39 108.544 633.349 108.832 633.349 109.191C633.349 109.55 633.39 109.886 633.473 110.198C633.562 110.506 633.695 110.784 633.873 111.034C634.051 111.283 634.276 111.486 634.549 111.644ZM640.26 118.373C639.561 117.97 639.018 117.477 638.631 116.894C638.243 116.311 638.031 115.693 637.993 115.04L639.269 115.777C639.301 116.096 639.406 116.377 639.583 116.619C639.768 116.864 640.009 117.073 640.307 117.246C640.657 117.447 640.942 117.513 641.165 117.444C641.393 117.385 641.508 117.106 641.508 116.608L641.508 115.915C641.336 116.072 641.123 116.147 640.869 116.14C640.622 116.129 640.333 116.028 640.003 115.838C639.539 115.57 639.142 115.216 638.812 114.776C638.482 114.336 638.231 113.85 638.059 113.319C637.888 112.78 637.802 112.231 637.802 111.674C637.802 111.109 637.888 110.66 638.059 110.327C638.231 109.986 638.482 109.786 638.812 109.727C639.142 109.668 639.539 109.773 640.003 110.041C640.345 110.239 640.644 110.484 640.898 110.778C641.158 111.075 641.374 111.412 641.546 111.79L641.546 111.064L642.803 111.79L642.803 117.356C642.803 117.906 642.692 118.3 642.47 118.538C642.248 118.784 641.946 118.888 641.565 118.852C641.184 118.815 640.749 118.655 640.26 118.373ZM640.326 114.848C640.593 115.002 640.815 115.06 640.993 115.024C641.171 114.98 641.304 114.859 641.393 114.661C641.482 114.455 641.527 114.177 641.527 113.825C641.527 113.473 641.482 113.143 641.393 112.835C641.304 112.527 641.171 112.252 640.993 112.01C640.815 111.76 640.593 111.559 640.326 111.405C640.053 111.247 639.828 111.19 639.65 111.234C639.472 111.271 639.339 111.392 639.25 111.597C639.167 111.806 639.126 112.087 639.126 112.439C639.126 112.791 639.167 113.119 639.25 113.423C639.339 113.724 639.472 113.999 639.65 114.248C639.828 114.49 640.053 114.69 640.326 114.848ZM646.066 119.525C645.557 119.232 645.113 118.847 644.732 118.37C644.357 117.89 644.071 117.369 643.874 116.808C643.678 116.24 643.579 115.669 643.579 115.097C643.579 114.525 643.678 114.069 643.874 113.728C644.071 113.387 644.357 113.196 644.732 113.156C645.113 113.119 645.557 113.248 646.066 113.541C646.58 113.838 647.024 114.223 647.399 114.696C647.774 115.162 648.056 115.688 648.247 116.274C648.444 116.857 648.542 117.464 648.542 118.095L648.542 118.425L644.865 116.302C644.897 116.606 644.964 116.89 645.065 117.154C645.173 117.415 645.31 117.651 645.475 117.864C645.646 118.073 645.843 118.242 646.066 118.37C646.345 118.531 646.577 118.603 646.761 118.584C646.951 118.562 647.098 118.463 647.199 118.287L648.457 119.013C648.291 119.497 647.999 119.791 647.58 119.893C647.167 119.992 646.662 119.87 646.066 119.525ZM647.247 116.643C647.183 116.21 647.05 115.825 646.847 115.488C646.643 115.143 646.383 114.879 646.066 114.696C645.742 114.509 645.478 114.47 645.275 114.58C645.072 114.683 644.938 114.914 644.875 115.273L647.247 116.643ZM654.484 124.385C653.817 124 653.239 123.483 652.75 122.834C652.261 122.185 651.886 121.478 651.626 120.711C651.372 119.941 651.245 119.179 651.245 118.423C651.245 117.661 651.375 117.046 651.635 116.581C651.902 116.111 652.293 115.846 652.807 115.783C653.328 115.717 653.95 115.893 654.674 116.311C655.265 116.652 655.786 117.074 656.237 117.576C656.688 118.079 657.053 118.627 657.332 119.221C657.612 119.807 657.793 120.403 657.875 121.008L656.456 120.189C656.354 119.697 656.148 119.23 655.836 118.786C655.525 118.343 655.138 117.987 654.674 117.719C654.23 117.463 653.858 117.369 653.56 117.439C653.261 117.501 653.042 117.694 652.902 118.016C652.763 118.339 652.693 118.753 652.693 119.259C652.693 119.758 652.763 120.249 652.902 120.733C653.042 121.217 653.261 121.666 653.56 122.081C653.858 122.488 654.23 122.82 654.674 123.076C655.17 123.362 655.57 123.443 655.875 123.318C656.179 123.186 656.392 122.884 656.513 122.411L654.388 121.184L654.388 119.886L657.961 121.949L657.961 126.261L656.932 125.667L656.932 124.292C656.703 124.644 656.386 124.834 655.979 124.864C655.579 124.889 655.081 124.73 654.484 124.385ZM658.925 121.097L660.182 121.823L660.182 122.813C660.341 122.531 660.544 122.381 660.792 122.362C661.04 122.337 661.329 122.419 661.659 122.61L662.059 122.841L662.059 124.216L661.602 123.952C661.309 123.783 661.062 123.695 660.859 123.688C660.655 123.673 660.497 123.761 660.382 123.952C660.274 124.139 660.22 124.445 660.22 124.87L660.22 127.565L658.925 126.817L658.925 121.097ZM664.338 130.075C663.792 129.759 663.354 129.356 663.024 128.865C662.693 128.366 662.528 127.842 662.528 127.292C662.528 126.954 662.595 126.711 662.728 126.56C662.868 126.406 663.078 126.337 663.357 126.351C663.643 126.37 664.011 126.465 664.462 126.637L665.872 127.165L665.872 126.868C665.872 126.612 665.805 126.382 665.672 126.181C665.539 125.979 665.319 125.79 665.015 125.614C664.729 125.449 664.497 125.385 664.319 125.422C664.148 125.462 664.059 125.62 664.052 125.895L662.766 125.152C662.773 124.511 662.982 124.144 663.395 124.052C663.814 123.957 664.351 124.098 665.005 124.476C665.71 124.883 666.24 125.339 666.596 125.845C666.958 126.355 667.139 126.881 667.139 127.424L667.139 131.56L665.91 130.85L665.91 130.212C665.707 130.366 665.475 130.43 665.215 130.405C664.961 130.375 664.668 130.265 664.338 130.075ZM664.662 129.184C664.878 129.308 665.075 129.378 665.253 129.393C665.437 129.411 665.586 129.358 665.701 129.233C665.815 129.109 665.872 128.903 665.872 128.617L665.872 128.133L664.71 127.737C664.405 127.627 664.186 127.589 664.052 127.622C663.919 127.647 663.852 127.774 663.852 128.001C663.852 128.221 663.919 128.436 664.052 128.645C664.192 128.85 664.395 129.03 664.662 129.184ZM670.805 127.824C671.269 128.092 671.666 128.45 671.996 128.897C672.326 129.344 672.577 129.845 672.749 130.398C672.92 130.945 673.006 131.508 673.006 132.087C673.006 132.659 672.92 133.123 672.749 133.478C672.577 133.827 672.326 134.038 671.996 134.111C671.666 134.177 671.269 134.076 670.805 133.808C670.475 133.618 670.183 133.379 669.929 133.093C669.681 132.804 669.471 132.477 669.3 132.114L669.3 135.007L668.004 134.259L668.004 126.339L669.262 127.065L669.262 127.824C669.433 127.637 669.646 127.54 669.9 127.533C670.154 127.526 670.456 127.623 670.805 127.824ZM670.481 128.869C670.215 128.715 669.992 128.66 669.814 128.704C669.637 128.741 669.503 128.866 669.414 129.078C669.325 129.291 669.281 129.577 669.281 129.936C669.281 130.296 669.325 130.633 669.414 130.948C669.503 131.256 669.637 131.535 669.814 131.784C669.992 132.034 670.215 132.235 670.481 132.389C670.754 132.547 670.98 132.604 671.158 132.56C671.335 132.516 671.466 132.389 671.548 132.18C671.637 131.968 671.682 131.682 671.682 131.322C671.682 130.963 671.637 130.626 671.548 130.31C671.466 129.999 671.335 129.722 671.158 129.48C670.98 129.231 670.754 129.027 670.481 128.869ZM673.782 127.475L675.077 128.223L675.077 131.149C675.261 130.991 675.48 130.909 675.735 130.901C675.989 130.894 676.278 130.984 676.601 131.171C676.976 131.387 677.294 131.662 677.554 131.996C677.821 132.326 678.021 132.702 678.154 133.123C678.294 133.549 678.364 134 678.364 134.476L678.364 138.04L677.078 137.298L677.078 133.91C677.078 133.551 677.005 133.226 676.859 132.936C676.713 132.639 676.481 132.399 676.163 132.216C675.985 132.113 675.814 132.062 675.649 132.062C675.49 132.058 675.353 132.13 675.239 132.276C675.131 132.427 675.077 132.671 675.077 133.008L675.077 136.143L673.782 135.395L673.782 127.475Z" fill="#5F52FF"/>
|
|
10
|
+
<path d="M535.162 208.6L561.162 190.6H581.162L608.162 212.6H612.912M612.912 212.6H617.662L634.162 170.6L578.162 180.6L557.162 134.1L542.662 137.6L509.162 167.6L502.162 177.1L518.662 205.6L535.162 212.6H612.912ZM512.162 174.6L557.162 180.6M568.162 137.6L621.162 163.6M604.662 135.1L582.662 170.6M610.162 134.1L627.662 160.1" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
11
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 606.662 170.659)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
12
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 606.662 164.548)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
13
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 606.662 159.2)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
14
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 606.662 153.853)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
15
|
+
<circle cx="9.62541" cy="9.62541" r="8.62541" transform="matrix(0.866025 -0.5 0.866025 0.5 619.007 153.853)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
16
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 522.662 138.659)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
17
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 522.662 132.548)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
18
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 522.662 127.2)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
19
|
+
<circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 537.058 127.2)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
20
|
+
<circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 537.058 123.2)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
21
|
+
<circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 537.058 119.2)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
22
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 533.662 187.029)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
23
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 533.662 179.029)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
24
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 533.662 172.029)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
25
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 533.662 165.029)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
26
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 533.662 158.029)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
27
|
+
<circle cx="12.5581" cy="12.5581" r="11.5581" transform="matrix(0.866025 -0.5 -0.866025 -0.5 571.645 170.587)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
28
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 215.211)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
29
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 211.002)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
30
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 205.319)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
31
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 199.637)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
32
|
+
<circle cx="6.62868" cy="6.62868" r="5.62868" transform="matrix(0.866025 -0.5 0.866025 0.5 605.164 199.637)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
33
|
+
<circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 134.584)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
34
|
+
<circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 132.336)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
35
|
+
<circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 596.662 129.3)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
36
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 482.662 176.211)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
37
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 482.662 172.002)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
38
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 482.662 166.319)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
39
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 482.662 160.637)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
40
|
+
<circle cx="6.62868" cy="6.62868" r="5.62868" transform="matrix(0.866025 -0.5 0.866025 0.5 491.164 160.637)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
41
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 497.662 212.312)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
42
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 497.662 206.2)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
43
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 497.662 200.853)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
44
|
+
<path d="M384.805 209.61L385.881 210.231L387.968 218.135L390.035 212.629L391.111 213.251L388.53 219.68L387.387 219.02L384.805 209.61ZM393.963 222.949C393.487 222.674 393.068 222.304 392.706 221.838C392.35 221.376 392.074 220.861 391.877 220.293C391.687 219.728 391.591 219.16 391.591 218.588C391.591 218.016 391.687 217.558 391.877 217.213C392.074 216.872 392.35 216.676 392.706 216.624C393.068 216.577 393.487 216.69 393.963 216.965C394.44 217.24 394.856 217.609 395.211 218.071C395.573 218.537 395.85 219.055 396.04 219.627C396.237 220.196 396.335 220.777 396.335 221.371L396.335 221.701L392.582 219.534C392.614 219.89 392.687 220.225 392.801 220.54C392.916 220.856 393.071 221.144 393.268 221.404C393.465 221.657 393.697 221.86 393.963 222.014C394.275 222.194 394.541 222.267 394.764 222.234C394.986 222.194 395.154 222.06 395.269 221.833L396.231 222.388C396.072 222.869 395.792 223.162 395.392 223.268C394.992 223.375 394.516 223.268 393.963 222.949ZM395.326 220.216C395.262 219.71 395.113 219.253 394.878 218.846C394.649 218.436 394.344 218.12 393.963 217.9C393.582 217.68 393.274 217.642 393.039 217.785C392.811 217.924 392.665 218.21 392.601 218.643L395.326 220.216ZM397.215 218.975L398.177 219.53L398.177 225.25L397.215 224.695L397.215 218.975ZM397.215 216.775L398.177 217.33L398.177 218.518L397.215 217.963L397.215 216.775ZM399.281 217.967L400.234 218.517L400.234 226.437L399.281 225.887L399.281 217.967ZM401.413 219.198L402.432 219.787L402.432 227.707L401.413 227.118L401.413 219.198ZM403.673 220.503L406.045 221.873C406.788 222.302 407.414 222.839 407.922 223.484C408.43 224.122 408.811 224.812 409.065 225.552C409.319 226.293 409.446 227.041 409.446 227.796C409.446 228.552 409.319 229.153 409.065 229.6C408.811 230.048 408.43 230.301 407.922 230.359C407.414 230.411 406.788 230.222 406.045 229.793L403.673 228.423L403.673 220.503ZM406.045 228.748C406.573 229.052 407.011 229.181 407.36 229.133C407.709 229.085 407.967 228.893 408.132 228.555C408.303 228.214 408.389 227.758 408.389 227.186C408.389 226.614 408.303 226.062 408.132 225.53C407.967 224.995 407.709 224.502 407.36 224.051C407.011 223.6 406.573 223.222 406.045 222.918L404.693 222.137L404.693 227.967L406.045 228.748Z" fill="#465358"/>
|
|
45
|
+
<path d="M386.967 175.299L384.805 174.051L384.805 172.61L390.54 175.921L390.54 177.362L388.377 176.113L388.377 182.592L386.967 181.778L386.967 175.299ZM392.729 185.237C392.183 184.922 391.745 184.518 391.415 184.027C391.084 183.528 390.919 183.004 390.919 182.454C390.919 182.117 390.986 181.873 391.119 181.722C391.259 181.568 391.469 181.499 391.748 181.513C392.034 181.532 392.402 181.627 392.853 181.799L394.263 182.327L394.263 182.03C394.263 181.774 394.196 181.545 394.063 181.343C393.93 181.141 393.711 180.952 393.406 180.776C393.12 180.611 392.888 180.547 392.71 180.584C392.539 180.624 392.45 180.782 392.444 181.057L391.157 180.314C391.164 179.673 391.373 179.306 391.786 179.214C392.205 179.119 392.742 179.26 393.396 179.638C394.101 180.045 394.631 180.501 394.987 181.007C395.349 181.517 395.53 182.043 395.53 182.586L395.53 186.722L394.301 186.012L394.301 185.374C394.098 185.528 393.866 185.593 393.606 185.567C393.352 185.538 393.06 185.428 392.729 185.237ZM393.053 184.346C393.269 184.471 393.466 184.54 393.644 184.555C393.828 184.573 393.977 184.52 394.092 184.395C394.206 184.271 394.263 184.065 394.263 183.779L394.263 183.295L393.101 182.899C392.796 182.789 392.577 182.751 392.444 182.784C392.31 182.81 392.243 182.936 392.243 183.163C392.243 183.383 392.31 183.598 392.444 183.807C392.583 184.012 392.786 184.192 393.053 184.346ZM396.396 181.502L397.653 182.228L397.653 183.042C397.818 182.844 398.021 182.73 398.263 182.701C398.504 182.671 398.793 182.754 399.13 182.948C399.472 183.146 399.768 183.408 400.015 183.735C400.263 184.061 400.454 184.435 400.587 184.857C400.771 184.64 401 184.516 401.273 184.483C401.552 184.446 401.87 184.53 402.226 184.736C402.569 184.934 402.864 185.196 403.112 185.522C403.366 185.852 403.559 186.228 403.693 186.65C403.826 187.071 403.893 187.517 403.893 187.986L403.893 191.55L402.597 190.802L402.597 187.414C402.597 187.062 402.53 186.741 402.397 186.452C402.264 186.162 402.06 185.938 401.787 185.781C401.514 185.623 401.279 185.597 401.082 185.704C400.892 185.814 400.797 186.122 400.797 186.628L400.797 189.763L399.501 189.015L399.501 185.627C399.501 185.275 399.431 184.952 399.291 184.659C399.158 184.369 398.958 184.147 398.691 183.993C398.412 183.832 398.174 183.804 397.977 183.911C397.786 184.021 397.691 184.329 397.691 184.835L397.691 187.97L396.396 187.222L396.396 181.502ZM407.681 187.885C408.144 188.153 408.541 188.51 408.871 188.957C409.202 189.405 409.452 189.905 409.624 190.459C409.795 191.005 409.881 191.568 409.881 192.147C409.881 192.719 409.795 193.183 409.624 193.539C409.452 193.887 409.202 194.098 408.871 194.171C408.541 194.237 408.144 194.137 407.681 193.869C407.35 193.678 407.058 193.44 406.804 193.154C406.556 192.864 406.347 192.538 406.175 192.175L406.175 195.068L404.88 194.32L404.88 186.4L406.137 187.126L406.137 187.885C406.309 187.698 406.522 187.601 406.776 187.593C407.03 187.586 407.331 187.683 407.681 187.885ZM407.357 188.93C407.09 188.776 406.868 188.721 406.69 188.765C406.512 188.802 406.379 188.926 406.29 189.139C406.201 189.352 406.156 189.638 406.156 189.997C406.156 190.356 406.201 190.694 406.29 191.009C406.379 191.317 406.512 191.596 406.69 191.845C406.868 192.094 407.09 192.296 407.357 192.45C407.63 192.608 407.855 192.664 408.033 192.62C408.211 192.576 408.341 192.45 408.424 192.241C408.513 192.028 408.557 191.742 408.557 191.383C408.557 191.024 408.513 190.686 408.424 190.371C408.341 190.059 408.211 189.782 408.033 189.54C407.855 189.291 407.63 189.088 407.357 188.93ZM412.934 196.902C412.426 196.609 411.981 196.224 411.6 195.747C411.225 195.267 410.94 194.746 410.743 194.185C410.546 193.617 410.447 193.046 410.447 192.474C410.447 191.902 410.546 191.446 410.743 191.105C410.94 190.764 411.225 190.573 411.6 190.533C411.981 190.496 412.426 190.625 412.934 190.918C413.448 191.215 413.893 191.6 414.267 192.073C414.642 192.539 414.925 193.065 415.115 193.651C415.312 194.234 415.411 194.841 415.411 195.472L415.411 195.802L411.733 193.679C411.765 193.983 411.832 194.267 411.934 194.531C412.042 194.792 412.178 195.028 412.343 195.241C412.515 195.45 412.712 195.619 412.934 195.747C413.213 195.908 413.445 195.98 413.629 195.961C413.82 195.939 413.966 195.84 414.067 195.664L415.325 196.39C415.16 196.874 414.868 197.168 414.448 197.27C414.036 197.369 413.531 197.247 412.934 196.902ZM414.115 194.02C414.052 193.587 413.918 193.202 413.715 192.865C413.512 192.52 413.251 192.256 412.934 192.073C412.61 191.886 412.346 191.847 412.143 191.957C411.94 192.06 411.807 192.291 411.743 192.65L414.115 194.02ZM416.192 192.931L417.45 193.657L417.45 194.647C417.609 194.365 417.812 194.215 418.059 194.196C418.307 194.171 418.596 194.253 418.926 194.444L419.326 194.675L419.326 196.05L418.869 195.786C418.577 195.617 418.329 195.529 418.126 195.522C417.923 195.507 417.764 195.595 417.65 195.786C417.542 195.973 417.488 196.279 417.488 196.704L417.488 199.399L416.192 198.651L416.192 192.931ZM422.26 194.234L427.356 197.177L427.356 198.618L423.65 196.478L423.65 198.216L427.08 200.196L427.08 201.571L423.65 199.591L423.65 201.516L427.337 203.645L427.337 205.086L422.26 202.154L422.26 194.234ZM427.671 199.558L429.071 200.367L430.291 205.372L431.491 201.764L432.882 202.567L431.024 207.214L429.538 206.356L427.671 199.558ZM433.412 202.873L434.708 203.621L434.708 209.341L433.412 208.593L433.412 202.873ZM433.412 200.673L434.708 201.421L434.708 202.752L433.412 202.004L433.412 200.673ZM437.682 211.191C437.219 210.923 436.822 210.565 436.492 210.118C436.161 209.663 435.911 209.163 435.739 208.617C435.568 208.063 435.482 207.5 435.482 206.928C435.482 206.349 435.568 205.885 435.739 205.537C435.911 205.181 436.161 204.97 436.492 204.904C436.822 204.838 437.219 204.939 437.682 205.207C438.013 205.397 438.302 205.634 438.549 205.916C438.803 206.202 439.016 206.527 439.188 206.89L439.188 204.008L440.483 204.756L440.483 212.676L439.226 211.95L439.226 211.191C439.054 211.378 438.841 211.475 438.587 211.482C438.333 211.489 438.032 211.392 437.682 211.191ZM438.006 210.146C438.273 210.3 438.495 210.355 438.673 210.311C438.851 210.267 438.984 210.142 439.073 209.937C439.162 209.724 439.207 209.438 439.207 209.079C439.207 208.719 439.162 208.382 439.073 208.067C438.984 207.751 438.851 207.473 438.673 207.231C438.495 206.981 438.273 206.78 438.006 206.626C437.733 206.468 437.508 206.411 437.33 206.455C437.152 206.492 437.019 206.616 436.93 206.829C436.847 207.045 436.806 207.333 436.806 207.693C436.806 208.052 436.847 208.387 436.93 208.699C437.019 209.007 437.152 209.286 437.33 209.535C437.508 209.784 437.733 209.988 438.006 210.146ZM443.745 214.691C443.237 214.398 442.793 214.013 442.412 213.536C442.037 213.056 441.751 212.535 441.554 211.974C441.357 211.406 441.259 210.835 441.259 210.263C441.259 209.691 441.357 209.235 441.554 208.894C441.751 208.553 442.037 208.362 442.412 208.322C442.793 208.285 443.237 208.414 443.745 208.707C444.26 209.004 444.704 209.389 445.079 209.862C445.454 210.328 445.736 210.854 445.927 211.44C446.124 212.023 446.222 212.63 446.222 213.261L446.222 213.591L442.545 211.468C442.577 211.772 442.643 212.056 442.745 212.32C442.853 212.581 442.99 212.817 443.155 213.03C443.326 213.239 443.523 213.408 443.745 213.536C444.025 213.697 444.257 213.769 444.441 213.75C444.631 213.728 444.777 213.629 444.879 213.453L446.136 214.179C445.971 214.663 445.679 214.957 445.26 215.059C444.847 215.158 444.342 215.036 443.745 214.691ZM444.927 211.809C444.863 211.376 444.73 210.991 444.527 210.654C444.323 210.309 444.063 210.045 443.745 209.862C443.421 209.675 443.158 209.636 442.955 209.746C442.751 209.849 442.618 210.08 442.555 210.439L444.927 211.809ZM447.004 210.72L448.261 211.446L448.261 212.227C448.446 212.055 448.668 211.963 448.928 211.952C449.189 211.934 449.487 212.022 449.824 212.216C450.198 212.433 450.516 212.708 450.776 213.041C451.043 213.371 451.243 213.747 451.376 214.169C451.516 214.594 451.586 215.045 451.586 215.522L451.586 219.086L450.3 218.343L450.3 214.955C450.3 214.596 450.227 214.271 450.081 213.982C449.935 213.685 449.703 213.445 449.385 213.261C449.208 213.159 449.036 213.107 448.871 213.107C448.712 213.104 448.576 213.175 448.461 213.322C448.353 213.472 448.299 213.716 448.299 214.053L448.299 217.188L447.004 216.44L447.004 210.72ZM454.51 220.774C454.199 220.594 453.942 220.406 453.739 220.208C453.535 220.002 453.373 219.755 453.253 219.465C453.138 219.179 453.081 218.838 453.081 218.442L453.081 215.362L452.224 214.867L452.224 213.734L453.081 214.229L453.081 212.469L454.377 213.217L454.377 214.977L455.615 215.692L455.615 216.825L454.377 216.11L454.377 219.036C454.377 219.219 454.412 219.375 454.482 219.504C454.551 219.625 454.672 219.735 454.844 219.834L455.615 220.279L455.615 221.412L454.51 220.774ZM385.234 183.857L386.625 184.66L386.625 188.422L389.74 186.459L391.473 187.46L388.72 189.082L391.473 195.38L389.806 194.417L387.768 189.654L386.625 190.314L386.625 192.58L385.234 191.777L385.234 183.857ZM392.042 189.988L393.299 190.714L393.299 191.495C393.483 191.323 393.706 191.231 393.966 191.22C394.226 191.202 394.525 191.29 394.861 191.484C395.236 191.7 395.554 191.975 395.814 192.309C396.081 192.639 396.281 193.015 396.414 193.436C396.554 193.862 396.624 194.313 396.624 194.789L396.624 198.353L395.338 197.611L395.338 194.223C395.338 193.864 395.265 193.539 395.119 193.249C394.973 192.952 394.741 192.712 394.423 192.529C394.245 192.426 394.074 192.375 393.909 192.375C393.75 192.371 393.614 192.443 393.499 192.589C393.391 192.74 393.337 192.984 393.337 193.321L393.337 196.456L392.042 195.708L392.042 189.988ZM399.939 200.399C399.418 200.098 398.964 199.708 398.576 199.228C398.195 198.744 397.903 198.219 397.7 197.655C397.503 197.086 397.405 196.516 397.405 195.944C397.405 195.372 397.503 194.916 397.7 194.575C397.903 194.237 398.195 194.05 398.576 194.014C398.964 193.981 399.418 194.114 399.939 194.415C400.466 194.719 400.92 195.11 401.301 195.587C401.688 196.067 401.98 196.591 402.177 197.16C402.374 197.728 402.473 198.298 402.473 198.87C402.473 199.442 402.374 199.899 402.177 200.24C401.98 200.573 401.688 200.76 401.301 200.801C400.92 200.837 400.466 200.703 399.939 200.399ZM399.939 199.167C400.218 199.328 400.447 199.387 400.625 199.343C400.809 199.303 400.942 199.178 401.025 198.969C401.114 198.756 401.158 198.47 401.158 198.111C401.158 197.752 401.114 197.414 401.025 197.099C400.942 196.787 400.809 196.509 400.625 196.263C400.447 196.014 400.218 195.808 399.939 195.647C399.666 195.489 399.437 195.431 399.253 195.471C399.075 195.508 398.942 195.632 398.853 195.845C398.764 196.058 398.719 196.344 398.719 196.703C398.719 197.062 398.764 197.4 398.853 197.715C398.942 198.023 399.075 198.302 399.253 198.551C399.437 198.804 399.666 199.009 399.939 199.167ZM402.804 196.202L404.204 197.01L405.271 201.553L406.224 198.176L407.453 198.886L408.406 203.363L409.472 200.052L410.873 200.86L409.149 205.585L407.796 204.804L406.843 200.404L405.881 203.698L404.528 202.917L402.804 196.202ZM411.411 198.97L412.706 199.718L412.706 207.638L411.411 206.89L411.411 198.97ZM415.976 209.658C415.468 209.365 415.023 208.98 414.642 208.503C414.268 208.023 413.982 207.502 413.785 206.941C413.588 206.373 413.49 205.803 413.49 205.231C413.49 204.659 413.588 204.202 413.785 203.861C413.982 203.52 414.268 203.33 414.642 203.289C415.023 203.253 415.468 203.381 415.976 203.674C416.49 203.971 416.935 204.356 417.31 204.829C417.684 205.295 417.967 205.821 418.157 206.408C418.354 206.991 418.453 207.598 418.453 208.228L418.453 208.558L414.776 206.435C414.807 206.74 414.874 207.024 414.976 207.288C415.084 207.548 415.22 207.785 415.385 207.997C415.557 208.206 415.754 208.375 415.976 208.503C416.255 208.665 416.487 208.736 416.671 208.718C416.862 208.696 417.008 208.597 417.11 208.421L418.367 209.147C418.202 209.631 417.91 209.924 417.491 210.027C417.078 210.126 416.573 210.003 415.976 209.658ZM417.157 206.776C417.094 206.344 416.96 205.959 416.757 205.621C416.554 205.277 416.293 205.013 415.976 204.829C415.652 204.642 415.388 204.604 415.185 204.714C414.982 204.816 414.849 205.047 414.785 205.407L417.157 206.776ZM421.225 212.689C420.762 212.421 420.365 212.064 420.035 211.617C419.704 211.162 419.453 210.661 419.282 210.115C419.111 209.561 419.025 208.999 419.025 208.427C419.025 207.847 419.111 207.383 419.282 207.035C419.453 206.679 419.704 206.469 420.035 206.403C420.365 206.337 420.762 206.437 421.225 206.705C421.556 206.896 421.845 207.132 422.092 207.415C422.346 207.701 422.559 208.025 422.731 208.388L422.731 205.506L424.026 206.254L424.026 214.174L422.769 213.448L422.769 212.689C422.597 212.876 422.384 212.973 422.13 212.981C421.876 212.988 421.575 212.891 421.225 212.689ZM421.549 211.644C421.816 211.798 422.038 211.853 422.216 211.809C422.394 211.765 422.527 211.64 422.616 211.435C422.705 211.222 422.75 210.936 422.75 210.577C422.75 210.218 422.705 209.88 422.616 209.565C422.527 209.25 422.394 208.971 422.216 208.729C422.038 208.48 421.816 208.278 421.549 208.124C421.276 207.966 421.051 207.91 420.873 207.954C420.695 207.99 420.562 208.115 420.473 208.328C420.39 208.544 420.349 208.832 420.349 209.191C420.349 209.55 420.39 209.886 420.473 210.198C420.562 210.506 420.695 210.784 420.873 211.034C421.051 211.283 421.276 211.486 421.549 211.644ZM427.26 218.373C426.561 217.97 426.018 217.477 425.631 216.894C425.243 216.311 425.031 215.693 424.993 215.04L426.269 215.777C426.301 216.096 426.406 216.377 426.583 216.619C426.768 216.864 427.009 217.073 427.307 217.246C427.657 217.447 427.942 217.513 428.165 217.444C428.393 217.385 428.508 217.106 428.508 216.608L428.508 215.915C428.336 216.072 428.123 216.147 427.869 216.14C427.622 216.129 427.333 216.028 427.003 215.838C426.539 215.57 426.142 215.216 425.812 214.776C425.482 214.336 425.231 213.85 425.059 213.319C424.888 212.78 424.802 212.231 424.802 211.674C424.802 211.109 424.888 210.66 425.059 210.327C425.231 209.986 425.482 209.786 425.812 209.727C426.142 209.668 426.539 209.773 427.003 210.041C427.345 210.239 427.644 210.484 427.898 210.778C428.158 211.075 428.374 211.412 428.546 211.79L428.546 211.064L429.803 211.79L429.803 217.356C429.803 217.906 429.692 218.3 429.47 218.538C429.248 218.784 428.946 218.888 428.565 218.852C428.184 218.815 427.749 218.655 427.26 218.373ZM427.326 214.848C427.593 215.002 427.815 215.06 427.993 215.024C428.171 214.98 428.304 214.859 428.393 214.661C428.482 214.455 428.527 214.177 428.527 213.825C428.527 213.473 428.482 213.143 428.393 212.835C428.304 212.527 428.171 212.252 427.993 212.01C427.815 211.76 427.593 211.559 427.326 211.405C427.053 211.247 426.828 211.19 426.65 211.234C426.472 211.271 426.339 211.392 426.25 211.597C426.167 211.806 426.126 212.087 426.126 212.439C426.126 212.791 426.167 213.119 426.25 213.423C426.339 213.724 426.472 213.999 426.65 214.248C426.828 214.49 427.053 214.69 427.326 214.848ZM433.066 219.525C432.557 219.232 432.113 218.847 431.732 218.37C431.357 217.89 431.071 217.369 430.874 216.808C430.678 216.24 430.579 215.669 430.579 215.097C430.579 214.525 430.678 214.069 430.874 213.728C431.071 213.387 431.357 213.196 431.732 213.156C432.113 213.119 432.557 213.248 433.066 213.541C433.58 213.838 434.024 214.223 434.399 214.696C434.774 215.162 435.056 215.688 435.247 216.274C435.444 216.857 435.542 217.464 435.542 218.095L435.542 218.425L431.865 216.302C431.897 216.606 431.964 216.89 432.065 217.154C432.173 217.415 432.31 217.651 432.475 217.864C432.646 218.073 432.843 218.242 433.066 218.37C433.345 218.531 433.577 218.603 433.761 218.584C433.951 218.562 434.098 218.463 434.199 218.287L435.457 219.013C435.291 219.497 434.999 219.791 434.58 219.893C434.167 219.992 433.662 219.87 433.066 219.525ZM434.247 216.643C434.183 216.21 434.05 215.825 433.847 215.488C433.643 215.143 433.383 214.879 433.066 214.696C432.742 214.509 432.478 214.47 432.275 214.58C432.072 214.683 431.938 214.914 431.875 215.273L434.247 216.643ZM441.484 224.385C440.817 224 440.239 223.483 439.75 222.834C439.261 222.185 438.886 221.478 438.626 220.711C438.372 219.941 438.245 219.179 438.245 218.423C438.245 217.661 438.375 217.046 438.635 216.581C438.902 216.111 439.293 215.846 439.807 215.783C440.328 215.717 440.95 215.893 441.674 216.311C442.265 216.652 442.786 217.074 443.237 217.576C443.688 218.079 444.053 218.627 444.332 219.221C444.612 219.807 444.793 220.403 444.875 221.008L443.456 220.189C443.354 219.697 443.148 219.23 442.836 218.786C442.525 218.343 442.138 217.987 441.674 217.719C441.23 217.463 440.858 217.369 440.56 217.439C440.261 217.501 440.042 217.694 439.902 218.016C439.763 218.339 439.693 218.753 439.693 219.259C439.693 219.758 439.763 220.249 439.902 220.733C440.042 221.217 440.261 221.666 440.56 222.081C440.858 222.488 441.23 222.82 441.674 223.076C442.17 223.362 442.57 223.443 442.875 223.318C443.179 223.186 443.392 222.884 443.513 222.411L441.388 221.184L441.388 219.886L444.961 221.949L444.961 226.261L443.932 225.667L443.932 224.292C443.703 224.644 443.386 224.834 442.979 224.864C442.579 224.889 442.081 224.73 441.484 224.385ZM445.925 221.097L447.182 221.823L447.182 222.813C447.341 222.531 447.544 222.381 447.792 222.362C448.04 222.337 448.329 222.419 448.659 222.61L449.059 222.841L449.059 224.216L448.602 223.952C448.309 223.783 448.062 223.695 447.859 223.688C447.655 223.673 447.497 223.761 447.382 223.952C447.274 224.139 447.22 224.445 447.22 224.87L447.22 227.565L445.925 226.817L445.925 221.097ZM451.338 230.075C450.792 229.759 450.354 229.356 450.024 228.865C449.693 228.366 449.528 227.842 449.528 227.292C449.528 226.954 449.595 226.711 449.728 226.56C449.868 226.406 450.078 226.337 450.357 226.351C450.643 226.37 451.011 226.465 451.462 226.637L452.872 227.165L452.872 226.868C452.872 226.612 452.805 226.382 452.672 226.181C452.539 225.979 452.319 225.79 452.015 225.614C451.729 225.449 451.497 225.385 451.319 225.422C451.148 225.462 451.059 225.62 451.052 225.895L449.766 225.152C449.773 224.511 449.982 224.144 450.395 224.052C450.814 223.957 451.351 224.098 452.005 224.476C452.71 224.883 453.24 225.339 453.596 225.845C453.958 226.355 454.139 226.881 454.139 227.424L454.139 231.56L452.91 230.85L452.91 230.212C452.707 230.366 452.475 230.43 452.215 230.405C451.961 230.375 451.668 230.265 451.338 230.075ZM451.662 229.184C451.878 229.308 452.075 229.378 452.253 229.393C452.437 229.411 452.586 229.358 452.701 229.233C452.815 229.109 452.872 228.903 452.872 228.617L452.872 228.133L451.71 227.737C451.405 227.627 451.186 227.589 451.052 227.622C450.919 227.647 450.852 227.774 450.852 228.001C450.852 228.221 450.919 228.436 451.052 228.645C451.192 228.85 451.395 229.03 451.662 229.184ZM457.805 227.824C458.269 228.092 458.666 228.45 458.996 228.897C459.326 229.344 459.577 229.845 459.749 230.398C459.92 230.945 460.006 231.508 460.006 232.087C460.006 232.659 459.92 233.123 459.749 233.478C459.577 233.827 459.326 234.038 458.996 234.111C458.666 234.177 458.269 234.076 457.805 233.808C457.475 233.618 457.183 233.379 456.929 233.093C456.681 232.804 456.471 232.477 456.3 232.114L456.3 235.007L455.004 234.259L455.004 226.339L456.262 227.065L456.262 227.824C456.433 227.637 456.646 227.54 456.9 227.533C457.154 227.526 457.456 227.623 457.805 227.824ZM457.481 228.869C457.215 228.715 456.992 228.66 456.814 228.704C456.637 228.741 456.503 228.866 456.414 229.078C456.325 229.291 456.281 229.577 456.281 229.936C456.281 230.296 456.325 230.633 456.414 230.948C456.503 231.256 456.637 231.535 456.814 231.784C456.992 232.034 457.215 232.235 457.481 232.389C457.754 232.547 457.98 232.604 458.158 232.56C458.335 232.516 458.466 232.389 458.548 232.18C458.637 231.968 458.682 231.682 458.682 231.322C458.682 230.963 458.637 230.626 458.548 230.31C458.466 229.999 458.335 229.722 458.158 229.48C457.98 229.231 457.754 229.027 457.481 228.869ZM460.782 227.475L462.077 228.223L462.077 231.149C462.261 230.991 462.48 230.909 462.735 230.901C462.989 230.894 463.278 230.984 463.601 231.171C463.976 231.387 464.294 231.662 464.554 231.996C464.821 232.326 465.021 232.702 465.154 233.123C465.294 233.549 465.364 234 465.364 234.476L465.364 238.04L464.078 237.298L464.078 233.91C464.078 233.551 464.005 233.226 463.859 232.936C463.713 232.639 463.481 232.399 463.163 232.216C462.985 232.113 462.814 232.062 462.649 232.062C462.49 232.058 462.353 232.13 462.239 232.276C462.131 232.427 462.077 232.671 462.077 233.008L462.077 236.143L460.782 235.395L460.782 227.475ZM386.682 200.291L384.996 199.318L384.996 198.031L386.682 199.004L386.682 197.068L387.796 197.712L387.796 199.648L389.473 200.616L389.473 201.903L387.796 200.935L387.796 202.882L386.682 202.238L386.682 200.291ZM395.652 208.924C394.928 208.506 394.306 207.967 393.785 207.307C393.271 206.644 392.88 205.923 392.613 205.146C392.353 204.372 392.223 203.608 392.223 202.852C392.223 202.09 392.353 201.476 392.613 201.01C392.88 200.541 393.271 200.275 393.785 200.212C394.306 200.146 394.928 200.322 395.652 200.74C396.211 201.063 396.71 201.476 397.148 201.978C397.586 202.48 397.939 203.032 398.205 203.633C398.472 204.235 398.647 204.842 398.729 205.454L397.319 204.64C397.256 204.303 397.148 203.976 396.996 203.661C396.849 203.349 396.659 203.063 396.424 202.803C396.195 202.546 395.938 202.335 395.652 202.17C395.208 201.914 394.836 201.817 394.538 201.879C394.239 201.941 394.02 202.134 393.88 202.456C393.741 202.772 393.671 203.182 393.671 203.688C393.671 204.187 393.741 204.678 393.88 205.162C394.02 205.639 394.239 206.085 394.538 206.499C394.836 206.906 395.208 207.238 395.652 207.494C395.964 207.674 396.237 207.758 396.472 207.747C396.707 207.736 396.897 207.645 397.043 207.472C397.196 207.304 397.297 207.069 397.348 206.768L398.748 207.577C398.685 208.134 398.52 208.574 398.253 208.897C397.993 209.223 397.637 209.392 397.186 209.403C396.741 209.418 396.23 209.258 395.652 208.924ZM401.855 212.506C401.334 212.205 400.88 211.814 400.493 211.334C400.112 210.85 399.82 210.326 399.616 209.761C399.419 209.193 399.321 208.623 399.321 208.051C399.321 207.479 399.419 207.022 399.616 206.681C399.82 206.344 400.112 206.157 400.493 206.12C400.88 206.087 401.334 206.221 401.855 206.522C402.382 206.826 402.836 207.216 403.217 207.693C403.605 208.173 403.897 208.698 404.094 209.266C404.291 209.834 404.389 210.405 404.389 210.977C404.389 211.549 404.291 212.005 404.094 212.346C403.897 212.68 403.605 212.867 403.217 212.907C402.836 212.944 402.382 212.81 401.855 212.506ZM401.855 211.274C402.134 211.435 402.363 211.494 402.541 211.45C402.725 211.409 402.858 211.285 402.941 211.076C403.03 210.863 403.074 210.577 403.074 210.218C403.074 209.858 403.03 209.521 402.941 209.206C402.858 208.894 402.725 208.615 402.541 208.37C402.363 208.12 402.134 207.915 401.855 207.754C401.582 207.596 401.353 207.537 401.169 207.578C400.991 207.614 400.858 207.739 400.769 207.952C400.68 208.164 400.636 208.45 400.636 208.81C400.636 209.169 400.68 209.506 400.769 209.822C400.858 210.13 400.991 210.408 401.169 210.658C401.353 210.911 401.582 211.116 401.855 211.274ZM405.168 208.566L406.426 209.292L406.426 210.106C406.591 209.908 406.794 209.795 407.035 209.765C407.277 209.736 407.566 209.819 407.902 210.013C408.245 210.211 408.541 210.473 408.788 210.799C409.036 211.126 409.226 211.5 409.36 211.921C409.544 211.705 409.773 211.58 410.046 211.547C410.325 211.511 410.643 211.595 410.998 211.8C411.341 211.998 411.637 212.261 411.884 212.587C412.138 212.917 412.332 213.293 412.465 213.714C412.599 214.136 412.665 214.582 412.665 215.051L412.665 218.615L411.37 217.867L411.37 214.479C411.37 214.127 411.303 213.806 411.17 213.516C411.036 213.227 410.833 213.003 410.56 212.845C410.287 212.688 410.052 212.662 409.855 212.768C409.665 212.878 409.569 213.186 409.569 213.692L409.569 216.827L408.274 216.079L408.274 212.691C408.274 212.339 408.204 212.017 408.064 211.723C407.931 211.434 407.731 211.212 407.464 211.058C407.185 210.897 406.946 210.869 406.75 210.975C406.559 211.085 406.464 211.393 406.464 211.899L406.464 215.034L405.168 214.286L405.168 208.566ZM413.653 213.465L414.91 214.191L414.91 215.005C415.075 214.807 415.278 214.693 415.52 214.664C415.761 214.635 416.05 214.717 416.387 214.911C416.73 215.109 417.025 215.372 417.273 215.698C417.52 216.024 417.711 216.398 417.844 216.82C418.028 216.604 418.257 216.479 418.53 216.446C418.809 216.409 419.127 216.494 419.483 216.699C419.826 216.897 420.121 217.159 420.369 217.485C420.623 217.815 420.816 218.191 420.95 218.613C421.083 219.035 421.15 219.48 421.15 219.949L421.15 223.513L419.854 222.765L419.854 219.377C419.854 219.025 419.788 218.705 419.654 218.415C419.521 218.125 419.318 217.902 419.044 217.744C418.771 217.586 418.536 217.561 418.34 217.667C418.149 217.777 418.054 218.085 418.054 218.591L418.054 221.726L416.758 220.978L416.758 217.59C416.758 217.238 416.688 216.915 416.549 216.622C416.415 216.332 416.215 216.11 415.948 215.956C415.669 215.795 415.431 215.768 415.234 215.874C415.043 215.984 414.948 216.292 414.948 216.798L414.948 219.933L413.653 219.185L413.653 213.465ZM426.719 226.729L425.462 226.003L425.462 225.222C425.277 225.394 425.055 225.49 424.795 225.508C424.534 225.519 424.236 225.427 423.899 225.233C423.525 225.017 423.204 224.743 422.937 224.413C422.677 224.08 422.477 223.7 422.337 223.275C422.204 222.853 422.137 222.404 422.137 221.927L422.137 218.363L423.423 219.106L423.423 222.494C423.423 222.853 423.496 223.181 423.642 223.478C423.788 223.768 424.02 224.005 424.337 224.188C424.515 224.291 424.684 224.344 424.842 224.347C425.008 224.347 425.144 224.272 425.252 224.122C425.366 223.975 425.423 223.733 425.423 223.396L425.423 220.261L426.719 221.009L426.719 226.729ZM427.709 221.581L428.967 222.307L428.967 223.088C429.151 222.915 429.373 222.824 429.634 222.813C429.894 222.794 430.193 222.882 430.529 223.077C430.904 223.293 431.221 223.568 431.482 223.902C431.749 224.232 431.949 224.607 432.082 225.029C432.222 225.454 432.292 225.905 432.292 226.382L432.292 229.946L431.006 229.204L431.006 225.816C431.006 225.456 430.932 225.132 430.786 224.842C430.64 224.545 430.409 224.305 430.091 224.122C429.913 224.019 429.742 223.968 429.577 223.968C429.418 223.964 429.281 224.035 429.167 224.182C429.059 224.332 429.005 224.576 429.005 224.914L429.005 228.049L427.709 227.301L427.709 221.581ZM433.272 224.792L434.568 225.54L434.568 231.26L433.272 230.512L433.272 224.792ZM433.272 222.592L434.568 223.34L434.568 224.671L433.272 223.923L433.272 222.592ZM437.829 233.275C437.321 232.982 436.879 232.598 436.504 232.125C436.136 231.649 435.854 231.13 435.657 230.569C435.46 230.001 435.361 229.43 435.361 228.858C435.361 228.286 435.46 227.83 435.657 227.489C435.854 227.148 436.136 226.955 436.504 226.911C436.879 226.871 437.321 226.998 437.829 227.291C438.508 227.683 439.048 228.193 439.448 228.82C439.848 229.447 440.086 230.12 440.163 230.838L438.867 230.09C438.81 229.757 438.689 229.452 438.505 229.177C438.327 228.899 438.102 228.681 437.829 228.523C437.575 228.376 437.362 228.327 437.19 228.374C437.019 228.415 436.889 228.541 436.8 228.754C436.717 228.97 436.676 229.258 436.676 229.617C436.676 229.977 436.717 230.312 436.8 230.624C436.889 230.932 437.019 231.209 437.19 231.454C437.362 231.7 437.575 231.896 437.829 232.043C438.114 232.208 438.346 232.25 438.524 232.169C438.708 232.092 438.823 231.898 438.867 231.586L440.163 232.334C440.086 232.987 439.845 233.405 439.439 233.588C439.032 233.764 438.495 233.66 437.829 233.275ZM442.417 235.924C441.87 235.609 441.432 235.205 441.102 234.714C440.772 234.215 440.607 233.691 440.607 233.141C440.607 232.804 440.673 232.56 440.807 232.409C440.946 232.255 441.156 232.186 441.435 232.2C441.721 232.219 442.09 232.314 442.541 232.486L443.95 233.014L443.95 232.717C443.95 232.461 443.884 232.232 443.75 232.03C443.617 231.828 443.398 231.639 443.093 231.463C442.807 231.298 442.575 231.234 442.398 231.271C442.226 231.311 442.137 231.469 442.131 231.744L440.845 231.001C440.851 230.36 441.061 229.993 441.474 229.901C441.893 229.806 442.429 229.947 443.084 230.325C443.788 230.732 444.319 231.188 444.674 231.694C445.036 232.204 445.217 232.73 445.217 233.273L445.217 237.409L443.989 236.699L443.989 236.061C443.785 236.215 443.553 236.28 443.293 236.254C443.039 236.225 442.747 236.115 442.417 235.924ZM442.741 235.033C442.956 235.158 443.153 235.227 443.331 235.242C443.515 235.26 443.665 235.207 443.779 235.082C443.893 234.958 443.95 234.752 443.95 234.466L443.95 233.982L442.788 233.586C442.483 233.476 442.264 233.438 442.131 233.471C441.998 233.497 441.931 233.623 441.931 233.85C441.931 234.07 441.998 234.285 442.131 234.494C442.271 234.699 442.474 234.879 442.741 235.033ZM448.017 239.025C447.706 238.845 447.448 238.657 447.245 238.459C447.042 238.253 446.88 238.006 446.759 237.716C446.645 237.43 446.588 237.089 446.588 236.693L446.588 233.613L445.73 233.118L445.73 231.985L446.588 232.48L446.588 230.72L447.883 231.468L447.883 233.228L449.122 233.943L449.122 235.076L447.883 234.361L447.883 237.287C447.883 237.47 447.918 237.626 447.988 237.755C448.058 237.876 448.179 237.986 448.35 238.085L449.122 238.53L449.122 239.663L448.017 239.025ZM449.85 234.364L451.146 235.112L451.146 240.832L449.85 240.084L449.85 234.364ZM449.85 232.164L451.146 232.912L451.146 234.243L449.85 233.495L449.85 232.164ZM454.454 242.874C453.933 242.573 453.479 242.183 453.092 241.702C452.711 241.218 452.419 240.694 452.216 240.129C452.019 239.561 451.92 238.991 451.92 238.419C451.92 237.847 452.019 237.39 452.216 237.049C452.419 236.712 452.711 236.525 453.092 236.488C453.479 236.455 453.933 236.589 454.454 236.89C454.981 237.194 455.435 237.585 455.816 238.061C456.204 238.542 456.496 239.066 456.693 239.634C456.89 240.203 456.988 240.773 456.988 241.345C456.988 241.917 456.89 242.373 456.693 242.714C456.496 243.048 456.204 243.235 455.816 243.275C455.435 243.312 454.981 243.178 454.454 242.874ZM454.454 241.642C454.734 241.803 454.962 241.862 455.14 241.818C455.324 241.777 455.458 241.653 455.54 241.444C455.629 241.231 455.674 240.945 455.674 240.586C455.674 240.226 455.629 239.889 455.54 239.574C455.458 239.262 455.324 238.983 455.14 238.738C454.962 238.488 454.734 238.283 454.454 238.122C454.181 237.964 453.953 237.905 453.768 237.946C453.591 237.982 453.457 238.107 453.368 238.32C453.279 238.532 453.235 238.818 453.235 239.178C453.235 239.537 453.279 239.874 453.368 240.19C453.457 240.498 453.591 240.776 453.768 241.026C453.953 241.279 454.181 241.484 454.454 241.642ZM457.767 238.935L459.025 239.661L459.025 240.442C459.209 240.269 459.431 240.178 459.692 240.167C459.952 240.148 460.251 240.236 460.587 240.431C460.962 240.647 461.279 240.922 461.54 241.256C461.807 241.586 462.007 241.961 462.14 242.383C462.28 242.808 462.35 243.259 462.35 243.736L462.35 247.3L461.064 246.558L461.064 243.17C461.064 242.81 460.991 242.486 460.844 242.196C460.698 241.899 460.467 241.659 460.149 241.476C459.971 241.373 459.8 241.322 459.635 241.322C459.476 241.318 459.339 241.389 459.225 241.536C459.117 241.686 459.063 241.93 459.063 242.268L459.063 245.403L457.767 244.655L457.767 238.935ZM465.321 249.148C464.616 248.741 464.064 248.261 463.664 247.707C463.27 247.157 463.054 246.523 463.016 245.804L464.274 246.53C464.305 246.9 464.41 247.21 464.588 247.459C464.772 247.712 465.032 247.936 465.369 248.13C465.642 248.288 465.861 248.36 466.026 248.345C466.191 248.323 466.274 248.213 466.274 248.015C466.274 247.876 466.249 247.751 466.198 247.641C466.147 247.531 466.039 247.395 465.874 247.234C465.715 247.069 465.467 246.86 465.131 246.607C464.623 246.211 464.223 245.848 463.931 245.518C463.638 245.188 463.429 244.873 463.302 244.572C463.181 244.275 463.121 243.961 463.121 243.631C463.121 243.089 463.311 242.773 463.692 242.685C464.073 242.597 464.585 242.739 465.226 243.109C465.937 243.52 466.48 244.009 466.855 244.577C467.23 245.138 467.424 245.727 467.436 246.343L466.236 245.65C466.23 245.302 466.134 245.008 465.95 244.77C465.766 244.532 465.525 244.326 465.226 244.154C464.978 244.011 464.775 243.949 464.616 243.967C464.464 243.989 464.388 244.095 464.388 244.286C464.388 244.425 464.42 244.557 464.483 244.682C464.553 244.803 464.67 244.944 464.836 245.105C465.007 245.263 465.258 245.467 465.588 245.716C466.09 246.101 466.484 246.457 466.769 246.783C467.055 247.102 467.258 247.414 467.379 247.718C467.5 248.015 467.56 248.328 467.56 248.658C467.56 249.223 467.354 249.544 466.941 249.621C466.534 249.694 465.995 249.537 465.321 249.148Z" fill="#5F52FF"/>
|
|
46
|
+
<path d="M340.162 295.947L375.662 286.947M430.662 254.947L452.662 278.947M352.662 254.947L374.162 268.947M416.162 323.447L457.662 290.947L410.662 278.947L414.162 248.447L354.662 247.447L341.162 254.947L333.162 291.947L342.162 307.947L384.162 331.947L416.162 323.447Z" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
47
|
+
<path d="M457.126 283.126L472.227 285.456L476.264 294.174L465.198 300.563L450.097 298.233L446.061 289.514L457.126 283.126Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
48
|
+
<path d="M457.126 277.785L472.227 280.115L476.264 288.833L465.198 295.222L450.097 292.891L446.061 284.173L457.126 277.785Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
49
|
+
<path d="M457.126 273.17L472.227 275.5L476.264 284.218L465.198 290.607L450.097 288.277L446.061 279.558L457.126 273.17Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
50
|
+
<path d="M417.126 247.126L432.227 249.456L436.264 258.174L425.198 264.563L410.097 262.233L406.061 253.514L417.126 247.126Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
51
|
+
<path d="M417.126 241.785L432.227 244.115L436.264 252.833L425.198 259.222L410.097 256.891L406.061 248.173L417.126 241.785Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
52
|
+
<path d="M417.126 237.17L432.227 239.5L436.264 248.218L425.198 254.607L410.097 252.277L406.061 243.558L417.126 237.17Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
53
|
+
<path d="M417.126 232.719L432.227 235.049L436.264 243.767L425.198 250.156L410.097 247.826L406.061 239.107L417.126 232.719Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
54
|
+
<path d="M340.126 245.126L355.227 247.456L359.264 256.174L348.198 262.563L333.097 260.233L329.061 251.514L340.126 245.126Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
55
|
+
<path d="M340.126 239.785L355.227 242.115L359.264 250.833L348.198 257.222L333.097 254.891L329.061 246.173L340.126 239.785Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
56
|
+
<path d="M340.126 235.17L355.227 237.5L359.264 246.218L348.198 252.607L333.097 250.277L329.061 241.558L340.126 235.17Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
57
|
+
<path d="M340.126 230.719L355.227 233.049L359.264 241.767L348.198 248.156L333.097 245.826L329.061 237.107L340.126 230.719Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
58
|
+
<path d="M387.547 271.88L417.589 276.516L425.621 293.862L403.609 306.57L373.565 301.933L365.535 284.588L387.547 271.88Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
59
|
+
<path d="M387.547 264.88L417.589 269.516L425.621 286.862L403.609 299.57L373.565 294.933L365.535 277.588L387.547 264.88Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
60
|
+
<path d="M387.547 256.88L417.589 261.516L425.621 278.862L403.609 291.57L373.565 286.933L365.535 269.588L387.547 256.88Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
61
|
+
<path d="M387.547 248.88L417.589 253.516L425.621 270.862L403.609 283.57L373.565 278.933L365.535 261.588L387.547 248.88Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
62
|
+
<path d="M390.998 256.333L408.13 258.977L412.711 268.869L400.158 276.116L383.024 273.472L378.445 263.581L390.998 256.333Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
63
|
+
<path d="M390.998 251.149L408.13 253.793L412.711 263.684L400.158 270.932L383.024 268.288L378.445 258.396L390.998 251.149Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
64
|
+
<path d="M390.998 246.149L408.13 248.793L412.711 258.684L400.158 265.932L383.024 263.288L378.445 253.396L390.998 246.149Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
65
|
+
<path d="M331.126 295.126L346.227 297.456L350.264 306.174L339.198 312.563L324.097 310.233L320.061 301.514L331.126 295.126Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
66
|
+
<path d="M331.126 289.785L346.227 292.115L350.264 300.833L339.198 307.222L324.097 304.892L320.061 296.173L331.126 289.785Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
67
|
+
<path d="M331.126 285.17L346.227 287.5L350.264 296.218L339.198 302.607L324.097 300.277L320.061 291.558L331.126 285.17Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
68
|
+
<path d="M393.376 319.721L416.893 323.35L423.18 336.928L405.948 346.877L382.43 343.247L376.144 329.669L393.376 319.721Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
69
|
+
<path d="M393.376 314.175L416.893 317.804L423.18 331.383L405.948 341.331L382.43 337.701L376.144 324.124L393.376 314.175Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
70
|
+
<path d="M393.376 307.837L416.893 311.467L423.18 325.045L405.948 334.993L382.43 331.364L376.144 317.786L393.376 307.837Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
71
|
+
<path d="M393.376 301.499L416.893 305.128L423.18 318.707L405.948 328.655L382.43 325.025L376.144 311.448L393.376 301.499Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
72
|
+
<path d="M125.946 372.513L127.48 373.399L130.481 380.774L130.481 375.131L131.824 375.907L131.824 383.827L130.29 382.941L127.29 375.566L127.29 381.209L125.946 380.433L125.946 372.513ZM135.218 385.918C134.698 385.618 134.243 385.227 133.856 384.747C133.475 384.263 133.183 383.738 132.98 383.174C132.783 382.605 132.684 382.035 132.684 381.463C132.684 380.891 132.783 380.435 132.98 380.094C133.183 379.756 133.475 379.569 133.856 379.533C134.243 379.5 134.698 379.634 135.218 379.934C135.745 380.239 136.199 380.629 136.581 381.106C136.968 381.586 137.26 382.11 137.457 382.679C137.654 383.247 137.752 383.817 137.752 384.389C137.752 384.961 137.654 385.418 137.457 385.759C137.26 386.092 136.968 386.279 136.581 386.32C136.199 386.356 135.745 386.223 135.218 385.918ZM135.218 384.686C135.498 384.848 135.726 384.906 135.904 384.862C136.088 384.822 136.222 384.697 136.304 384.488C136.393 384.276 136.438 383.99 136.438 383.63C136.438 383.271 136.393 382.934 136.304 382.618C136.222 382.307 136.088 382.028 135.904 381.782C135.726 381.533 135.498 381.328 135.218 381.166C134.945 381.009 134.717 380.95 134.532 380.99C134.355 381.027 134.221 381.152 134.132 381.364C134.043 381.577 133.999 381.863 133.999 382.222C133.999 382.582 134.043 382.919 134.132 383.234C134.221 383.542 134.355 383.821 134.532 384.07C134.717 384.323 134.945 384.529 135.218 384.686ZM140.522 388.981C140.059 388.713 139.662 388.355 139.332 387.908C139.001 387.453 138.751 386.953 138.579 386.407C138.408 385.853 138.322 385.29 138.322 384.718C138.322 384.139 138.408 383.675 138.579 383.327C138.751 382.971 139.001 382.76 139.332 382.694C139.662 382.628 140.059 382.729 140.522 382.997C140.853 383.187 141.142 383.424 141.389 383.706C141.643 383.992 141.856 384.317 142.028 384.68L142.028 381.798L143.323 382.546L143.323 390.466L142.066 389.74L142.066 388.981C141.894 389.168 141.682 389.265 141.427 389.272C141.173 389.279 140.872 389.182 140.522 388.981ZM140.846 387.936C141.113 388.09 141.335 388.145 141.513 388.101C141.691 388.057 141.824 387.932 141.913 387.727C142.002 387.514 142.047 387.228 142.047 386.869C142.047 386.509 142.002 386.172 141.913 385.857C141.824 385.541 141.691 385.263 141.513 385.021C141.335 384.771 141.113 384.57 140.846 384.416C140.573 384.258 140.348 384.201 140.17 384.245C139.992 384.282 139.859 384.406 139.77 384.619C139.687 384.835 139.646 385.123 139.646 385.483C139.646 385.842 139.687 386.177 139.77 386.489C139.859 386.797 139.992 387.076 140.17 387.325C140.348 387.574 140.573 387.778 140.846 387.936ZM146.585 392.481C146.077 392.188 145.633 391.803 145.252 391.326C144.877 390.846 144.591 390.325 144.394 389.764C144.198 389.196 144.099 388.626 144.099 388.054C144.099 387.482 144.198 387.025 144.394 386.684C144.591 386.343 144.877 386.152 145.252 386.112C145.633 386.075 146.077 386.204 146.585 386.497C147.1 386.794 147.544 387.179 147.919 387.652C148.294 388.118 148.576 388.644 148.767 389.231C148.964 389.814 149.062 390.42 149.062 391.051L149.062 391.381L145.385 389.258C145.417 389.562 145.484 389.847 145.585 390.111C145.693 390.371 145.83 390.607 145.995 390.82C146.166 391.029 146.363 391.198 146.585 391.326C146.865 391.487 147.097 391.559 147.281 391.541C147.471 391.519 147.617 391.42 147.719 391.244L148.977 391.97C148.811 392.454 148.519 392.747 148.1 392.85C147.687 392.949 147.182 392.826 146.585 392.481ZM147.767 389.599C147.703 389.166 147.57 388.781 147.367 388.444C147.163 388.099 146.903 387.835 146.585 387.652C146.262 387.465 145.998 387.427 145.795 387.537C145.592 387.639 145.458 387.87 145.395 388.23L147.767 389.599ZM152.426 395.853C151.498 395.318 150.819 394.562 150.387 393.587C149.955 392.604 149.739 391.479 149.739 390.21C149.739 388.941 149.955 388.069 150.387 387.592C150.819 387.108 151.498 387.134 152.426 387.669C153.359 388.208 154.039 388.967 154.464 389.946C154.896 390.921 155.112 392.043 155.112 393.312C155.112 394.581 154.896 395.457 154.464 395.941C154.039 396.421 153.359 396.392 152.426 395.853ZM152.426 394.5C152.883 394.764 153.204 394.718 153.388 394.362C153.572 393.999 153.664 393.371 153.664 392.476C153.664 391.574 153.572 390.839 153.388 390.27C153.204 389.702 152.883 389.286 152.426 389.022C151.968 388.758 151.648 388.804 151.463 389.159C151.279 389.515 151.187 390.144 151.187 391.046C151.187 391.941 151.279 392.676 151.463 393.251C151.648 393.82 151.968 394.236 152.426 394.5Z" fill="#5F52FF"/>
|
|
73
|
+
<rect x="61" y="424.511" width="127" height="28" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
74
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 60.2321 468.789)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
75
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 60.2321 454.533)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
76
|
+
<mask id="path-73-inside-1_83_4466" fill="white">
|
|
77
|
+
<path d="M60 438.412L124.357 401.256L188.713 438.412L124.357 475.568L60 438.412Z"/>
|
|
78
|
+
</mask>
|
|
79
|
+
<path d="M60 438.412L124.357 401.256L188.713 438.412L124.357 475.568L60 438.412Z" fill="#F8F7FF"/>
|
|
80
|
+
<path d="M60 438.412L58.2679 437.412C57.3114 437.964 57.3114 438.86 58.2679 439.412L60 438.412ZM124.357 401.256L126.089 400.256C125.132 399.703 123.581 399.703 122.625 400.256L124.357 401.256ZM188.713 438.412L190.445 439.412C191.402 438.86 191.402 437.964 190.445 437.412L188.713 438.412ZM124.357 475.568L122.625 476.568C123.581 477.12 125.132 477.12 126.089 476.568L124.357 475.568ZM60 438.412L61.7321 439.412L126.089 402.256L124.357 401.256L122.625 400.256L58.2679 437.412L60 438.412ZM124.357 401.256L122.625 402.256L186.981 439.412L188.713 438.412L190.445 437.412L126.089 400.256L124.357 401.256ZM188.713 438.412L186.981 437.412L122.625 474.568L124.357 475.568L126.089 476.568L190.445 439.412L188.713 438.412ZM124.357 475.568L126.089 474.568L61.7321 437.412L60 438.412L58.2679 439.412L122.625 476.568L124.357 475.568Z" fill="#5F52FF" mask="url(#path-73-inside-1_83_4466)"/>
|
|
81
|
+
<mask id="path-75-inside-2_83_4466" fill="white">
|
|
82
|
+
<path d="M60 424.156L124.357 387L188.713 424.156L124.357 461.313L60 424.156Z"/>
|
|
83
|
+
</mask>
|
|
84
|
+
<path d="M60 424.156L124.357 387L188.713 424.156L124.357 461.313L60 424.156Z" fill="#F8F7FF"/>
|
|
85
|
+
<path d="M60 424.156L58.2679 423.156C57.3114 423.709 57.3114 424.604 58.2679 425.156L60 424.156ZM124.357 387L126.089 386C125.132 385.448 123.581 385.448 122.625 386L124.357 387ZM188.713 424.156L190.445 425.156C191.402 424.604 191.402 423.709 190.445 423.156L188.713 424.156ZM124.357 461.313L122.625 462.313C123.581 462.865 125.132 462.865 126.089 462.313L124.357 461.313ZM60 424.156L61.7321 425.156L126.089 388L124.357 387L122.625 386L58.2679 423.156L60 424.156ZM124.357 387L122.625 388L186.981 425.156L188.713 424.156L190.445 423.156L126.089 386L124.357 387ZM188.713 424.156L186.981 423.156L122.625 460.313L124.357 461.313L126.089 462.313L190.445 425.156L188.713 424.156ZM124.357 461.313L126.089 460.313L61.7321 423.156L60 424.156L58.2679 425.156L122.625 462.313L124.357 461.313Z" fill="#5F52FF" mask="url(#path-75-inside-2_83_4466)"/>
|
|
86
|
+
<mask id="path-77-inside-3_83_4466" fill="white">
|
|
87
|
+
<path d="M73.5063 416.358L124.357 387L175.207 416.358L124.357 445.717L73.5063 416.358Z"/>
|
|
88
|
+
</mask>
|
|
89
|
+
<path d="M73.5063 416.358L124.357 387L175.207 416.358L124.357 445.717L73.5063 416.358Z" fill="#DAFFF4"/>
|
|
90
|
+
<path d="M73.5063 416.358L71.7743 415.358C70.8177 415.911 70.8177 416.806 71.7743 417.358L73.5063 416.358ZM124.357 387L126.089 386C125.132 385.448 123.581 385.448 122.625 386L124.357 387ZM175.207 416.358L176.939 417.358C177.896 416.806 177.896 415.911 176.939 415.358L175.207 416.358ZM124.357 445.717L122.625 446.717C123.581 447.269 125.132 447.269 126.089 446.717L124.357 445.717ZM73.5063 416.358L75.2384 417.358L126.089 388L124.357 387L122.625 386L71.7743 415.358L73.5063 416.358ZM124.357 387L122.625 388L173.475 417.358L175.207 416.358L176.939 415.358L126.089 386L124.357 387ZM175.207 416.358L173.475 415.358L122.625 444.717L124.357 445.717L126.089 446.717L176.939 417.358L175.207 416.358ZM124.357 445.717L126.089 444.717L75.2384 415.358L73.5063 416.358L71.7743 417.358L122.625 446.717L124.357 445.717Z" fill="#5F52FF" mask="url(#path-77-inside-3_83_4466)"/>
|
|
91
|
+
<path opacity="0.6" d="M414.32 144.622L419.633 141.555L439.946 153.283L434.633 156.35L414.32 144.622ZM406.508 140.112L411.82 137.044L416.547 139.773L411.234 142.84L406.508 140.112ZM425.23 138.323L430.386 135.346L433.16 136.948C432.925 135.94 433.056 134.963 433.55 134.016C434.019 133.054 434.944 132.174 436.324 131.377C437.86 130.49 439.488 129.926 441.207 129.686C442.926 129.415 444.67 129.475 446.441 129.866C448.238 130.242 449.983 130.919 451.676 131.896L464.332 139.203L459.059 142.248L447.027 135.301C445.751 134.565 444.449 134.159 443.121 134.084C441.767 133.993 440.439 134.324 439.136 135.076C438.407 135.497 437.873 136.001 437.535 136.587C437.196 137.143 437.17 137.775 437.457 138.481C437.769 139.173 438.524 139.865 439.722 140.556L450.855 146.984L445.543 150.051L425.23 138.323ZM477.886 131.378C476.61 132.115 475.412 132.641 474.292 132.957C473.146 133.257 471.935 133.325 470.659 133.16C469.409 132.979 468.081 132.483 466.674 131.671L455.737 125.356L452.221 127.386L448.198 125.063L451.713 123.033L445.463 119.425L450.776 116.358L457.026 119.966L462.104 117.034L466.128 119.357L461.049 122.289L471.44 128.288C472.091 128.664 472.716 128.86 473.315 128.875C473.888 128.875 474.526 128.672 475.229 128.266L478.393 126.439L482.417 128.762L477.886 131.378ZM496.811 120.993C494.728 122.195 492.449 122.985 489.975 123.361C487.501 123.707 485.066 123.654 482.67 123.203C480.248 122.737 478.022 121.917 475.99 120.745C473.959 119.572 472.54 118.286 471.733 116.888C470.925 115.49 470.834 114.084 471.459 112.671C472.11 111.242 473.477 109.927 475.561 108.724C477.67 107.506 479.949 106.717 482.397 106.356C484.819 105.98 487.267 106.055 489.741 106.581C492.215 107.077 494.571 107.972 496.811 109.265L497.983 109.942L482.905 118.647C484.05 119.158 485.196 119.504 486.342 119.685C487.488 119.835 488.608 119.835 489.702 119.685C490.795 119.504 491.798 119.151 492.709 118.625C493.855 117.963 494.585 117.286 494.897 116.595C495.21 115.873 495.157 115.151 494.741 114.43L499.897 111.453C501.277 113.031 501.72 114.67 501.225 116.369C500.73 118.038 499.259 119.579 496.811 120.993ZM488.998 110.889C487.332 110.227 485.691 109.912 484.077 109.942C482.436 109.957 480.964 110.34 479.662 111.092C478.334 111.859 477.657 112.716 477.631 113.663C477.579 114.595 478.126 115.542 479.272 116.505L488.998 110.889ZM490.954 100.378L496.11 97.4008L499.626 99.4306C498.949 98.2879 498.832 97.258 499.274 96.3409C499.691 95.4087 500.576 94.5516 501.931 93.7698L503.571 92.8226L508.454 95.6417L506.579 96.7243C505.381 97.4159 504.561 98.115 504.118 98.8217C503.649 99.5133 503.636 100.258 504.079 101.054C504.522 101.821 505.498 102.641 507.009 103.513L516.579 109.038L511.267 112.105L490.954 100.378ZM508.348 90.3356L513.504 87.3585L516.277 88.9598C516.043 87.9524 516.173 86.9751 516.668 86.0279C517.137 85.0656 518.061 84.1861 519.442 83.3892C520.978 82.5021 522.606 81.9383 524.324 81.6977C526.043 81.4271 527.788 81.4872 529.559 81.8781C531.356 82.254 533.101 82.9306 534.793 83.9079L547.45 91.2151L542.176 94.2598L530.145 87.3134C528.869 86.5767 527.567 86.1707 526.238 86.0956C524.884 86.0054 523.556 86.3361 522.254 87.0879C521.525 87.5089 520.991 88.0126 520.652 88.599C520.314 89.1553 520.288 89.7868 520.574 90.4934C520.887 91.1851 521.642 91.8767 522.84 92.5683L533.973 98.996L528.66 102.063L508.348 90.3356ZM562.878 82.8488C560.795 84.0516 558.516 84.841 556.042 85.2169C553.568 85.5627 551.133 85.5101 548.737 85.059C546.315 84.5929 544.089 83.7735 542.058 82.6007C540.026 81.428 538.607 80.1424 537.8 78.7441C536.992 77.3458 536.901 75.94 537.526 74.5267C538.177 73.0983 539.544 71.7827 541.628 70.5799C543.737 69.362 546.016 68.5727 548.464 68.2118C550.886 67.8359 553.334 67.9111 555.808 68.4373C558.282 68.9335 560.639 69.8281 562.878 71.1212L564.05 71.7978L548.972 80.5033C550.118 81.0145 551.263 81.3603 552.409 81.5407C553.555 81.6911 554.675 81.6911 555.769 81.5407C556.862 81.3603 557.865 81.007 558.777 80.4807C559.922 79.8192 560.652 79.1426 560.964 78.4509C561.277 77.7292 561.225 77.0075 560.808 76.2858L565.964 73.3088C567.344 74.8875 567.787 76.5264 567.292 78.2254C566.798 79.8943 565.326 81.4355 562.878 82.8488ZM555.066 72.745C553.399 72.0834 551.758 71.7677 550.144 71.7978C548.503 71.8128 547.032 72.1962 545.729 72.948C544.401 73.7148 543.724 74.5718 543.698 75.519C543.646 76.4512 544.193 77.3985 545.339 78.3607L555.066 72.745ZM585.264 69.3833C583.987 70.1201 582.79 70.6463 581.67 70.9621C580.524 71.2628 579.313 71.3304 578.037 71.165C576.787 70.9846 575.459 70.4884 574.052 69.6765L563.115 63.3617L559.599 65.3914L555.576 63.0685L559.091 61.0387L552.841 57.4302L558.154 54.363L564.404 57.9715L569.482 55.0396L573.506 57.3625L568.427 60.2944L578.818 66.2936C579.469 66.6695 580.094 66.8649 580.693 66.8799C581.266 66.8799 581.904 66.677 582.607 66.271L585.771 64.4442L589.795 66.7672L585.264 69.3833Z" fill="#5F52FF"/>
|
|
92
|
+
<path d="M920.547 140.589L925.859 137.522L953.985 153.76L948.672 156.827L920.547 140.589ZM969.619 145.275C967.484 146.508 965.166 147.32 962.666 147.71C960.166 148.071 957.705 148.034 955.283 147.598C952.861 147.132 950.635 146.312 948.603 145.139C946.572 143.967 945.153 142.681 944.345 141.283C943.564 139.87 943.499 138.449 944.15 137.02C944.827 135.577 946.233 134.239 948.369 133.006C950.53 131.758 952.848 130.946 955.322 130.57C957.822 130.179 960.283 130.217 962.705 130.683C965.127 131.149 967.354 131.968 969.385 133.141C971.416 134.314 972.836 135.599 973.643 136.998C974.424 138.381 974.489 139.802 973.838 141.26C973.187 142.689 971.781 144.027 969.619 145.275ZM965.244 142.749C966.39 142.087 967.067 141.396 967.276 140.674C967.51 139.937 967.341 139.208 966.768 138.486C966.195 137.734 965.27 136.99 963.994 136.253C962.718 135.517 961.429 134.983 960.127 134.652C958.851 134.306 957.588 134.209 956.338 134.359C955.088 134.479 953.89 134.87 952.744 135.532C951.624 136.178 950.947 136.87 950.713 137.607C950.478 138.313 950.648 139.043 951.221 139.794C951.793 140.546 952.718 141.29 953.994 142.027C955.27 142.764 956.559 143.298 957.861 143.628C959.137 143.944 960.4 144.042 961.65 143.922C962.926 143.786 964.124 143.395 965.244 142.749ZM994.104 131.139C992.021 132.341 989.755 133.123 987.307 133.484C984.859 133.815 982.437 133.755 980.041 133.304C977.619 132.838 975.393 132.018 973.361 130.845C971.33 129.673 969.911 128.387 969.104 126.989C968.296 125.59 968.192 124.192 968.791 122.794C969.416 121.381 970.77 120.072 972.854 118.87C975.64 117.261 978.557 116.389 981.604 116.253C984.651 116.118 987.528 116.652 990.237 117.855L984.924 120.922C983.622 120.441 982.294 120.245 980.94 120.336C979.586 120.396 978.349 120.749 977.229 121.396C976.187 121.997 975.575 122.651 975.393 123.358C975.184 124.049 975.367 124.771 975.94 125.523C976.539 126.26 977.476 126.996 978.752 127.733C980.028 128.47 981.304 129.011 982.58 129.357C983.856 129.673 985.106 129.778 986.33 129.673C987.554 129.567 988.687 129.214 989.729 128.613C990.901 127.936 991.526 127.199 991.604 126.402C991.708 125.59 991.252 124.786 990.237 123.989L995.549 120.922C997.711 122.531 998.7 124.245 998.518 126.064C998.31 127.868 996.838 129.56 994.104 131.139ZM1014.48 119.374C1012.24 120.667 1009.91 121.397 1007.49 121.562C1005.04 121.712 1002.84 121.224 1000.89 120.096C999.688 119.404 998.959 118.668 998.698 117.886C998.438 117.074 998.62 116.187 999.245 115.225C999.896 114.247 1000.99 113.135 1002.53 111.887L1007.29 107.963L1006.24 107.354C1005.33 106.827 1004.38 106.594 1003.39 106.654C1002.4 106.715 1001.28 107.106 1000.03 107.827C998.855 108.504 998.152 109.195 997.917 109.902C997.709 110.594 998.086 111.233 999.05 111.819L993.777 114.864C991.511 113.526 990.638 112.03 991.159 110.376C991.68 108.692 993.282 107.075 995.964 105.527C998.855 103.858 1001.56 102.911 1004.09 102.685C1006.64 102.445 1008.88 102.881 1010.81 103.993L1025.5 112.473L1020.46 115.383L1018.19 114.074C1018.32 115.112 1018.07 116.067 1017.45 116.939C1016.82 117.781 1015.83 118.593 1014.48 119.374ZM1011.98 116.397C1012.87 115.886 1013.52 115.33 1013.93 114.728C1014.38 114.112 1014.49 113.473 1014.28 112.811C1014.08 112.15 1013.46 111.526 1012.45 110.94L1010.73 109.947L1006.94 113.263C1005.93 114.12 1005.34 114.819 1005.18 115.36C1005 115.886 1005.31 116.382 1006.12 116.848C1006.9 117.3 1007.8 117.503 1008.82 117.457C1009.83 117.382 1010.89 117.029 1011.98 116.397ZM1002.48 93.2838L1007.79 90.2166L1035.92 106.455L1030.61 109.522L1002.48 93.2838Z" fill="#6CD3FF"/>
|
|
93
|
+
<path d="M243.406 310.892L246.017 312.399C246.785 312.843 247.426 313.385 247.941 314.027C248.462 314.665 248.849 315.354 249.103 316.095C249.357 316.836 249.484 317.591 249.484 318.361C249.484 319.124 249.357 319.729 249.103 320.176C248.849 320.623 248.462 320.869 247.941 320.913C247.426 320.961 246.785 320.763 246.017 320.319L243.406 318.812L243.406 310.892ZM246.017 318.933C246.48 319.201 246.861 319.311 247.16 319.263C247.465 319.212 247.687 319.036 247.827 318.735C247.966 318.427 248.036 318.024 248.036 317.525C248.036 317.019 247.966 316.535 247.827 316.073C247.687 315.604 247.465 315.171 247.16 314.775C246.861 314.383 246.48 314.053 246.017 313.785L244.797 313.081L244.797 318.229L246.017 318.933ZM250.251 317.044L251.547 317.792L251.547 323.512L250.251 322.764L250.251 317.044ZM250.251 314.844L251.547 315.592L251.547 316.923L250.251 316.175L250.251 314.844ZM254.512 325.356C253.807 324.949 253.255 324.469 252.855 323.915C252.461 323.365 252.245 322.731 252.207 322.012L253.464 322.738C253.496 323.108 253.601 323.418 253.779 323.667C253.963 323.92 254.223 324.144 254.56 324.338C254.833 324.496 255.052 324.568 255.217 324.553C255.382 324.531 255.465 324.421 255.465 324.223C255.465 324.084 255.439 323.959 255.389 323.849C255.338 323.739 255.23 323.603 255.065 323.442C254.906 323.277 254.658 323.068 254.322 322.815C253.814 322.419 253.414 322.056 253.121 321.726C252.829 321.396 252.62 321.081 252.493 320.78C252.372 320.483 252.312 320.169 252.312 319.839C252.312 319.297 252.502 318.981 252.883 318.893C253.264 318.805 253.776 318.947 254.417 319.317C255.128 319.728 255.671 320.217 256.046 320.785C256.421 321.346 256.614 321.935 256.627 322.551L255.427 321.858C255.42 321.51 255.325 321.216 255.141 320.978C254.957 320.74 254.715 320.534 254.417 320.362C254.169 320.219 253.966 320.157 253.807 320.175C253.655 320.197 253.579 320.303 253.579 320.494C253.579 320.633 253.61 320.765 253.674 320.89C253.744 321.011 253.861 321.152 254.026 321.313C254.198 321.471 254.449 321.675 254.779 321.924C255.281 322.309 255.674 322.665 255.96 322.991C256.246 323.31 256.449 323.622 256.57 323.926C256.691 324.223 256.751 324.536 256.751 324.866C256.751 325.431 256.545 325.752 256.132 325.829C255.725 325.902 255.185 325.745 254.512 325.356ZM259.692 328.346C259.184 328.053 258.742 327.67 258.367 327.197C257.999 326.72 257.717 326.201 257.52 325.64C257.323 325.072 257.224 324.502 257.224 323.93C257.224 323.358 257.323 322.901 257.52 322.56C257.717 322.219 257.999 322.027 258.367 321.983C258.742 321.942 259.184 322.069 259.692 322.362C260.371 322.755 260.911 323.264 261.311 323.891C261.711 324.518 261.949 325.191 262.026 325.91L260.73 325.162C260.673 324.828 260.552 324.524 260.368 324.249C260.19 323.97 259.965 323.752 259.692 323.594C259.438 323.448 259.225 323.398 259.053 323.446C258.882 323.486 258.752 323.613 258.663 323.825C258.58 324.042 258.539 324.329 258.539 324.689C258.539 325.048 258.58 325.384 258.663 325.695C258.752 326.003 258.882 326.28 259.053 326.526C259.225 326.771 259.438 326.968 259.692 327.114C259.977 327.279 260.209 327.321 260.387 327.241C260.571 327.164 260.686 326.969 260.73 326.658L262.026 327.406C261.949 328.058 261.708 328.476 261.302 328.66C260.895 328.836 260.358 328.731 259.692 328.346ZM265.051 331.441C264.531 331.14 264.076 330.749 263.689 330.269C263.308 329.785 263.016 329.261 262.813 328.696C262.616 328.128 262.517 327.558 262.517 326.986C262.517 326.414 262.616 325.957 262.813 325.616C263.016 325.279 263.308 325.092 263.689 325.055C264.076 325.022 264.531 325.156 265.051 325.457C265.578 325.761 266.032 326.151 266.414 326.628C266.801 327.108 267.093 327.633 267.29 328.201C267.487 328.769 267.585 329.34 267.585 329.912C267.585 330.484 267.487 330.94 267.29 331.281C267.093 331.615 266.801 331.802 266.414 331.842C266.032 331.879 265.578 331.745 265.051 331.441ZM265.051 330.209C265.331 330.37 265.559 330.429 265.737 330.385C265.921 330.344 266.055 330.22 266.137 330.011C266.226 329.798 266.271 329.512 266.271 329.153C266.271 328.793 266.226 328.456 266.137 328.141C266.055 327.829 265.921 327.55 265.737 327.305C265.559 327.055 265.331 326.85 265.051 326.689C264.778 326.531 264.55 326.472 264.365 326.513C264.188 326.549 264.054 326.674 263.965 326.887C263.876 327.099 263.832 327.385 263.832 327.745C263.832 328.104 263.876 328.441 263.965 328.757C264.054 329.065 264.188 329.343 264.365 329.593C264.55 329.846 264.778 330.051 265.051 330.209ZM268.364 327.502L269.622 328.228L269.622 329.218C269.781 328.935 269.984 328.785 270.232 328.767C270.479 328.741 270.768 328.823 271.099 329.014L271.499 329.245L271.499 330.62L271.041 330.356C270.749 330.187 270.502 330.099 270.298 330.092C270.095 330.077 269.936 330.165 269.822 330.356C269.714 330.543 269.66 330.849 269.66 331.275L269.66 333.97L268.364 333.222L268.364 327.502ZM274.216 336.732C273.753 336.464 273.356 336.107 273.025 335.66C272.695 335.205 272.444 334.704 272.273 334.158C272.101 333.604 272.016 333.042 272.016 332.47C272.016 331.89 272.101 331.426 272.273 331.078C272.444 330.722 272.695 330.512 273.025 330.446C273.356 330.38 273.753 330.48 274.216 330.748C274.546 330.939 274.835 331.175 275.083 331.458C275.337 331.744 275.55 332.068 275.721 332.431L275.721 329.549L277.017 330.297L277.017 338.217L275.759 337.491L275.759 336.732C275.588 336.919 275.375 337.016 275.121 337.024C274.867 337.031 274.566 336.934 274.216 336.732ZM274.54 335.687C274.807 335.841 275.029 335.896 275.207 335.852C275.385 335.808 275.518 335.683 275.607 335.478C275.696 335.265 275.74 334.979 275.74 334.62C275.74 334.261 275.696 333.923 275.607 333.608C275.518 333.293 275.385 333.014 275.207 332.772C275.029 332.523 274.807 332.321 274.54 332.167C274.267 332.009 274.042 331.953 273.864 331.997C273.686 332.033 273.553 332.158 273.464 332.371C273.381 332.587 273.34 332.875 273.34 333.234C273.34 333.593 273.381 333.929 273.464 334.241C273.553 334.549 273.686 334.827 273.864 335.077C274.042 335.326 274.267 335.529 274.54 335.687Z" fill="#5F52FF"/>
|
|
94
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 177.232 399.789)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
95
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 177.232 385.533)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
96
|
+
<mask id="path-84-inside-4_83_4466" fill="white">
|
|
97
|
+
<path d="M177 373.412L241.357 336.255L305.713 373.412L241.357 410.568L177 373.412Z"/>
|
|
98
|
+
</mask>
|
|
99
|
+
<path d="M177 373.412L241.357 336.255L305.713 373.412L241.357 410.568L177 373.412Z" fill="#F8F7FF"/>
|
|
100
|
+
<path d="M177 373.412L175.268 372.412C174.311 372.964 174.311 373.859 175.268 374.412L177 373.412ZM241.357 336.255L243.089 335.255C242.132 334.703 240.581 334.703 239.625 335.255L241.357 336.255ZM305.713 373.412L307.445 374.412C308.402 373.859 308.402 372.964 307.445 372.412L305.713 373.412ZM241.357 410.568L239.625 411.568C240.581 412.12 242.132 412.12 243.089 411.568L241.357 410.568ZM177 373.412L178.732 374.412L243.089 337.255L241.357 336.255L239.625 335.255L175.268 372.412L177 373.412ZM241.357 336.255L239.625 337.255L303.981 374.412L305.713 373.412L307.445 372.412L243.089 335.255L241.357 336.255ZM305.713 373.412L303.981 372.412L239.625 409.568L241.357 410.568L243.089 411.568L307.445 374.412L305.713 373.412ZM241.357 410.568L243.089 409.568L178.732 372.412L177 373.412L175.268 374.412L239.625 411.568L241.357 410.568Z" fill="#5F52FF" mask="url(#path-84-inside-4_83_4466)"/>
|
|
101
|
+
<mask id="path-86-inside-5_83_4466" fill="white">
|
|
102
|
+
<path d="M177 363.156L241.357 326L305.713 363.156L241.357 400.313L177 363.156Z"/>
|
|
103
|
+
</mask>
|
|
104
|
+
<path d="M177 363.156L241.357 326L305.713 363.156L241.357 400.313L177 363.156Z" fill="#F8F7FF"/>
|
|
105
|
+
<path d="M177 363.156L175.268 362.156C174.311 362.709 174.311 363.604 175.268 364.156L177 363.156ZM241.357 326L243.089 325C242.132 324.448 240.581 324.448 239.625 325L241.357 326ZM305.713 363.156L307.445 364.156C308.402 363.604 308.402 362.709 307.445 362.156L305.713 363.156ZM241.357 400.313L239.625 401.313C240.581 401.865 242.132 401.865 243.089 401.313L241.357 400.313ZM177 363.156L178.732 364.156L243.089 327L241.357 326L239.625 325L175.268 362.156L177 363.156ZM241.357 326L239.625 327L303.981 364.156L305.713 363.156L307.445 362.156L243.089 325L241.357 326ZM305.713 363.156L303.981 362.156L239.625 399.313L241.357 400.313L243.089 401.313L307.445 364.156L305.713 363.156ZM241.357 400.313L243.089 399.313L178.732 362.156L177 363.156L175.268 364.156L239.625 401.313L241.357 400.313Z" fill="#5F52FF" mask="url(#path-86-inside-5_83_4466)"/>
|
|
106
|
+
<mask id="path-88-inside-6_83_4466" fill="white">
|
|
107
|
+
<path d="M186.619 357.603L241.357 326L296.095 357.603L241.357 389.206L186.619 357.603Z"/>
|
|
108
|
+
</mask>
|
|
109
|
+
<path d="M186.619 357.603L241.357 326L296.095 357.603L241.357 389.206L186.619 357.603Z" fill="#DAF4FF"/>
|
|
110
|
+
<path d="M186.619 357.603L184.887 356.603C183.93 357.155 183.93 358.051 184.887 358.603L186.619 357.603ZM241.357 326L243.089 325C242.132 324.448 240.581 324.448 239.625 325L241.357 326ZM296.095 357.603L297.827 358.603C298.783 358.051 298.783 357.155 297.827 356.603L296.095 357.603ZM241.357 389.206L239.625 390.206C240.581 390.758 242.132 390.758 243.089 390.206L241.357 389.206ZM186.619 357.603L188.351 358.603L243.089 327L241.357 326L239.625 325L184.887 356.603L186.619 357.603ZM241.357 326L239.625 327L294.363 358.603L296.095 357.603L297.827 356.603L243.089 325L241.357 326ZM296.095 357.603L294.363 356.603L239.625 388.206L241.357 389.206L243.089 390.206L297.827 358.603L296.095 357.603ZM241.357 389.206L243.089 388.206L188.351 356.603L186.619 357.603L184.887 358.603L239.625 390.206L241.357 389.206Z" fill="#5F52FF" mask="url(#path-88-inside-6_83_4466)"/>
|
|
111
|
+
<path d="M241.5 388V399" stroke="#5F52FF" stroke-width="2"/>
|
|
112
|
+
<path d="M552.815 580.57L436.305 647.837L159.163 487.828" stroke="#E9725A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
113
|
+
<path d="M1281.62 596.5L1022.68 447" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
114
|
+
<path d="M957.881 408.5L632.255 220.5" stroke="#28FFB4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
115
|
+
<path d="M733.86 488L445.474 321.5" stroke="#28FFB4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
116
|
+
<path d="M1282.36 363V525" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
117
|
+
<path d="M1289.36 363V525" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
118
|
+
<path d="M1275.36 363V525" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
119
|
+
<path d="M1264.07 710.277C1263.35 709.859 1262.73 709.32 1262.21 708.66C1261.69 707.996 1261.3 707.276 1261.04 706.498C1260.78 705.725 1260.65 704.96 1260.65 704.205C1260.65 703.442 1260.78 702.828 1261.04 702.362C1261.3 701.893 1261.69 701.627 1262.21 701.565C1262.73 701.499 1263.35 701.675 1264.07 702.093C1264.63 702.416 1265.13 702.828 1265.57 703.331C1266.01 703.833 1266.36 704.385 1266.63 704.986C1266.89 705.587 1267.07 706.194 1267.15 706.806L1265.74 705.992C1265.68 705.655 1265.57 705.329 1265.42 705.014C1265.27 704.702 1265.08 704.416 1264.85 704.155C1264.62 703.899 1264.36 703.688 1264.07 703.523C1263.63 703.266 1263.26 703.169 1262.96 703.231C1262.66 703.294 1262.44 703.486 1262.3 703.809C1262.16 704.124 1262.09 704.535 1262.09 705.041C1262.09 705.54 1262.16 706.031 1262.3 706.515C1262.44 706.992 1262.66 707.437 1262.96 707.851C1263.26 708.259 1263.63 708.59 1264.07 708.847C1264.39 709.027 1264.66 709.111 1264.89 709.1C1265.13 709.089 1265.32 708.997 1265.47 708.825C1265.62 708.656 1265.72 708.422 1265.77 708.121L1267.17 708.93C1267.11 709.487 1266.94 709.927 1266.68 710.25C1266.41 710.576 1266.06 710.745 1265.61 710.755C1265.16 710.77 1264.65 710.611 1264.07 710.277ZM1270.28 713.858C1269.76 713.557 1269.3 713.167 1268.92 712.687C1268.53 712.203 1268.24 711.678 1268.04 711.114C1267.84 710.545 1267.74 709.975 1267.74 709.403C1267.74 708.831 1267.84 708.375 1268.04 708.034C1268.24 707.696 1268.53 707.509 1268.92 707.473C1269.3 707.44 1269.76 707.573 1270.28 707.874C1270.8 708.178 1271.26 708.569 1271.64 709.046C1272.03 709.526 1272.32 710.05 1272.52 710.619C1272.71 711.187 1272.81 711.757 1272.81 712.329C1272.81 712.901 1272.71 713.358 1272.52 713.699C1272.32 714.032 1272.03 714.219 1271.64 714.26C1271.26 714.296 1270.8 714.162 1270.28 713.858ZM1270.28 712.626C1270.56 712.787 1270.79 712.846 1270.96 712.802C1271.15 712.762 1271.28 712.637 1271.36 712.428C1271.45 712.215 1271.5 711.929 1271.5 711.57C1271.5 711.211 1271.45 710.873 1271.36 710.558C1271.28 710.246 1271.15 709.968 1270.96 709.722C1270.79 709.473 1270.56 709.267 1270.28 709.106C1270 708.948 1269.78 708.89 1269.59 708.93C1269.41 708.967 1269.28 709.091 1269.19 709.304C1269.1 709.517 1269.06 709.803 1269.06 710.162C1269.06 710.521 1269.1 710.859 1269.19 711.174C1269.28 711.482 1269.41 711.761 1269.59 712.01C1269.78 712.263 1270 712.468 1270.28 712.626ZM1273.59 709.919L1274.85 710.645L1274.85 711.459C1275.01 711.261 1275.22 711.147 1275.46 711.118C1275.7 711.089 1275.99 711.171 1276.32 711.366C1276.67 711.564 1276.96 711.826 1277.21 712.152C1277.46 712.478 1277.65 712.852 1277.78 713.274C1277.97 713.058 1278.19 712.933 1278.47 712.9C1278.75 712.863 1279.06 712.948 1279.42 713.153C1279.76 713.351 1280.06 713.613 1280.31 713.94C1280.56 714.27 1280.75 714.645 1280.89 715.067C1281.02 715.489 1281.09 715.934 1281.09 716.404L1281.09 719.968L1279.79 719.22L1279.79 715.832C1279.79 715.48 1279.73 715.159 1279.59 714.869C1279.46 714.579 1279.26 714.356 1278.98 714.198C1278.71 714.04 1278.47 714.015 1278.28 714.121C1278.09 714.231 1277.99 714.539 1277.99 715.045L1277.99 718.18L1276.7 717.432L1276.7 714.044C1276.7 713.692 1276.63 713.369 1276.49 713.076C1276.35 712.786 1276.15 712.565 1275.89 712.411C1275.61 712.249 1275.37 712.222 1275.17 712.328C1274.98 712.438 1274.89 712.746 1274.89 713.252L1274.89 716.387L1273.59 715.639L1273.59 709.919ZM1282.07 714.817L1283.33 715.543L1283.33 716.357C1283.5 716.159 1283.7 716.046 1283.94 716.016C1284.18 715.987 1284.47 716.07 1284.81 716.264C1285.15 716.462 1285.45 716.724 1285.69 717.05C1285.94 717.377 1286.13 717.751 1286.27 718.172C1286.45 717.956 1286.68 717.831 1286.95 717.798C1287.23 717.762 1287.55 717.846 1287.9 718.051C1288.25 718.249 1288.54 718.512 1288.79 718.838C1289.04 719.168 1289.24 719.544 1289.37 719.965C1289.51 720.387 1289.57 720.833 1289.57 721.302L1289.57 724.866L1288.28 724.118L1288.28 720.73C1288.28 720.378 1288.21 720.057 1288.08 719.767C1287.94 719.478 1287.74 719.254 1287.47 719.096C1287.19 718.939 1286.96 718.913 1286.76 719.019C1286.57 719.129 1286.48 719.437 1286.48 719.943L1286.48 723.078L1285.18 722.33L1285.18 718.942C1285.18 718.59 1285.11 718.268 1284.97 717.974C1284.84 717.685 1284.64 717.463 1284.37 717.309C1284.09 717.148 1283.85 717.12 1283.66 717.226C1283.47 717.336 1283.37 717.644 1283.37 718.15L1283.37 721.285L1282.07 720.537L1282.07 714.817ZM1292.88 726.91C1292.36 726.609 1291.91 726.219 1291.52 725.738C1291.14 725.254 1290.85 724.73 1290.64 724.165C1290.45 723.597 1290.35 723.027 1290.35 722.455C1290.35 721.883 1290.45 721.426 1290.64 721.085C1290.85 720.748 1291.14 720.561 1291.52 720.524C1291.91 720.491 1292.36 720.625 1292.88 720.926C1293.41 721.23 1293.86 721.621 1294.25 722.097C1294.63 722.578 1294.93 723.102 1295.12 723.67C1295.32 724.239 1295.42 724.809 1295.42 725.381C1295.42 725.953 1295.32 726.409 1295.12 726.75C1294.93 727.084 1294.63 727.271 1294.25 727.311C1293.86 727.348 1293.41 727.214 1292.88 726.91ZM1292.88 725.678C1293.16 725.839 1293.39 725.898 1293.57 725.854C1293.75 725.814 1293.89 725.689 1293.97 725.48C1294.06 725.267 1294.1 724.981 1294.1 724.622C1294.1 724.263 1294.06 723.925 1293.97 723.61C1293.89 723.298 1293.75 723.02 1293.57 722.774C1293.39 722.525 1293.16 722.319 1292.88 722.158C1292.61 722 1292.38 721.942 1292.2 721.982C1292.02 722.019 1291.89 722.143 1291.8 722.356C1291.71 722.569 1291.66 722.855 1291.66 723.214C1291.66 723.573 1291.71 723.911 1291.8 724.226C1291.89 724.534 1292.02 724.813 1292.2 725.062C1292.38 725.315 1292.61 725.52 1292.88 725.678ZM1296.2 722.971L1297.45 723.697L1297.45 724.478C1297.64 724.305 1297.86 724.214 1298.12 724.203C1298.38 724.184 1298.68 724.272 1299.02 724.467C1299.39 724.683 1299.71 724.958 1299.97 725.292C1300.24 725.622 1300.44 725.998 1300.57 726.419C1300.71 726.845 1300.78 727.296 1300.78 727.772L1300.78 731.336L1299.49 730.594L1299.49 727.206C1299.49 726.846 1299.42 726.522 1299.27 726.232C1299.13 725.935 1298.9 725.695 1298.58 725.512C1298.4 725.409 1298.23 725.358 1298.06 725.358C1297.91 725.354 1297.77 725.426 1297.65 725.572C1297.55 725.723 1297.49 725.966 1297.49 726.304L1297.49 729.439L1296.2 728.691L1296.2 722.971ZM1263.54 720.969C1262.95 720.628 1262.44 720.225 1262 719.759C1261.56 719.286 1261.22 718.769 1260.97 718.208C1260.73 717.651 1260.6 717.073 1260.6 716.475L1261.97 717.267C1261.98 717.825 1262.13 718.301 1262.43 718.697C1262.72 719.086 1263.11 719.42 1263.59 719.699C1263.99 719.929 1264.31 720.023 1264.55 719.979C1264.79 719.935 1264.91 719.744 1264.91 719.407C1264.91 719.216 1264.87 719.033 1264.78 718.857C1264.7 718.685 1264.54 718.477 1264.29 718.235C1264.06 717.99 1263.71 717.685 1263.25 717.322C1262.66 716.868 1262.19 716.437 1261.83 716.03C1261.47 715.619 1261.2 715.201 1261.03 714.776C1260.85 714.354 1260.77 713.905 1260.77 713.429C1260.77 712.989 1260.87 712.66 1261.08 712.444C1261.3 712.231 1261.6 712.141 1261.99 712.174C1262.38 712.211 1262.84 712.38 1263.36 712.68C1264.26 713.197 1264.94 713.828 1265.42 714.572C1265.89 715.317 1266.15 716.114 1266.17 716.965L1264.83 716.189C1264.8 715.713 1264.67 715.295 1264.43 714.936C1264.19 714.572 1263.84 714.253 1263.36 713.978C1263 713.773 1262.72 713.689 1262.5 713.725C1262.29 713.766 1262.19 713.922 1262.19 714.193C1262.19 714.391 1262.23 714.578 1262.3 714.754C1262.39 714.934 1262.54 715.139 1262.76 715.37C1262.99 715.605 1263.32 715.894 1263.75 716.239C1264.42 716.756 1264.94 717.229 1265.31 717.658C1265.69 718.091 1265.96 718.505 1266.11 718.901C1266.27 719.301 1266.35 719.72 1266.35 720.16C1266.35 720.674 1266.23 721.044 1265.99 721.272C1265.75 721.495 1265.42 721.58 1265 721.525C1264.58 721.473 1264.09 721.288 1263.54 720.969ZM1269.34 724.315C1268.83 724.022 1268.38 723.637 1268 723.16C1267.63 722.68 1267.34 722.159 1267.15 721.598C1266.95 721.03 1266.85 720.46 1266.85 719.888C1266.85 719.316 1266.95 718.859 1267.15 718.518C1267.34 718.177 1267.63 717.986 1268 717.946C1268.38 717.909 1268.83 718.038 1269.34 718.331C1269.85 718.628 1270.3 719.013 1270.67 719.486C1271.05 719.952 1271.33 720.478 1271.52 721.065C1271.72 721.648 1271.81 722.254 1271.81 722.885L1271.81 723.215L1268.14 721.092C1268.17 721.396 1268.23 721.681 1268.34 721.945C1268.44 722.205 1268.58 722.441 1268.75 722.654C1268.92 722.863 1269.11 723.032 1269.34 723.16C1269.62 723.321 1269.85 723.393 1270.03 723.375C1270.22 723.353 1270.37 723.254 1270.47 723.078L1271.73 723.804C1271.56 724.288 1271.27 724.581 1270.85 724.684C1270.44 724.783 1269.93 724.66 1269.34 724.315ZM1270.52 721.433C1270.45 721 1270.32 720.615 1270.12 720.278C1269.91 719.933 1269.65 719.669 1269.34 719.486C1269.01 719.299 1268.75 719.261 1268.55 719.371C1268.34 719.473 1268.21 719.704 1268.15 720.064L1270.52 721.433ZM1272.6 720.344L1273.85 721.07L1273.85 721.851C1274.04 721.679 1274.26 721.587 1274.52 721.576C1274.78 721.558 1275.08 721.646 1275.41 721.84C1275.79 722.057 1276.11 722.332 1276.37 722.665C1276.63 722.995 1276.83 723.371 1276.97 723.793C1277.11 724.218 1277.18 724.669 1277.18 725.146L1277.18 728.71L1275.89 727.967L1275.89 724.579C1275.89 724.22 1275.82 723.895 1275.67 723.606C1275.53 723.309 1275.29 723.069 1274.98 722.885C1274.8 722.783 1274.63 722.731 1274.46 722.731C1274.3 722.728 1274.17 722.799 1274.05 722.946C1273.94 723.096 1273.89 723.34 1273.89 723.677L1273.89 726.812L1272.6 726.064L1272.6 720.344ZM1280.15 730.558C1279.44 730.151 1278.89 729.67 1278.49 729.117C1278.1 728.567 1277.88 727.932 1277.84 727.214L1279.1 727.94C1279.13 728.31 1279.24 728.62 1279.42 728.869C1279.6 729.122 1279.86 729.346 1280.2 729.54C1280.47 729.698 1280.69 729.769 1280.85 729.755C1281.02 729.733 1281.1 729.623 1281.1 729.425C1281.1 729.285 1281.08 729.161 1281.03 729.051C1280.97 728.941 1280.87 728.805 1280.7 728.644C1280.54 728.479 1280.3 728.27 1279.96 728.017C1279.45 727.621 1279.05 727.258 1278.76 726.928C1278.47 726.598 1278.26 726.282 1278.13 725.982C1278.01 725.685 1277.95 725.371 1277.95 725.041C1277.95 724.498 1278.14 724.183 1278.52 724.095C1278.9 724.007 1279.41 724.148 1280.05 724.519C1280.77 724.929 1281.31 725.419 1281.68 725.987C1282.06 726.548 1282.25 727.137 1282.26 727.753L1281.06 727.06C1281.06 726.711 1280.96 726.418 1280.78 726.18C1280.59 725.941 1280.35 725.736 1280.05 725.564C1279.81 725.421 1279.6 725.358 1279.44 725.377C1279.29 725.399 1279.22 725.505 1279.22 725.696C1279.22 725.835 1279.25 725.967 1279.31 726.092C1279.38 726.213 1279.5 726.354 1279.66 726.515C1279.83 726.673 1280.09 726.876 1280.42 727.126C1280.92 727.511 1281.31 727.866 1281.6 728.193C1281.88 728.512 1282.09 728.823 1282.21 729.128C1282.33 729.425 1282.39 729.738 1282.39 730.068C1282.39 730.633 1282.18 730.954 1281.77 731.031C1281.36 731.104 1280.82 730.946 1280.15 730.558ZM1285.33 733.548C1284.82 733.255 1284.38 732.87 1283.99 732.393C1283.62 731.913 1283.33 731.392 1283.14 730.831C1282.94 730.263 1282.84 729.692 1282.84 729.12C1282.84 728.548 1282.94 728.092 1283.14 727.751C1283.33 727.41 1283.62 727.219 1283.99 727.179C1284.38 727.142 1284.82 727.271 1285.33 727.564C1285.84 727.861 1286.29 728.246 1286.66 728.719C1287.04 729.185 1287.32 729.711 1287.51 730.297C1287.71 730.88 1287.81 731.487 1287.81 732.118L1287.81 732.448L1284.13 730.325C1284.16 730.629 1284.23 730.913 1284.33 731.177C1284.44 731.438 1284.57 731.674 1284.74 731.887C1284.91 732.096 1285.11 732.265 1285.33 732.393C1285.61 732.554 1285.84 732.626 1286.02 732.607C1286.21 732.585 1286.36 732.486 1286.46 732.31L1287.72 733.036C1287.55 733.52 1287.26 733.814 1286.84 733.916C1286.43 734.015 1285.93 733.893 1285.33 733.548ZM1286.51 730.666C1286.45 730.233 1286.31 729.848 1286.11 729.511C1285.91 729.166 1285.65 728.902 1285.33 728.719C1285 728.532 1284.74 728.493 1284.54 728.603C1284.33 728.706 1284.2 728.937 1284.14 729.296L1286.51 730.666Z" fill="#5F52FF"/>
|
|
120
|
+
<path d="M925.547 648.075L928.662 649.874C929.475 650.343 930.085 650.908 930.491 651.568C930.904 652.224 931.11 652.911 931.11 653.63C931.11 654.026 931.018 654.336 930.834 654.56C930.656 654.787 930.396 654.915 930.053 654.945C930.32 655.238 930.523 655.546 930.663 655.869C930.809 656.195 930.904 656.551 930.948 656.936L931.234 659.279L929.805 658.454L929.577 656.452C929.545 656.155 929.481 655.891 929.386 655.66C929.297 655.432 929.176 655.234 929.024 655.066C928.872 654.89 928.681 654.736 928.452 654.604L926.938 653.729L926.938 656.798L925.547 655.995L925.547 648.075ZM928.462 653.344C928.868 653.579 929.17 653.658 929.367 653.581C929.57 653.507 929.672 653.284 929.672 652.91C929.672 652.536 929.57 652.195 929.367 651.887C929.17 651.582 928.868 651.313 928.462 651.078L926.938 650.198L926.938 652.464L928.462 653.344ZM934.222 661.136C933.714 660.842 933.27 660.457 932.889 659.981C932.514 659.5 932.228 658.98 932.031 658.419C931.834 657.85 931.736 657.28 931.736 656.708C931.736 656.136 931.834 655.68 932.031 655.339C932.228 654.998 932.514 654.807 932.889 654.767C933.27 654.73 933.714 654.858 934.222 655.152C934.737 655.449 935.181 655.834 935.556 656.307C935.931 656.772 936.213 657.299 936.404 657.885C936.601 658.468 936.699 659.075 936.699 659.706L936.699 660.036L933.022 657.913C933.054 658.217 933.121 658.501 933.222 658.765C933.33 659.026 933.467 659.262 933.632 659.475C933.803 659.684 934 659.852 934.222 659.981C934.502 660.142 934.734 660.214 934.918 660.195C935.108 660.173 935.254 660.074 935.356 659.898L936.613 660.624C936.448 661.108 936.156 661.402 935.737 661.504C935.324 661.603 934.819 661.48 934.222 661.136ZM935.404 658.254C935.34 657.821 935.207 657.436 935.004 657.099C934.8 656.754 934.54 656.49 934.222 656.307C933.899 656.12 933.635 656.081 933.432 656.191C933.228 656.294 933.095 656.525 933.032 656.884L935.404 658.254ZM939.758 664.332C939.25 664.038 938.808 663.655 938.434 663.182C938.065 662.705 937.783 662.187 937.586 661.626C937.389 661.057 937.29 660.487 937.29 659.915C937.29 659.343 937.389 658.887 937.586 658.546C937.783 658.205 938.065 658.012 938.434 657.968C938.808 657.928 939.25 658.054 939.758 658.348C940.437 658.74 940.977 659.25 941.377 659.877C941.777 660.504 942.015 661.176 942.092 661.895L940.796 661.147C940.739 660.813 940.618 660.509 940.434 660.234C940.256 659.955 940.031 659.737 939.758 659.58C939.504 659.433 939.291 659.383 939.119 659.431C938.948 659.471 938.818 659.598 938.729 659.811C938.646 660.027 938.605 660.315 938.605 660.674C938.605 661.033 938.646 661.369 938.729 661.681C938.818 661.989 938.948 662.265 939.119 662.511C939.291 662.757 939.504 662.953 939.758 663.1C940.043 663.265 940.275 663.307 940.453 663.226C940.637 663.149 940.752 662.955 940.796 662.643L942.092 663.391C942.015 664.044 941.774 664.462 941.368 664.645C940.961 664.821 940.425 664.717 939.758 664.332ZM947.375 668.598L946.118 667.872L946.118 667.091C945.933 667.263 945.711 667.358 945.451 667.377C945.19 667.388 944.892 667.296 944.555 667.102C944.181 666.885 943.86 666.612 943.593 666.282C943.333 665.948 943.133 665.569 942.993 665.144C942.86 664.722 942.793 664.273 942.793 663.796L942.793 660.232L944.079 660.975L944.079 664.363C944.079 664.722 944.152 665.05 944.298 665.347C944.444 665.637 944.676 665.873 944.993 666.057C945.171 666.159 945.34 666.212 945.498 666.216C945.664 666.216 945.8 666.141 945.908 665.991C946.022 665.844 946.079 665.602 946.079 665.265L946.079 662.13L947.375 662.878L947.375 668.598ZM948.365 663.449L949.623 664.175L949.623 665.165C949.782 664.883 949.985 664.733 950.233 664.714C950.48 664.689 950.769 664.771 951.099 664.962L951.5 665.193L951.5 666.568L951.042 666.304C950.75 666.135 950.502 666.047 950.299 666.04C950.096 666.025 949.937 666.113 949.823 666.304C949.715 666.491 949.661 666.797 949.661 667.222L949.661 669.917L948.365 669.169L948.365 663.449ZM954.208 672.674C953.503 672.267 952.95 671.787 952.55 671.233C952.156 670.683 951.94 670.049 951.902 669.33L953.16 670.056C953.192 670.427 953.296 670.736 953.474 670.986C953.658 671.239 953.919 671.462 954.255 671.657C954.528 671.814 954.747 671.886 954.913 671.871C955.078 671.849 955.16 671.739 955.16 671.541C955.16 671.402 955.135 671.277 955.084 671.167C955.033 671.057 954.925 670.922 954.76 670.76C954.601 670.595 954.354 670.386 954.017 670.133C953.509 669.737 953.109 669.374 952.817 669.044C952.525 668.714 952.315 668.399 952.188 668.098C952.067 667.801 952.007 667.488 952.007 667.158C952.007 666.615 952.198 666.3 952.579 666.212C952.96 666.124 953.471 666.265 954.112 666.635C954.824 667.046 955.367 667.535 955.741 668.104C956.116 668.665 956.31 669.253 956.322 669.869L955.122 669.176C955.116 668.828 955.021 668.535 954.836 668.296C954.652 668.058 954.411 667.853 954.112 667.68C953.865 667.537 953.661 667.475 953.503 667.493C953.35 667.515 953.274 667.622 953.274 667.812C953.274 667.952 953.306 668.084 953.369 668.208C953.439 668.329 953.557 668.47 953.722 668.632C953.893 668.789 954.144 668.993 954.474 669.242C954.976 669.627 955.37 669.983 955.656 670.309C955.941 670.628 956.145 670.94 956.265 671.244C956.386 671.541 956.446 671.855 956.446 672.185C956.446 672.749 956.24 673.07 955.827 673.147C955.421 673.221 954.881 673.063 954.208 672.674ZM957.101 668.493L958.396 669.241L958.396 674.961L957.101 674.213L957.101 668.493ZM957.101 666.293L958.396 667.041L958.396 668.372L957.101 667.624L957.101 666.293ZM958.932 669.55L960.333 670.359L961.552 675.364L962.752 671.756L964.143 672.559L962.286 677.206L960.8 676.348L958.932 669.55ZM966.96 680.037C966.452 679.743 966.007 679.358 965.626 678.882C965.251 678.401 964.966 677.881 964.769 677.32C964.572 676.751 964.473 676.181 964.473 675.609C964.473 675.037 964.572 674.581 964.769 674.24C964.966 673.899 965.251 673.708 965.626 673.668C966.007 673.631 966.452 673.759 966.96 674.053C967.474 674.35 967.919 674.735 968.293 675.208C968.668 675.673 968.951 676.2 969.141 676.786C969.338 677.369 969.437 677.976 969.437 678.607L969.437 678.937L965.759 676.814C965.791 677.118 965.858 677.402 965.959 677.666C966.067 677.927 966.204 678.163 966.369 678.376C966.541 678.585 966.737 678.753 966.96 678.882C967.239 679.043 967.471 679.115 967.655 679.096C967.846 679.074 967.992 678.975 968.093 678.799L969.351 679.525C969.186 680.009 968.894 680.303 968.474 680.405C968.062 680.504 967.557 680.381 966.96 680.037ZM968.141 677.155C968.077 676.722 967.944 676.337 967.741 676C967.538 675.655 967.277 675.391 966.96 675.208C966.636 675.021 966.372 674.982 966.169 675.092C965.966 675.195 965.832 675.426 965.769 675.785L968.141 677.155ZM939.92 667.373L945.017 670.316L945.017 671.757L941.311 669.617L941.311 671.355L944.74 673.335L944.74 674.71L941.311 672.73L941.311 674.655L944.998 676.784L944.998 678.225L939.92 675.293L939.92 667.373ZM947.713 679.793C947.402 679.613 947.145 679.424 946.941 679.226C946.738 679.021 946.576 678.773 946.456 678.484C946.341 678.198 946.284 677.857 946.284 677.461L946.284 674.381L945.427 673.886L945.427 672.753L946.284 673.248L946.284 671.488L947.58 672.236L947.58 673.996L948.818 674.711L948.818 675.844L947.58 675.129L947.58 678.055C947.58 678.238 947.615 678.394 947.684 678.522C947.754 678.643 947.875 678.753 948.046 678.852L948.818 679.298L948.818 680.431L947.713 679.793ZM949.556 672.937L950.852 673.685L950.852 676.611C951.036 676.453 951.255 676.371 951.509 676.363C951.763 676.356 952.052 676.446 952.376 676.633C952.751 676.849 953.068 677.124 953.329 677.458C953.595 677.788 953.795 678.164 953.929 678.585C954.068 679.011 954.138 679.462 954.138 679.938L954.138 683.502L952.852 682.76L952.852 679.372C952.852 679.012 952.779 678.688 952.633 678.398C952.487 678.101 952.255 677.861 951.938 677.678C951.76 677.575 951.588 677.524 951.423 677.524C951.265 677.52 951.128 677.592 951.014 677.738C950.906 677.889 950.852 678.132 950.852 678.47L950.852 681.605L949.556 680.857L949.556 672.937ZM955.119 678.349L956.415 679.097L956.415 684.817L955.119 684.069L955.119 678.349ZM955.119 676.149L956.415 676.897L956.415 678.228L955.119 677.48L955.119 676.149ZM959.675 686.831C959.167 686.538 958.726 686.155 958.351 685.682C957.983 685.205 957.7 684.686 957.503 684.125C957.307 683.557 957.208 682.987 957.208 682.415C957.208 681.843 957.307 681.386 957.503 681.045C957.7 680.704 957.983 680.512 958.351 680.468C958.726 680.427 959.167 680.554 959.675 680.847C960.355 681.239 960.895 681.749 961.295 682.376C961.695 683.003 961.933 683.676 962.009 684.395L960.714 683.647C960.657 683.313 960.536 683.009 960.352 682.734C960.174 682.455 959.949 682.237 959.675 682.079C959.421 681.932 959.209 681.883 959.037 681.931C958.866 681.971 958.735 682.097 958.647 682.31C958.564 682.526 958.523 682.814 958.523 683.174C958.523 683.533 958.564 683.868 958.647 684.18C958.735 684.488 958.866 684.765 959.037 685.011C959.209 685.256 959.421 685.452 959.675 685.599C959.961 685.764 960.193 685.806 960.371 685.726C960.555 685.649 960.669 685.454 960.714 685.143L962.009 685.891C961.933 686.543 961.692 686.961 961.285 687.145C960.879 687.321 960.342 687.216 959.675 686.831ZM964.263 689.48C963.717 689.165 963.279 688.761 962.949 688.27C962.619 687.771 962.453 687.247 962.453 686.697C962.453 686.36 962.52 686.116 962.654 685.966C962.793 685.812 963.003 685.742 963.282 685.757C963.568 685.775 963.936 685.87 964.387 686.043L965.797 686.571L965.797 686.274C965.797 686.017 965.73 685.788 965.597 685.586C965.464 685.384 965.245 685.196 964.94 685.02C964.654 684.855 964.422 684.79 964.244 684.827C964.073 684.867 963.984 685.025 963.978 685.3L962.692 684.558C962.698 683.916 962.908 683.549 963.32 683.458C963.739 683.362 964.276 683.503 964.93 683.881C965.635 684.288 966.166 684.745 966.521 685.251C966.883 685.76 967.064 686.286 967.064 686.829L967.064 690.965L965.835 690.256L965.835 689.618C965.632 689.772 965.4 689.836 965.14 689.81C964.886 689.781 964.594 689.671 964.263 689.48ZM964.587 688.589C964.803 688.714 965 688.783 965.178 688.798C965.362 688.816 965.511 688.763 965.626 688.639C965.74 688.514 965.797 688.309 965.797 688.023L965.797 687.539L964.635 687.143C964.33 687.033 964.111 686.994 963.978 687.027C963.844 687.053 963.778 687.179 963.778 687.407C963.778 687.627 963.844 687.841 963.978 688.05C964.117 688.255 964.321 688.435 964.587 688.589ZM967.93 683.545L969.225 684.293L969.225 692.213L967.93 691.465L967.93 683.545ZM930.771 681.143C930.181 680.802 929.666 680.399 929.228 679.933C928.79 679.46 928.447 678.943 928.199 678.382C927.958 677.825 927.834 677.247 927.828 676.65L929.199 677.442C929.212 677.999 929.365 678.476 929.657 678.872C929.949 679.26 930.336 679.594 930.819 679.873C931.219 680.104 931.54 680.197 931.781 680.153C932.022 680.109 932.143 679.919 932.143 679.581C932.143 679.391 932.099 679.207 932.01 679.031C931.927 678.859 931.765 678.652 931.524 678.41C931.289 678.164 930.94 677.86 930.476 677.497C929.892 677.042 929.419 676.611 929.057 676.204C928.701 675.794 928.434 675.376 928.256 674.95C928.085 674.529 927.999 674.079 927.999 673.603C927.999 673.163 928.104 672.835 928.313 672.618C928.529 672.406 928.831 672.316 929.218 672.349C929.612 672.385 930.07 672.554 930.59 672.855C931.486 673.372 932.172 674.002 932.648 674.747C933.124 675.491 933.375 676.289 933.401 677.139L932.057 676.364C932.032 675.887 931.899 675.469 931.657 675.11C931.422 674.747 931.067 674.428 930.59 674.153C930.235 673.947 929.949 673.863 929.733 673.9C929.523 673.94 929.419 674.096 929.419 674.367C929.419 674.565 929.457 674.752 929.533 674.928C929.615 675.108 929.768 675.313 929.99 675.544C930.219 675.779 930.549 676.069 930.981 676.413C931.648 676.93 932.168 677.403 932.543 677.832C932.924 678.265 933.191 678.679 933.343 679.075C933.502 679.475 933.582 679.895 933.582 680.335C933.582 680.848 933.461 681.218 933.22 681.446C932.985 681.669 932.654 681.754 932.229 681.699C931.81 681.647 931.324 681.462 930.771 681.143ZM936.567 684.489C936.059 684.196 935.614 683.811 935.233 683.334C934.858 682.854 934.573 682.333 934.376 681.772C934.179 681.204 934.08 680.634 934.08 680.062C934.08 679.49 934.179 679.033 934.376 678.692C934.573 678.351 934.858 678.161 935.233 678.12C935.614 678.084 936.059 678.212 936.567 678.505C937.081 678.802 937.526 679.187 937.9 679.66C938.275 680.126 938.558 680.652 938.748 681.239C938.945 681.822 939.044 682.429 939.044 683.059L939.044 683.389L935.366 681.266C935.398 681.571 935.465 681.855 935.566 682.119C935.674 682.379 935.811 682.616 935.976 682.828C936.148 683.037 936.344 683.206 936.567 683.334C936.846 683.496 937.078 683.567 937.262 683.549C937.453 683.527 937.599 683.428 937.7 683.252L938.958 683.978C938.793 684.462 938.501 684.755 938.081 684.858C937.669 684.957 937.164 684.834 936.567 684.489ZM937.748 681.607C937.685 681.175 937.551 680.79 937.348 680.452C937.145 680.108 936.884 679.844 936.567 679.66C936.243 679.473 935.979 679.435 935.776 679.545C935.573 679.648 935.439 679.879 935.376 680.238L937.748 681.607ZM939.825 678.319L941.121 679.067L941.121 686.987L939.825 686.239L939.825 678.319ZM944.391 689.006C943.883 688.713 943.438 688.328 943.057 687.851C942.682 687.371 942.396 686.85 942.2 686.289C942.003 685.721 941.904 685.151 941.904 684.579C941.904 684.007 942.003 683.55 942.2 683.209C942.396 682.868 942.682 682.678 943.057 682.637C943.438 682.601 943.883 682.729 944.391 683.022C944.905 683.319 945.35 683.704 945.724 684.177C946.099 684.643 946.382 685.169 946.572 685.756C946.769 686.339 946.867 686.946 946.867 687.576L946.867 687.906L943.19 685.783C943.222 686.088 943.289 686.372 943.39 686.636C943.498 686.896 943.635 687.133 943.8 687.345C943.971 687.554 944.168 687.723 944.391 687.851C944.67 688.013 944.902 688.084 945.086 688.066C945.277 688.044 945.423 687.945 945.524 687.769L946.782 688.495C946.617 688.979 946.324 689.272 945.905 689.375C945.492 689.474 944.988 689.351 944.391 689.006ZM945.572 686.124C945.508 685.692 945.375 685.307 945.172 684.969C944.969 684.625 944.708 684.361 944.391 684.177C944.067 683.99 943.803 683.952 943.6 684.062C943.397 684.165 943.263 684.396 943.2 684.755L945.572 686.124ZM949.926 692.202C949.418 691.909 948.976 691.526 948.602 691.053C948.233 690.576 947.951 690.057 947.754 689.496C947.557 688.928 947.459 688.358 947.459 687.786C947.459 687.214 947.557 686.757 947.754 686.416C947.951 686.075 948.233 685.883 948.602 685.839C948.976 685.798 949.418 685.925 949.926 686.218C950.605 686.611 951.145 687.12 951.545 687.747C951.945 688.374 952.184 689.047 952.26 689.766L950.964 689.018C950.907 688.684 950.786 688.38 950.602 688.105C950.424 687.826 950.199 687.608 949.926 687.45C949.672 687.304 949.459 687.254 949.288 687.302C949.116 687.342 948.986 687.469 948.897 687.681C948.814 687.898 948.773 688.185 948.773 688.545C948.773 688.904 948.814 689.24 948.897 689.551C948.986 689.859 949.116 690.136 949.288 690.382C949.459 690.627 949.672 690.824 949.926 690.97C950.212 691.135 950.443 691.177 950.621 691.097C950.805 691.02 950.92 690.825 950.964 690.514L952.26 691.262C952.184 691.914 951.942 692.332 951.536 692.516C951.129 692.692 950.593 692.587 949.926 692.202ZM954.895 694.939C954.584 694.759 954.327 694.571 954.123 694.373C953.92 694.167 953.758 693.92 953.637 693.63C953.523 693.344 953.466 693.003 953.466 692.607L953.466 689.527L952.609 689.032L952.609 687.899L953.466 688.394L953.466 686.634L954.762 687.382L954.762 689.142L956 689.857L956 690.99L954.762 690.275L954.762 693.201C954.762 693.384 954.797 693.54 954.866 693.669C954.936 693.79 955.057 693.9 955.228 693.999L956 694.444L956 695.577L954.895 694.939ZM956.729 690.278L958.024 691.026L958.024 696.746L956.729 695.998L956.729 690.278ZM956.729 688.078L958.024 688.826L958.024 690.157L956.729 689.409L956.729 688.078ZM961.332 698.788C960.812 698.487 960.358 698.097 959.97 697.616C959.589 697.132 959.297 696.608 959.094 696.043C958.897 695.475 958.798 694.905 958.798 694.333C958.798 693.761 958.897 693.304 959.094 692.963C959.297 692.626 959.589 692.439 959.97 692.402C960.358 692.369 960.812 692.503 961.332 692.804C961.86 693.108 962.314 693.499 962.695 693.975C963.082 694.456 963.374 694.98 963.571 695.548C963.768 696.117 963.866 696.687 963.866 697.259C963.866 697.831 963.768 698.287 963.571 698.628C963.374 698.962 963.082 699.149 962.695 699.189C962.314 699.226 961.86 699.092 961.332 698.788ZM961.332 697.556C961.612 697.717 961.841 697.776 962.018 697.732C962.203 697.691 962.336 697.567 962.418 697.358C962.507 697.145 962.552 696.859 962.552 696.5C962.552 696.14 962.507 695.803 962.418 695.488C962.336 695.176 962.203 694.897 962.018 694.652C961.841 694.402 961.612 694.197 961.332 694.036C961.059 693.878 960.831 693.819 960.647 693.86C960.469 693.896 960.335 694.021 960.246 694.234C960.158 694.446 960.113 694.732 960.113 695.092C960.113 695.451 960.158 695.788 960.246 696.104C960.335 696.412 960.469 696.69 960.647 696.94C960.831 697.193 961.059 697.398 961.332 697.556ZM964.646 694.849L965.903 695.575L965.903 696.356C966.087 696.183 966.31 696.092 966.57 696.081C966.83 696.062 967.129 696.15 967.465 696.345C967.84 696.561 968.158 696.836 968.418 697.17C968.685 697.5 968.885 697.876 969.018 698.297C969.158 698.723 969.228 699.174 969.228 699.65L969.228 703.214L967.942 702.472L967.942 699.084C967.942 698.724 967.869 698.4 967.723 698.11C967.577 697.813 967.345 697.573 967.027 697.39C966.849 697.287 966.678 697.236 966.513 697.236C966.354 697.232 966.218 697.304 966.103 697.45C965.995 697.601 965.941 697.844 965.941 698.182L965.941 701.317L964.646 700.569L964.646 694.849Z" fill="#5F52FF"/>
|
|
121
|
+
<path d="M844.884 779.167C844.217 778.782 843.639 778.265 843.15 777.616C842.661 776.967 842.287 776.259 842.026 775.493C841.772 774.723 841.645 773.96 841.645 773.205C841.645 772.442 841.775 771.828 842.036 771.362C842.302 770.893 842.693 770.627 843.207 770.565C843.728 770.499 844.351 770.675 845.075 771.093C845.665 771.434 846.186 771.856 846.637 772.358C847.088 772.86 847.453 773.408 847.732 774.002C848.012 774.589 848.193 775.185 848.275 775.79L846.856 774.97C846.754 774.479 846.548 774.012 846.237 773.568C845.926 773.124 845.538 772.769 845.075 772.501C844.63 772.244 844.259 772.151 843.96 772.22C843.662 772.283 843.442 772.475 843.303 772.798C843.163 773.121 843.093 773.535 843.093 774.041C843.093 774.54 843.163 775.031 843.303 775.515C843.442 775.999 843.662 776.448 843.96 776.862C844.259 777.27 844.63 777.601 845.075 777.858C845.57 778.144 845.97 778.225 846.275 778.1C846.58 777.968 846.793 777.665 846.913 777.192L844.789 775.966L844.789 774.668L848.361 776.73L848.361 781.043L847.332 780.449L847.332 779.074C847.104 779.426 846.786 779.616 846.38 779.646C845.98 779.671 845.481 779.512 844.884 779.167ZM853.907 784.244L852.65 783.518L852.65 782.737C852.466 782.91 852.243 783.005 851.983 783.023C851.723 783.034 851.424 782.943 851.087 782.748C850.713 782.532 850.392 782.259 850.125 781.929C849.865 781.595 849.665 781.216 849.525 780.79C849.392 780.369 849.325 779.92 849.325 779.443L849.325 775.879L850.611 776.621L850.611 780.009C850.611 780.369 850.684 780.697 850.83 780.994C850.976 781.284 851.208 781.52 851.526 781.703C851.703 781.806 851.872 781.859 852.031 781.863C852.196 781.863 852.332 781.788 852.44 781.637C852.554 781.491 852.612 781.249 852.612 780.911L852.612 777.776L853.907 778.524L853.907 784.244ZM856.45 785.845C855.904 785.529 855.466 785.126 855.136 784.635C854.805 784.136 854.64 783.612 854.64 783.062C854.64 782.724 854.707 782.481 854.84 782.33C854.98 782.176 855.19 782.107 855.469 782.121C855.755 782.14 856.123 782.235 856.574 782.407L857.984 782.935L857.984 782.638C857.984 782.382 857.917 782.152 857.784 781.951C857.651 781.749 857.432 781.56 857.127 781.384C856.841 781.219 856.609 781.155 856.431 781.192C856.26 781.232 856.171 781.39 856.165 781.665L854.879 780.922C854.885 780.281 855.094 779.914 855.507 779.822C855.926 779.727 856.463 779.868 857.117 780.246C857.822 780.653 858.352 781.109 858.708 781.615C859.07 782.125 859.251 782.651 859.251 783.194L859.251 787.33L858.022 786.62L858.022 785.982C857.819 786.136 857.587 786.2 857.327 786.175C857.073 786.145 856.781 786.035 856.45 785.845ZM856.774 784.954C856.99 785.078 857.187 785.148 857.365 785.163C857.549 785.181 857.698 785.128 857.813 785.003C857.927 784.879 857.984 784.673 857.984 784.387L857.984 783.903L856.822 783.507C856.517 783.397 856.298 783.359 856.165 783.392C856.031 783.417 855.965 783.544 855.965 783.771C855.965 783.991 856.031 784.206 856.165 784.415C856.304 784.62 856.507 784.8 856.774 784.954ZM860.117 782.109L861.374 782.835L861.374 783.825C861.533 783.543 861.736 783.393 861.984 783.374C862.231 783.349 862.52 783.431 862.851 783.622L863.251 783.853L863.251 785.228L862.793 784.964C862.501 784.795 862.254 784.707 862.05 784.7C861.847 784.685 861.688 784.773 861.574 784.964C861.466 785.151 861.412 785.457 861.412 785.882L861.412 788.577L860.117 787.829L860.117 782.109ZM865.968 791.34C865.505 791.072 865.108 790.715 864.777 790.267C864.447 789.813 864.196 789.312 864.025 788.766C863.853 788.212 863.768 787.649 863.768 787.077C863.768 786.498 863.853 786.034 864.025 785.686C864.196 785.33 864.447 785.119 864.777 785.053C865.108 784.987 865.505 785.088 865.968 785.356C866.299 785.547 866.587 785.783 866.835 786.065C867.089 786.351 867.302 786.676 867.473 787.039L867.473 784.157L868.769 784.905L868.769 792.825L867.512 792.099L867.512 791.34C867.34 791.527 867.127 791.624 866.873 791.631C866.619 791.639 866.318 791.542 865.968 791.34ZM866.292 790.295C866.559 790.449 866.781 790.504 866.959 790.46C867.137 790.416 867.27 790.291 867.359 790.086C867.448 789.873 867.492 789.587 867.492 789.228C867.492 788.869 867.448 788.531 867.359 788.216C867.27 787.901 867.137 787.622 866.959 787.38C866.781 787.131 866.559 786.929 866.292 786.775C866.019 786.617 865.794 786.56 865.616 786.604C865.438 786.641 865.305 786.766 865.216 786.978C865.133 787.195 865.092 787.483 865.092 787.842C865.092 788.201 865.133 788.537 865.216 788.848C865.305 789.156 865.438 789.435 865.616 789.684C865.794 789.934 866.019 790.137 866.292 790.295ZM869.754 787.674L871.012 788.4L871.012 789.39C871.171 789.108 871.374 788.957 871.622 788.939C871.869 788.913 872.158 788.996 872.489 789.186L872.889 789.417L872.889 790.792L872.431 790.528C872.139 790.36 871.892 790.272 871.688 790.264C871.485 790.25 871.326 790.338 871.212 790.528C871.104 790.715 871.05 791.022 871.05 791.447L871.05 794.142L869.754 793.394L869.754 787.674ZM875.168 796.651C874.622 796.336 874.184 795.933 873.853 795.441C873.523 794.943 873.358 794.418 873.358 793.868C873.358 793.531 873.425 793.287 873.558 793.137C873.698 792.983 873.907 792.913 874.187 792.928C874.473 792.946 874.841 793.042 875.292 793.214L876.702 793.742L876.702 793.445C876.702 793.188 876.635 792.959 876.502 792.757C876.368 792.556 876.149 792.367 875.844 792.191C875.559 792.026 875.327 791.962 875.149 791.998C874.977 792.039 874.889 792.196 874.882 792.471L873.596 791.729C873.603 791.087 873.812 790.721 874.225 790.629C874.644 790.534 875.181 790.675 875.835 791.052C876.54 791.459 877.07 791.916 877.426 792.422C877.788 792.932 877.969 793.458 877.969 794L877.969 798.136L876.74 797.427L876.74 796.789C876.537 796.943 876.305 797.007 876.044 796.981C875.79 796.952 875.498 796.842 875.168 796.651ZM875.492 795.76C875.708 795.885 875.905 795.955 876.083 795.969C876.267 795.988 876.416 795.935 876.53 795.81C876.645 795.685 876.702 795.48 876.702 795.194L876.702 794.71L875.54 794.314C875.235 794.204 875.016 794.165 874.882 794.198C874.749 794.224 874.682 794.351 874.682 794.578C874.682 794.798 874.749 795.012 874.882 795.221C875.022 795.427 875.225 795.606 875.492 795.76ZM878.825 792.911L880.12 793.659L880.12 799.379L878.825 798.631L878.825 792.911ZM878.825 790.711L880.12 791.459L880.12 792.79L878.825 792.042L878.825 790.711ZM881.104 792.027L882.4 792.775L882.4 800.695L881.104 799.947L881.104 792.027Z" fill="#5F52FF"/>
|
|
122
|
+
<path d="M1081.66 538.852L1079.5 537.603L1079.5 536.162L1085.24 539.473L1085.24 540.914L1083.07 539.666L1083.07 546.145L1081.66 545.331L1081.66 538.852ZM1087.43 548.79C1086.88 548.474 1086.44 548.071 1086.11 547.58C1085.78 547.081 1085.62 546.557 1085.62 546.007C1085.62 545.669 1085.68 545.425 1085.82 545.275C1085.96 545.121 1086.17 545.051 1086.45 545.066C1086.73 545.084 1087.1 545.18 1087.55 545.352L1088.96 545.88L1088.96 545.583C1088.96 545.326 1088.89 545.097 1088.76 544.896C1088.63 544.694 1088.41 544.505 1088.1 544.329C1087.82 544.164 1087.59 544.1 1087.41 544.137C1087.24 544.177 1087.15 544.335 1087.14 544.61L1085.85 543.867C1085.86 543.225 1086.07 542.859 1086.48 542.767C1086.9 542.672 1087.44 542.813 1088.09 543.191C1088.8 543.598 1089.33 544.054 1089.68 544.56C1090.05 545.07 1090.23 545.596 1090.23 546.139L1090.23 550.275L1089 549.565L1089 548.927C1088.8 549.081 1088.56 549.145 1088.3 549.12C1088.05 549.09 1087.76 548.98 1087.43 548.79ZM1087.75 547.899C1087.97 548.023 1088.16 548.093 1088.34 548.108C1088.53 548.126 1088.67 548.073 1088.79 547.948C1088.9 547.823 1088.96 547.618 1088.96 547.332L1088.96 546.848L1087.8 546.452C1087.49 546.342 1087.27 546.304 1087.14 546.337C1087.01 546.362 1086.94 546.489 1086.94 546.716C1086.94 546.936 1087.01 547.151 1087.14 547.36C1087.28 547.565 1087.48 547.745 1087.75 547.899ZM1093.07 552.05C1092.37 551.643 1091.82 551.163 1091.42 550.609C1091.02 550.059 1090.81 549.425 1090.77 548.706L1092.03 549.432C1092.06 549.803 1092.16 550.112 1092.34 550.362C1092.52 550.615 1092.79 550.838 1093.12 551.033C1093.39 551.19 1093.61 551.262 1093.78 551.247C1093.94 551.225 1094.03 551.115 1094.03 550.917C1094.03 550.778 1094 550.653 1093.95 550.543C1093.9 550.433 1093.79 550.298 1093.63 550.136C1093.47 549.971 1093.22 549.762 1092.88 549.509C1092.38 549.113 1091.98 548.75 1091.68 548.42C1091.39 548.09 1091.18 547.775 1091.05 547.474C1090.93 547.177 1090.87 546.864 1090.87 546.534C1090.87 545.991 1091.06 545.676 1091.45 545.588C1091.83 545.5 1092.34 545.641 1092.98 546.011C1093.69 546.422 1094.23 546.911 1094.61 547.48C1094.98 548.041 1095.18 548.629 1095.19 549.245L1093.99 548.552C1093.98 548.204 1093.89 547.911 1093.7 547.672C1093.52 547.434 1093.28 547.229 1092.98 547.056C1092.73 546.913 1092.53 546.851 1092.37 546.869C1092.22 546.891 1092.14 546.998 1092.14 547.188C1092.14 547.328 1092.17 547.46 1092.24 547.584C1092.31 547.705 1092.42 547.846 1092.59 548.008C1092.76 548.165 1093.01 548.369 1093.34 548.618C1093.84 549.003 1094.24 549.359 1094.52 549.685C1094.81 550.004 1095.01 550.316 1095.13 550.62C1095.25 550.917 1095.31 551.231 1095.31 551.561C1095.31 552.125 1095.11 552.446 1094.69 552.523C1094.29 552.597 1093.75 552.439 1093.07 552.05ZM1095.98 545.674L1097.27 546.422L1097.27 550.932L1099.21 549.739L1100.74 550.624L1098.86 551.719L1100.86 556.416L1099.35 555.541L1097.97 552.247L1097.27 552.67L1097.27 554.342L1095.98 553.594L1095.98 545.674Z" fill="#5F52FF"/>
|
|
123
|
+
<path d="M947.732 543.21L950.657 541.521C951.203 541.206 951.765 540.995 952.343 540.889C952.915 540.779 953.464 540.766 953.991 540.85C954.525 540.931 955.007 541.096 955.439 541.345C955.871 541.595 956.16 541.875 956.306 542.187C956.452 542.491 956.433 542.81 956.249 543.144C956.058 543.474 955.69 543.797 955.144 544.112L953.61 544.997L955.982 546.367L954.591 547.17L947.732 543.21ZM953.867 543.463C954.274 543.228 954.49 543.001 954.515 542.781C954.54 542.561 954.382 542.352 954.039 542.154C953.702 541.96 953.343 541.87 952.962 541.884C952.581 541.899 952.187 542.024 951.781 542.258L950.323 543.1L952.41 544.304L953.867 543.463ZM963.642 542.076C963.121 542.377 962.556 542.575 961.947 542.67C961.337 542.758 960.737 542.749 960.146 542.643C959.555 542.529 959.012 542.329 958.517 542.043C958.022 541.757 957.676 541.444 957.479 541.103C957.288 540.758 957.272 540.412 957.431 540.063C957.596 539.711 957.939 539.385 958.46 539.084C958.987 538.78 959.552 538.582 960.156 538.49C960.765 538.395 961.365 538.404 961.956 538.518C962.547 538.632 963.09 538.831 963.585 539.117C964.08 539.403 964.427 539.717 964.623 540.058C964.814 540.395 964.83 540.742 964.671 541.097C964.512 541.446 964.169 541.772 963.642 542.076ZM962.575 541.46C962.855 541.299 963.02 541.13 963.071 540.954C963.128 540.775 963.087 540.597 962.947 540.421C962.807 540.238 962.582 540.056 962.27 539.876C961.959 539.697 961.645 539.567 961.327 539.486C961.016 539.402 960.708 539.378 960.403 539.414C960.098 539.444 959.806 539.539 959.527 539.7C959.254 539.858 959.089 540.027 959.031 540.206C958.974 540.379 959.016 540.557 959.155 540.74C959.295 540.923 959.521 541.105 959.832 541.284C960.143 541.464 960.457 541.594 960.775 541.675C961.086 541.752 961.394 541.776 961.699 541.746C962.01 541.713 962.302 541.618 962.575 541.46ZM962.268 537.018L963.526 536.292L964.202 536.682C964.145 536.436 964.177 536.198 964.298 535.967C964.412 535.732 964.637 535.518 964.974 535.324C965.349 535.107 965.746 534.97 966.165 534.911C966.584 534.845 967.009 534.86 967.441 534.955C967.879 535.047 968.305 535.212 968.718 535.45L971.804 537.232L970.518 537.975L967.584 536.281C967.273 536.101 966.955 536.002 966.632 535.984C966.301 535.962 965.977 536.042 965.66 536.226C965.482 536.328 965.352 536.451 965.269 536.594C965.187 536.73 965.18 536.884 965.25 537.056C965.326 537.225 965.511 537.393 965.803 537.562L968.518 539.13L967.222 539.878L962.268 537.018ZM975.281 535.357C974.817 535.624 974.309 535.789 973.757 535.852C973.198 535.91 972.639 535.877 972.08 535.753C971.515 535.624 970.985 535.417 970.489 535.131C969.988 534.842 969.629 534.535 969.413 534.213C969.191 533.886 969.133 533.564 969.241 533.245C969.349 532.926 969.635 532.632 970.099 532.365C970.429 532.174 970.778 532.042 971.147 531.969C971.521 531.892 971.909 531.87 972.309 531.903L969.813 530.462L971.109 529.714L977.967 533.674L976.71 534.4L976.053 534.02C976.129 534.262 976.107 534.495 975.986 534.719C975.865 534.942 975.63 535.155 975.281 535.357ZM974.538 534.554C974.805 534.4 974.963 534.235 975.014 534.059C975.065 533.883 975.024 533.705 974.89 533.525C974.751 533.342 974.525 533.16 974.214 532.981C973.903 532.801 973.589 532.671 973.271 532.59C972.953 532.51 972.645 532.486 972.347 532.519C972.042 532.548 971.756 532.64 971.49 532.794C971.216 532.951 971.055 533.118 971.004 533.294C970.947 533.467 970.988 533.644 971.128 533.828C971.274 534.007 971.502 534.187 971.813 534.367C972.125 534.546 972.436 534.678 972.747 534.763C973.058 534.84 973.366 534.864 973.671 534.834C973.976 534.805 974.265 534.711 974.538 534.554ZM981.725 531.636C981.217 531.93 980.661 532.122 980.058 532.214C979.455 532.298 978.861 532.285 978.277 532.175C977.686 532.062 977.143 531.862 976.648 531.576C976.152 531.29 975.806 530.976 975.609 530.635C975.412 530.294 975.39 529.951 975.542 529.607C975.701 529.258 976.035 528.938 976.543 528.644C977.057 528.347 977.613 528.155 978.21 528.067C978.8 527.975 979.397 527.993 980.001 528.122C980.604 528.243 981.179 528.461 981.725 528.776L982.011 528.941L978.334 531.064C978.613 531.189 978.893 531.273 979.172 531.317C979.451 531.354 979.725 531.354 979.991 531.317C980.258 531.273 980.502 531.187 980.725 531.059C981.004 530.897 981.182 530.732 981.258 530.564C981.334 530.388 981.322 530.212 981.22 530.036L982.478 529.31C982.814 529.695 982.922 530.094 982.801 530.509C982.681 530.916 982.322 531.292 981.725 531.636ZM979.82 529.172C979.413 529.011 979.013 528.934 978.619 528.941C978.219 528.945 977.861 529.038 977.543 529.222C977.219 529.409 977.054 529.618 977.048 529.849C977.035 530.076 977.168 530.307 977.448 530.542L979.82 529.172ZM980.297 526.609L981.554 525.883L982.411 526.378C982.246 526.099 982.218 525.848 982.326 525.624C982.427 525.397 982.643 525.188 982.973 524.997L983.374 524.766L984.564 525.454L984.107 525.718C983.815 525.887 983.615 526.057 983.507 526.229C983.393 526.398 983.389 526.58 983.497 526.774C983.605 526.961 983.844 527.161 984.212 527.373L986.546 528.721L985.25 529.469L980.297 526.609Z" fill="#465358"/>
|
|
124
|
+
<path d="M720.373 501.71L722.402 500.538L728.975 502.408L725.727 498.619L727.756 497.447L734.615 501.407L733.281 502.177L728.194 499.24L731.519 503.195L730.337 503.877L723.478 501.963L728.566 504.9L727.232 505.67L720.373 501.71ZM738.449 499.326C737.941 499.619 737.386 499.811 736.782 499.903C736.179 499.987 735.585 499.975 735.001 499.865C734.41 499.751 733.867 499.551 733.372 499.265C732.876 498.979 732.53 498.666 732.333 498.325C732.137 497.984 732.114 497.641 732.267 497.296C732.426 496.948 732.759 496.627 733.267 496.334C733.781 496.037 734.337 495.844 734.934 495.756C735.525 495.664 736.122 495.683 736.725 495.811C737.328 495.932 737.903 496.15 738.449 496.466L738.735 496.631L735.058 498.754C735.337 498.878 735.617 498.963 735.896 499.007C736.176 499.043 736.449 499.043 736.716 499.007C736.982 498.963 737.227 498.876 737.449 498.748C737.729 498.587 737.906 498.422 737.983 498.253C738.059 498.077 738.046 497.901 737.944 497.725L739.202 496.999C739.538 497.384 739.646 497.784 739.526 498.198C739.405 498.605 739.046 498.981 738.449 499.326ZM736.544 496.862C736.138 496.7 735.738 496.623 735.344 496.631C734.944 496.634 734.585 496.728 734.267 496.911C733.943 497.098 733.778 497.307 733.772 497.538C733.759 497.765 733.893 497.996 734.172 498.231L736.544 496.862ZM737.021 494.298L738.278 493.572L738.983 493.979C738.894 493.737 738.898 493.504 738.993 493.281C739.088 493.057 739.304 492.848 739.641 492.654C739.984 492.456 740.358 492.331 740.765 492.28C741.171 492.228 741.59 492.25 742.022 492.346C741.927 492.078 741.933 491.818 742.041 491.565C742.149 491.304 742.381 491.072 742.737 490.866C743.08 490.668 743.454 490.544 743.861 490.492C744.274 490.437 744.696 490.457 745.128 490.553C745.56 490.648 745.979 490.813 746.385 491.048L749.472 492.83L748.176 493.578L745.242 491.884C744.937 491.708 744.626 491.605 744.309 491.576C743.991 491.546 743.696 491.611 743.423 491.768C743.149 491.926 743.01 492.117 743.003 492.34C743.003 492.56 743.223 492.797 743.661 493.05L746.376 494.617L745.08 495.365L742.146 493.671C741.841 493.495 741.527 493.394 741.203 493.369C740.885 493.339 740.593 493.402 740.327 493.556C740.047 493.717 739.904 493.91 739.898 494.133C739.898 494.353 740.117 494.59 740.555 494.843L743.27 496.41L741.975 497.158L737.021 494.298ZM753.279 490.764C752.758 491.065 752.193 491.263 751.583 491.358C750.973 491.446 750.373 491.437 749.783 491.33C749.192 491.217 748.649 491.017 748.154 490.731C747.658 490.445 747.312 490.131 747.115 489.79C746.925 489.446 746.909 489.099 747.068 488.751C747.233 488.399 747.576 488.073 748.096 487.772C748.624 487.468 749.189 487.27 749.792 487.178C750.402 487.083 751.002 487.092 751.593 487.205C752.183 487.319 752.726 487.519 753.222 487.805C753.717 488.091 754.063 488.404 754.26 488.745C754.45 489.083 754.466 489.429 754.308 489.785C754.149 490.133 753.806 490.46 753.279 490.764ZM752.212 490.148C752.491 489.987 752.656 489.818 752.707 489.642C752.764 489.462 752.723 489.284 752.583 489.108C752.444 488.925 752.218 488.744 751.907 488.564C751.596 488.384 751.281 488.254 750.964 488.173C750.653 488.089 750.345 488.065 750.04 488.102C749.735 488.131 749.443 488.227 749.163 488.388C748.89 488.546 748.725 488.714 748.668 488.894C748.611 489.066 748.652 489.244 748.792 489.427C748.932 489.611 749.157 489.792 749.468 489.972C749.779 490.152 750.094 490.282 750.411 490.362C750.722 490.439 751.03 490.463 751.335 490.434C751.647 490.401 751.939 490.306 752.212 490.148ZM751.905 485.705L753.162 484.979L754.02 485.474C753.855 485.195 753.826 484.944 753.934 484.72C754.036 484.493 754.252 484.284 754.582 484.093L754.982 483.862L756.173 484.55L755.715 484.814C755.423 484.983 755.223 485.153 755.115 485.325C755.001 485.494 754.998 485.676 755.106 485.87C755.214 486.057 755.452 486.257 755.82 486.469L758.154 487.817L756.859 488.565L751.905 485.705ZM761.748 486.732L762.548 486.27C762.694 486.186 762.793 486.11 762.844 486.044C762.907 485.978 762.933 485.912 762.92 485.846C762.907 485.78 762.869 485.7 762.806 485.604L762.596 485.329L755.699 483.514L757.099 482.706L761.977 484.158L759.424 481.364L760.815 480.561L764.263 484.862C764.46 485.108 764.59 485.326 764.654 485.516C764.717 485.707 764.698 485.898 764.597 486.088C764.508 486.279 764.301 486.468 763.977 486.655L762.796 487.337L761.748 486.732Z" fill="#28FFB4"/>
|
|
125
|
+
<path d="M671.373 500.71L673.983 499.203C674.752 498.759 675.542 498.475 676.355 498.35C677.168 498.218 677.959 498.228 678.727 498.378C679.496 498.528 680.213 498.796 680.88 499.181C681.541 499.562 682.001 499.975 682.261 500.418C682.522 500.862 682.541 501.32 682.319 501.793C682.103 502.263 681.61 502.719 680.842 503.163L678.232 504.67L671.373 500.71ZM679.642 502.47C680.105 502.202 680.391 501.927 680.499 501.645C680.607 501.355 680.566 501.075 680.375 500.803C680.178 500.528 679.864 500.266 679.432 500.017C678.994 499.764 678.54 499.582 678.07 499.472C677.594 499.359 677.108 499.335 676.612 499.401C676.123 499.463 675.647 499.628 675.183 499.896L673.964 500.6L678.422 503.174L679.642 502.47ZM687.859 499.244C687.35 499.537 686.795 499.73 686.191 499.822C685.588 499.906 684.994 499.893 684.41 499.783C683.819 499.669 683.276 499.47 682.781 499.184C682.286 498.898 681.94 498.584 681.743 498.243C681.546 497.902 681.524 497.559 681.676 497.215C681.835 496.866 682.168 496.545 682.676 496.252C683.191 495.955 683.746 495.763 684.343 495.675C684.934 495.583 685.531 495.601 686.134 495.73C686.738 495.851 687.312 496.069 687.859 496.384L688.144 496.549L684.467 498.672C684.747 498.797 685.026 498.881 685.305 498.925C685.585 498.962 685.858 498.962 686.125 498.925C686.391 498.881 686.636 498.795 686.858 498.667C687.138 498.505 687.316 498.34 687.392 498.172C687.468 497.996 687.455 497.82 687.354 497.644L688.611 496.918C688.948 497.303 689.056 497.702 688.935 498.117C688.814 498.524 688.455 498.899 687.859 499.244ZM685.953 496.78C685.547 496.619 685.147 496.542 684.753 496.549C684.353 496.553 683.994 496.646 683.676 496.83C683.353 497.017 683.187 497.226 683.181 497.457C683.168 497.684 683.302 497.915 683.581 498.15L685.953 496.78ZM687.916 494.492L687.059 494.987L686.078 494.42L686.935 493.925L686.325 493.573C685.989 493.379 685.782 493.194 685.706 493.018C685.636 492.838 685.668 492.669 685.801 492.512C685.928 492.35 686.147 492.18 686.459 492L687.564 491.362L688.545 491.929L687.773 492.374C687.602 492.473 687.516 492.563 687.516 492.644C687.516 492.724 687.595 492.811 687.754 492.902L688.231 493.177L689.469 492.462L690.45 493.029L689.212 493.744L693.184 496.037L691.889 496.785L687.916 494.492ZM697.933 493.428C697.425 493.721 696.869 493.913 696.266 494.005C695.662 494.089 695.069 494.077 694.484 493.967C693.894 493.853 693.351 493.653 692.855 493.367C692.36 493.081 692.014 492.768 691.817 492.427C691.62 492.086 691.598 491.743 691.75 491.398C691.909 491.05 692.243 490.729 692.751 490.436C693.265 490.139 693.821 489.946 694.418 489.858C695.008 489.766 695.605 489.785 696.209 489.913C696.812 490.034 697.387 490.252 697.933 490.568L698.219 490.733L694.542 492.856C694.821 492.98 695.1 493.065 695.38 493.109C695.659 493.145 695.932 493.145 696.199 493.109C696.466 493.065 696.71 492.978 696.933 492.85C697.212 492.689 697.39 492.524 697.466 492.355C697.542 492.179 697.53 492.003 697.428 491.827L698.685 491.101C699.022 491.486 699.13 491.886 699.009 492.3C698.889 492.707 698.53 493.083 697.933 493.428ZM696.028 490.964C695.621 490.802 695.221 490.725 694.827 490.733C694.427 490.736 694.068 490.83 693.751 491.013C693.427 491.2 693.262 491.409 693.256 491.64C693.243 491.867 693.376 492.098 693.656 492.333L696.028 490.964ZM696.505 488.4L697.762 487.674L698.619 488.169C698.454 487.891 698.426 487.639 698.534 487.416C698.635 487.188 698.851 486.979 699.181 486.789L699.581 486.558L700.772 487.245L700.315 487.509C700.023 487.678 699.823 487.848 699.715 488.021C699.601 488.189 699.597 488.371 699.705 488.565C699.813 488.752 700.051 488.952 700.42 489.165L702.754 490.512L701.458 491.26L696.505 488.4Z" fill="#E9725A"/>
|
|
126
|
+
<path d="M443.373 649.39L445.983 647.883C446.752 647.44 447.542 647.155 448.355 647.031C449.168 646.899 449.959 646.908 450.727 647.058C451.496 647.209 452.213 647.476 452.88 647.861C453.541 648.243 454.001 648.655 454.261 649.099C454.522 649.542 454.541 650.001 454.319 650.474C454.103 650.943 453.61 651.4 452.842 651.843L450.232 653.35L443.373 649.39ZM451.642 651.15C452.105 650.883 452.391 650.608 452.499 650.325C452.607 650.036 452.566 649.755 452.375 649.484C452.178 649.209 451.864 648.947 451.432 648.697C450.994 648.444 450.54 648.263 450.07 648.153C449.594 648.039 449.108 648.015 448.612 648.081C448.123 648.144 447.647 648.309 447.183 648.576L445.964 649.28L450.422 651.854L451.642 651.15ZM459.859 647.924C459.35 648.218 458.795 648.41 458.191 648.502C457.588 648.586 456.994 648.573 456.41 648.463C455.819 648.35 455.276 648.15 454.781 647.864C454.286 647.578 453.94 647.264 453.743 646.923C453.546 646.582 453.524 646.239 453.676 645.895C453.835 645.546 454.168 645.226 454.676 644.932C455.191 644.635 455.746 644.443 456.343 644.355C456.934 644.263 457.531 644.281 458.134 644.41C458.738 644.531 459.312 644.749 459.859 645.064L460.144 645.229L456.467 647.352C456.747 647.477 457.026 647.561 457.305 647.605C457.585 647.642 457.858 647.642 458.125 647.605C458.391 647.561 458.636 647.475 458.858 647.347C459.138 647.185 459.316 647.02 459.392 646.852C459.468 646.676 459.455 646.5 459.354 646.324L460.611 645.598C460.948 645.983 461.056 646.382 460.935 646.797C460.814 647.204 460.455 647.58 459.859 647.924ZM457.953 645.46C457.547 645.299 457.147 645.222 456.753 645.229C456.353 645.233 455.994 645.326 455.676 645.51C455.353 645.697 455.187 645.906 455.181 646.137C455.168 646.364 455.302 646.595 455.581 646.83L457.953 645.46ZM459.916 643.172L459.059 643.667L458.078 643.1L458.935 642.605L458.325 642.253C457.989 642.059 457.782 641.874 457.706 641.698C457.636 641.518 457.668 641.35 457.801 641.192C457.928 641.031 458.147 640.86 458.459 640.68L459.564 640.042L460.545 640.609L459.773 641.054C459.602 641.153 459.516 641.243 459.516 641.324C459.516 641.405 459.595 641.491 459.754 641.582L460.231 641.857L461.469 641.142L462.45 641.709L461.212 642.424L465.184 644.717L463.889 645.465L459.916 643.172ZM469.933 642.108C469.425 642.401 468.869 642.594 468.266 642.685C467.662 642.77 467.069 642.757 466.484 642.647C465.894 642.533 465.351 642.333 464.855 642.047C464.36 641.761 464.014 641.448 463.817 641.107C463.62 640.766 463.598 640.423 463.75 640.078C463.909 639.73 464.243 639.409 464.751 639.116C465.265 638.819 465.821 638.626 466.418 638.538C467.008 638.447 467.605 638.465 468.209 638.593C468.812 638.714 469.387 638.932 469.933 639.248L470.219 639.413L466.542 641.536C466.821 641.66 467.1 641.745 467.38 641.789C467.659 641.825 467.932 641.825 468.199 641.789C468.466 641.745 468.71 641.659 468.933 641.53C469.212 641.369 469.39 641.204 469.466 641.035C469.542 640.859 469.53 640.683 469.428 640.507L470.685 639.781C471.022 640.166 471.13 640.566 471.009 640.98C470.889 641.387 470.53 641.763 469.933 642.108ZM468.028 639.644C467.621 639.482 467.221 639.405 466.827 639.413C466.427 639.416 466.068 639.51 465.751 639.693C465.427 639.88 465.262 640.089 465.256 640.32C465.243 640.548 465.376 640.779 465.656 641.013L468.028 639.644ZM468.505 637.08L469.762 636.354L470.619 636.849C470.454 636.571 470.426 636.32 470.534 636.096C470.635 635.869 470.851 635.66 471.181 635.469L471.581 635.238L472.772 635.925L472.315 636.189C472.023 636.358 471.823 636.529 471.715 636.701C471.601 636.87 471.597 637.051 471.705 637.245C471.813 637.432 472.051 637.632 472.42 637.845L474.754 639.192L473.458 639.94L468.505 637.08ZM472.746 634.631L474.004 633.905L474.861 634.4C474.696 634.122 474.667 633.871 474.775 633.647C474.877 633.42 475.093 633.211 475.423 633.02L475.823 632.789L477.014 633.476L476.557 633.74C476.265 633.909 476.065 634.08 475.957 634.252C475.842 634.421 475.839 634.602 475.947 634.796C476.055 634.983 476.293 635.183 476.662 635.396L478.996 636.743L477.7 637.491L472.746 634.631ZM483.609 634.212C483.063 634.527 482.494 634.705 481.904 634.745C481.307 634.782 480.77 634.663 480.294 634.388C480.002 634.219 479.824 634.04 479.76 633.849C479.697 633.651 479.741 633.435 479.894 633.2C480.052 632.962 480.319 632.69 480.694 632.386L481.856 631.429L481.599 631.28C481.377 631.152 481.145 631.095 480.903 631.11C480.662 631.125 480.389 631.22 480.084 631.396C479.798 631.561 479.627 631.73 479.57 631.902C479.519 632.071 479.611 632.226 479.846 632.369L478.56 633.112C478.007 632.786 477.795 632.421 477.922 632.017C478.049 631.607 478.439 631.213 479.093 630.835C479.798 630.428 480.459 630.197 481.075 630.142C481.697 630.083 482.243 630.19 482.713 630.461L486.295 632.529L485.066 633.238L484.514 632.919C484.546 633.172 484.485 633.405 484.333 633.618C484.18 633.823 483.939 634.021 483.609 634.212ZM482.999 633.486C483.215 633.361 483.374 633.226 483.475 633.079C483.583 632.929 483.612 632.773 483.561 632.611C483.51 632.45 483.361 632.298 483.113 632.155L482.694 631.913L481.77 632.721C481.523 632.93 481.38 633.101 481.342 633.233C481.297 633.361 481.373 633.482 481.57 633.596C481.761 633.706 481.98 633.755 482.228 633.744C482.475 633.726 482.732 633.64 482.999 633.486ZM480.683 627.849L481.978 627.101L488.837 631.061L487.542 631.809L480.683 627.849ZM462.073 657.646C461.565 657.939 461.009 658.132 460.406 658.223C459.803 658.308 459.209 658.295 458.624 658.185C458.034 658.071 457.491 657.871 456.995 657.585C456.5 657.299 456.154 656.986 455.957 656.645C455.76 656.304 455.738 655.961 455.89 655.616C456.049 655.268 456.383 654.947 456.891 654.654C457.405 654.357 457.961 654.164 458.558 654.076C459.148 653.985 459.745 654.003 460.349 654.131C460.952 654.252 461.527 654.47 462.073 654.786L462.359 654.951L458.682 657.074C458.961 657.198 459.241 657.283 459.52 657.327C459.799 657.363 460.072 657.363 460.339 657.327C460.606 657.283 460.85 657.197 461.073 657.068C461.352 656.907 461.53 656.742 461.606 656.573C461.682 656.397 461.67 656.221 461.568 656.045L462.826 655.319C463.162 655.704 463.27 656.104 463.149 656.518C463.029 656.925 462.67 657.301 462.073 657.646ZM460.168 655.182C459.761 655.02 459.361 654.943 458.967 654.951C458.567 654.954 458.209 655.048 457.891 655.231C457.567 655.418 457.402 655.627 457.396 655.858C457.383 656.086 457.516 656.317 457.796 656.551L460.168 655.182ZM460.197 652.877L461.597 652.068L466.541 653.515L464.017 650.671L465.408 649.868L468.504 653.801L467.018 654.659L460.197 652.877ZM473.673 650.948C473.165 651.242 472.609 651.434 472.006 651.526C471.403 651.61 470.809 651.597 470.225 651.487C469.634 651.374 469.091 651.174 468.596 650.888C468.1 650.602 467.754 650.288 467.557 649.947C467.36 649.606 467.338 649.264 467.491 648.919C467.649 648.571 467.983 648.25 468.491 647.956C469.005 647.659 469.561 647.467 470.158 647.379C470.749 647.287 471.346 647.306 471.949 647.434C472.552 647.555 473.127 647.773 473.673 648.088L473.959 648.253L470.282 650.376C470.561 650.501 470.841 650.585 471.12 650.629C471.399 650.666 471.673 650.666 471.939 650.629C472.206 650.585 472.451 650.499 472.673 650.371C472.952 650.21 473.13 650.045 473.206 649.876C473.283 649.7 473.27 649.524 473.168 649.348L474.426 648.622C474.762 649.007 474.87 649.407 474.75 649.821C474.629 650.228 474.27 650.604 473.673 650.948ZM471.768 648.484C471.361 648.323 470.961 648.246 470.568 648.253C470.167 648.257 469.809 648.351 469.491 648.534C469.167 648.721 469.002 648.93 468.996 649.161C468.983 649.388 469.116 649.619 469.396 649.854L471.768 648.484ZM472.245 645.921L473.502 645.195L474.179 645.586C474.121 645.34 474.153 645.102 474.274 644.871C474.388 644.636 474.614 644.421 474.95 644.227C475.325 644.011 475.722 643.873 476.141 643.815C476.56 643.749 476.986 643.763 477.417 643.859C477.856 643.95 478.281 644.115 478.694 644.354L481.78 646.136L480.494 646.878L477.56 645.184C477.249 645.004 476.932 644.905 476.608 644.887C476.277 644.865 475.954 644.946 475.636 645.129C475.458 645.232 475.328 645.355 475.245 645.498C475.163 645.633 475.157 645.787 475.226 645.96C475.303 646.128 475.487 646.297 475.779 646.466L478.494 648.033L477.198 648.781L472.245 645.921ZM485.086 644.227C484.775 644.407 484.482 644.535 484.209 644.612C483.93 644.686 483.635 644.702 483.323 644.662C483.019 644.618 482.695 644.497 482.352 644.299L479.684 642.759L478.827 643.254L477.846 642.687L478.703 642.192L477.179 641.312L478.474 640.564L479.999 641.444L481.237 640.729L482.218 641.296L480.98 642.011L483.514 643.474C483.673 643.565 483.825 643.613 483.971 643.617C484.111 643.617 484.266 643.567 484.438 643.468L485.21 643.023L486.191 643.589L485.086 644.227ZM489.406 641.865C488.701 642.272 488.009 642.51 487.329 642.58C486.656 642.646 485.999 642.516 485.357 642.19L486.615 641.464C486.951 641.621 487.272 641.685 487.577 641.656C487.888 641.623 488.212 641.509 488.548 641.315C488.821 641.157 488.993 641.003 489.063 640.853C489.126 640.699 489.072 640.573 488.901 640.474C488.78 640.404 488.66 640.364 488.539 640.353C488.418 640.342 488.247 640.367 488.024 640.43C487.802 640.485 487.497 640.595 487.11 640.76C486.513 641.002 485.999 641.167 485.567 641.255C485.135 641.343 484.757 641.366 484.433 641.326C484.115 641.282 483.814 641.178 483.528 641.013C483.058 640.741 482.88 640.419 482.995 640.045C483.109 639.671 483.487 639.298 484.128 638.928C484.839 638.517 485.535 638.292 486.214 638.252C486.888 638.208 487.494 638.334 488.034 638.631L486.834 639.324C486.529 639.155 486.227 639.091 485.929 639.132C485.63 639.172 485.332 639.278 485.033 639.451C484.786 639.594 484.63 639.738 484.566 639.885C484.509 640.028 484.563 640.147 484.728 640.243C484.849 640.312 484.979 640.351 485.119 640.358C485.259 640.358 485.44 640.327 485.662 640.265C485.884 640.195 486.186 640.079 486.567 639.918C487.151 639.676 487.656 639.513 488.082 639.429C488.501 639.341 488.872 639.32 489.196 639.368C489.514 639.412 489.815 639.517 490.101 639.682C490.59 639.964 490.765 640.303 490.625 640.699C490.485 641.088 490.079 641.476 489.406 641.865Z" fill="#E9725A"/>
|
|
127
|
+
<path d="M922.732 529.21L924.266 528.324L932.154 529.413L927.267 526.592L928.61 525.816L935.469 529.776L933.935 530.662L926.047 529.573L930.934 532.394L929.591 533.17L922.732 529.21ZM939.311 527.69C938.803 527.984 938.247 528.176 937.644 528.268C937.04 528.352 936.447 528.339 935.862 528.229C935.272 528.116 934.729 527.916 934.233 527.63C933.738 527.344 933.392 527.03 933.195 526.689C932.998 526.348 932.976 526.005 933.128 525.661C933.287 525.312 933.621 524.992 934.129 524.698C934.643 524.401 935.199 524.209 935.796 524.121C936.386 524.029 936.983 524.047 937.587 524.176C938.19 524.297 938.765 524.515 939.311 524.83L939.597 524.995L935.92 527.118C936.199 527.243 936.478 527.327 936.758 527.371C937.037 527.408 937.31 527.408 937.577 527.371C937.844 527.327 938.088 527.241 938.311 527.113C938.59 526.951 938.768 526.786 938.844 526.618C938.92 526.442 938.908 526.266 938.806 526.09L940.063 525.364C940.4 525.749 940.508 526.148 940.387 526.563C940.267 526.97 939.908 527.346 939.311 527.69ZM937.406 525.226C936.999 525.065 936.599 524.988 936.205 524.995C935.805 524.999 935.446 525.092 935.129 525.276C934.805 525.463 934.64 525.672 934.634 525.903C934.621 526.13 934.754 526.361 935.034 526.596L937.406 525.226ZM937.435 522.922L938.835 522.113L943.303 523.461L940.855 520.947L942.084 520.238L946.437 521.651L944.103 519.072L945.504 518.263L948.733 522.119L947.38 522.9L943.093 521.525L945.465 524.005L944.113 524.786L937.435 522.922ZM950.086 514.858L947.924 516.107L946.676 515.386L952.411 512.075L953.659 512.796L951.496 514.044L957.107 517.284L955.697 518.098L950.086 514.858ZM953.429 511.487L954.724 510.739L957.258 512.202C957.214 511.964 957.252 511.733 957.372 511.509C957.493 511.286 957.715 511.08 958.039 510.893C958.414 510.677 958.811 510.54 959.23 510.481C959.649 510.415 960.075 510.43 960.507 510.525C960.945 510.617 961.37 510.782 961.783 511.02L964.87 512.802L963.584 513.544L960.649 511.85C960.338 511.671 960.021 511.572 959.697 511.553C959.367 511.531 959.043 511.612 958.725 511.795C958.547 511.898 958.417 512.021 958.335 512.164C958.252 512.3 958.246 512.454 958.316 512.626C958.392 512.795 958.576 512.963 958.868 513.132L961.583 514.699L960.287 515.447L953.429 511.487ZM968.68 510.734C968.159 511.035 967.594 511.233 966.984 511.328C966.374 511.416 965.774 511.407 965.184 511.301C964.593 511.187 964.05 510.987 963.555 510.701C963.059 510.415 962.713 510.102 962.516 509.761C962.326 509.416 962.31 509.07 962.469 508.721C962.634 508.369 962.977 508.043 963.497 507.742C964.025 507.438 964.59 507.24 965.193 507.148C965.803 507.053 966.403 507.062 966.994 507.176C967.584 507.289 968.127 507.489 968.623 507.775C969.118 508.061 969.464 508.375 969.661 508.716C969.851 509.053 969.867 509.4 969.709 509.755C969.55 510.104 969.207 510.43 968.68 510.734ZM967.613 510.118C967.892 509.957 968.057 509.788 968.108 509.612C968.165 509.433 968.124 509.255 967.984 509.079C967.845 508.895 967.619 508.714 967.308 508.534C966.997 508.355 966.682 508.224 966.365 508.144C966.054 508.059 965.746 508.036 965.441 508.072C965.136 508.102 964.844 508.197 964.564 508.358C964.291 508.516 964.126 508.685 964.069 508.864C964.012 509.037 964.053 509.214 964.193 509.398C964.333 509.581 964.558 509.763 964.869 509.942C965.18 510.122 965.495 510.252 965.812 510.333C966.124 510.41 966.432 510.434 966.736 510.404C967.048 510.371 967.34 510.276 967.613 510.118ZM976.842 505.89L975.584 506.616L974.908 506.225C974.965 506.471 974.937 506.711 974.822 506.946C974.702 507.177 974.473 507.389 974.136 507.584C973.762 507.8 973.365 507.941 972.946 508.007C972.526 508.066 972.098 508.049 971.66 507.958C971.228 507.862 970.805 507.696 970.393 507.457L967.306 505.675L968.592 504.933L971.526 506.627C971.837 506.806 972.158 506.907 972.488 506.929C972.812 506.948 973.133 506.865 973.45 506.682C973.628 506.579 973.759 506.46 973.841 506.324C973.924 506.181 973.927 506.025 973.851 505.857C973.781 505.684 973.6 505.514 973.308 505.345L970.593 503.778L971.888 503.03L976.842 505.89ZM982.481 504.966C981.782 505.369 981.084 505.593 980.385 505.637C979.687 505.681 979.045 505.556 978.461 505.263L979.737 504.526C980.03 504.658 980.325 504.708 980.623 504.675C980.928 504.638 981.23 504.533 981.528 504.361C981.878 504.159 982.078 503.945 982.129 503.718C982.192 503.49 982.008 503.252 981.576 503.003L980.976 502.656C981.027 502.883 980.985 503.105 980.852 503.322C980.719 503.531 980.487 503.73 980.157 503.921C979.693 504.189 979.188 504.356 978.642 504.422C978.096 504.488 977.55 504.462 977.003 504.345C976.451 504.224 975.933 504.024 975.451 503.745C974.962 503.463 974.616 503.164 974.412 502.849C974.203 502.53 974.155 502.212 974.269 501.897C974.384 501.582 974.673 501.29 975.136 501.023C975.479 500.825 975.841 500.689 976.222 500.616C976.61 500.539 977.01 500.52 977.423 500.561L976.794 500.198L978.051 499.472L982.872 502.255C983.348 502.53 983.634 502.823 983.729 503.135C983.831 503.45 983.77 503.763 983.548 504.075C983.326 504.387 982.97 504.684 982.481 504.966ZM979.461 503.146C979.728 502.992 979.89 502.828 979.947 502.656C979.998 502.48 979.96 502.304 979.833 502.128C979.699 501.948 979.48 501.771 979.175 501.595C978.871 501.419 978.563 501.292 978.251 501.215C977.94 501.138 977.635 501.116 977.337 501.149C977.032 501.178 976.746 501.27 976.479 501.424C976.206 501.582 976.044 501.749 975.994 501.925C975.936 502.097 975.975 502.273 976.108 502.453C976.248 502.629 976.47 502.805 976.775 502.981C977.08 503.157 977.384 503.285 977.689 503.366C977.994 503.439 978.299 503.461 978.604 503.432C978.902 503.399 979.188 503.303 979.461 503.146ZM977.513 497.583L978.808 496.835L981.342 498.298C981.298 498.059 981.336 497.828 981.456 497.605C981.577 497.381 981.799 497.176 982.123 496.989C982.498 496.772 982.895 496.635 983.314 496.576C983.733 496.51 984.159 496.525 984.591 496.62C985.029 496.712 985.454 496.877 985.867 497.115L988.954 498.897L987.668 499.64L984.733 497.946C984.422 497.766 984.105 497.667 983.781 497.649C983.451 497.627 983.127 497.707 982.809 497.891C982.631 497.993 982.501 498.116 982.419 498.259C982.336 498.395 982.33 498.549 982.4 498.721C982.476 498.89 982.66 499.058 982.952 499.227L985.667 500.795L984.371 501.543L977.513 497.583ZM992.259 496.989C991.948 497.168 991.656 497.297 991.382 497.374C991.103 497.447 990.808 497.464 990.497 497.423C990.192 497.379 989.868 497.258 989.525 497.06L986.857 495.52L986 496.015L985.019 495.449L985.876 494.954L984.352 494.074L985.648 493.326L987.172 494.206L988.41 493.491L989.391 494.057L988.153 494.772L990.687 496.235C990.846 496.327 990.998 496.375 991.144 496.378C991.284 496.378 991.44 496.329 991.611 496.23L992.383 495.784L993.364 496.351L992.259 496.989Z" fill="#465358"/>
|
|
128
|
+
<path d="M1151.93 577.41L1157.03 580.352L1157.03 581.793L1153.32 579.654L1153.32 581.392L1156.75 583.372L1156.75 584.747L1153.32 582.767L1153.32 584.692L1157.01 586.821L1157.01 588.262L1151.93 585.33L1151.93 577.41ZM1159.72 589.829C1159.41 589.65 1159.16 589.461 1158.95 589.263C1158.75 589.057 1158.59 588.81 1158.47 588.52C1158.35 588.234 1158.29 587.893 1158.29 587.497L1158.29 584.417L1157.44 583.922L1157.44 582.789L1158.29 583.284L1158.29 581.524L1159.59 582.272L1159.59 584.032L1160.83 584.747L1160.83 585.88L1159.59 585.165L1159.59 588.091C1159.59 588.275 1159.63 588.43 1159.7 588.559C1159.77 588.68 1159.89 588.79 1160.06 588.889L1160.83 589.334L1160.83 590.467L1159.72 589.829ZM1161.57 582.973L1162.86 583.721L1162.86 586.647C1163.05 586.49 1163.27 586.407 1163.52 586.4C1163.77 586.393 1164.06 586.482 1164.39 586.669C1164.76 586.886 1165.08 587.161 1165.34 587.494C1165.61 587.824 1165.81 588.2 1165.94 588.622C1166.08 589.047 1166.15 589.498 1166.15 589.975L1166.15 593.539L1164.86 592.796L1164.86 589.408C1164.86 589.049 1164.79 588.725 1164.64 588.435C1164.5 588.138 1164.27 587.898 1163.95 587.714C1163.77 587.612 1163.6 587.56 1163.43 587.56C1163.28 587.557 1163.14 587.628 1163.02 587.775C1162.92 587.925 1162.86 588.169 1162.86 588.506L1162.86 591.641L1161.57 590.893L1161.57 582.973ZM1167.13 588.385L1168.43 589.133L1168.43 594.853L1167.13 594.105L1167.13 588.385ZM1167.13 586.185L1168.43 586.933L1168.43 588.264L1167.13 587.516L1167.13 586.185ZM1171.69 596.868C1171.18 596.574 1170.74 596.191 1170.36 595.718C1169.99 595.242 1169.71 594.723 1169.51 594.162C1169.32 593.593 1169.22 593.023 1169.22 592.451C1169.22 591.879 1169.32 591.423 1169.51 591.082C1169.71 590.741 1169.99 590.548 1170.36 590.504C1170.74 590.464 1171.18 590.59 1171.69 590.884C1172.37 591.276 1172.91 591.786 1173.31 592.413C1173.71 593.04 1173.94 593.713 1174.02 594.431L1172.72 593.683C1172.67 593.35 1172.55 593.045 1172.36 592.77C1172.18 592.492 1171.96 592.273 1171.69 592.116C1171.43 591.969 1171.22 591.92 1171.05 591.967C1170.88 592.008 1170.75 592.134 1170.66 592.347C1170.57 592.563 1170.53 592.851 1170.53 593.21C1170.53 593.57 1170.57 593.905 1170.66 594.217C1170.75 594.525 1170.88 594.802 1171.05 595.047C1171.22 595.293 1171.43 595.489 1171.69 595.636C1171.97 595.801 1172.2 595.843 1172.38 595.762C1172.57 595.685 1172.68 595.491 1172.72 595.179L1174.02 595.927C1173.94 596.58 1173.7 596.998 1173.3 597.181C1172.89 597.357 1172.35 597.253 1171.69 596.868ZM1176.7 599.764C1176 599.357 1175.45 598.877 1175.05 598.323C1174.65 597.773 1174.44 597.139 1174.4 596.42L1175.66 597.146C1175.69 597.516 1175.79 597.826 1175.97 598.076C1176.15 598.329 1176.41 598.552 1176.75 598.747C1177.02 598.904 1177.24 598.976 1177.41 598.961C1177.57 598.939 1177.66 598.829 1177.66 598.631C1177.66 598.492 1177.63 598.367 1177.58 598.257C1177.53 598.147 1177.42 598.011 1177.26 597.85C1177.1 597.685 1176.85 597.476 1176.51 597.223C1176 596.827 1175.6 596.464 1175.31 596.134C1175.02 595.804 1174.81 595.489 1174.68 595.188C1174.56 594.891 1174.5 594.578 1174.5 594.248C1174.5 593.705 1174.69 593.39 1175.07 593.302C1175.46 593.214 1175.97 593.355 1176.61 593.725C1177.32 594.136 1177.86 594.625 1178.24 595.194C1178.61 595.755 1178.81 596.343 1178.82 596.959L1177.62 596.266C1177.61 595.918 1177.52 595.624 1177.33 595.386C1177.15 595.148 1176.91 594.942 1176.61 594.77C1176.36 594.627 1176.16 594.565 1176 594.583C1175.85 594.605 1175.77 594.711 1175.77 594.902C1175.77 595.041 1175.8 595.173 1175.86 595.298C1175.93 595.419 1176.05 595.56 1176.22 595.722C1176.39 595.879 1176.64 596.083 1176.97 596.332C1177.47 596.717 1177.87 597.073 1178.15 597.399C1178.44 597.718 1178.64 598.03 1178.76 598.334C1178.88 598.631 1178.94 598.945 1178.94 599.275C1178.94 599.839 1178.74 600.16 1178.32 600.237C1177.92 600.31 1177.38 600.153 1176.7 599.764Z" fill="#5F52FF"/>
|
|
129
|
+
<path d="M1056.92 714.612C1056.18 714.183 1055.61 713.614 1055.21 712.906C1054.81 712.195 1054.62 711.425 1054.62 710.596L1054.62 710.156L1055.96 710.932L1055.96 711.372C1055.96 711.797 1056.04 712.164 1056.19 712.472C1056.34 712.78 1056.59 713.031 1056.92 713.226C1057.26 713.42 1057.5 713.451 1057.66 713.319C1057.81 713.187 1057.88 712.908 1057.88 712.483L1057.88 707.115L1059.27 707.918L1059.27 713.286C1059.27 714.107 1059.07 714.641 1058.66 714.887C1058.25 715.136 1057.67 715.044 1056.92 714.612ZM1062.57 717.875C1062.05 717.575 1061.6 717.184 1061.21 716.704C1060.83 716.22 1060.54 715.695 1060.34 715.131C1060.14 714.562 1060.04 713.992 1060.04 713.42C1060.04 712.848 1060.14 712.392 1060.34 712.051C1060.54 711.713 1060.83 711.526 1061.21 711.49C1061.6 711.457 1062.05 711.591 1062.57 711.891C1063.1 712.196 1063.56 712.586 1063.94 713.063C1064.32 713.543 1064.62 714.067 1064.81 714.636C1065.01 715.204 1065.11 715.774 1065.11 716.346C1065.11 716.918 1065.01 717.375 1064.81 717.716C1064.62 718.049 1064.32 718.236 1063.94 718.277C1063.56 718.313 1063.1 718.18 1062.57 717.875ZM1062.57 716.643C1062.85 716.805 1063.08 716.863 1063.26 716.819C1063.44 716.779 1063.58 716.654 1063.66 716.445C1063.75 716.233 1063.79 715.947 1063.79 715.587C1063.79 715.228 1063.75 714.891 1063.66 714.575C1063.58 714.264 1063.44 713.985 1063.26 713.739C1063.08 713.49 1062.85 713.285 1062.57 713.123C1062.3 712.966 1062.07 712.907 1061.89 712.947C1061.71 712.984 1061.58 713.109 1061.49 713.321C1061.4 713.534 1061.36 713.82 1061.36 714.179C1061.36 714.539 1061.4 714.876 1061.49 715.191C1061.58 715.499 1061.71 715.778 1061.89 716.027C1062.07 716.28 1062.3 716.486 1062.57 716.643ZM1068.69 721.405C1068.34 721.203 1068.04 720.952 1067.78 720.652C1067.53 720.351 1067.32 720.008 1067.15 719.623L1067.15 720.382L1065.89 719.656L1065.89 711.736L1067.18 712.484L1067.18 715.366C1067.36 715.201 1067.56 715.12 1067.81 715.124C1068.07 715.131 1068.36 715.23 1068.69 715.421C1069.15 715.689 1069.55 716.046 1069.88 716.494C1070.21 716.941 1070.46 717.441 1070.63 717.995C1070.8 718.541 1070.89 719.104 1070.89 719.684C1070.89 720.256 1070.8 720.719 1070.63 721.075C1070.46 721.423 1070.21 721.634 1069.88 721.708C1069.55 721.774 1069.15 721.673 1068.69 721.405ZM1068.36 719.986C1068.64 720.144 1068.86 720.201 1069.04 720.157C1069.22 720.113 1069.35 719.986 1069.43 719.777C1069.52 719.564 1069.57 719.278 1069.57 718.919C1069.57 718.56 1069.52 718.222 1069.43 717.907C1069.35 717.595 1069.22 717.319 1069.04 717.077C1068.86 716.827 1068.64 716.624 1068.36 716.466C1068.1 716.312 1067.88 716.257 1067.7 716.301C1067.52 716.338 1067.39 716.462 1067.3 716.675C1067.21 716.888 1067.16 717.174 1067.16 717.533C1067.16 717.892 1067.21 718.23 1067.3 718.545C1067.39 718.853 1067.52 719.132 1067.7 719.381C1067.88 719.63 1068.1 719.832 1068.36 719.986ZM1054.93 716.41L1057.86 718.098C1058.4 718.414 1058.87 718.795 1059.25 719.242C1059.63 719.682 1059.91 720.152 1060.1 720.651C1060.3 721.153 1060.4 721.653 1060.4 722.152C1060.4 722.651 1060.3 723.041 1060.1 723.324C1059.91 723.602 1059.63 723.745 1059.25 723.752C1058.87 723.752 1058.4 723.595 1057.86 723.279L1056.32 722.394L1056.32 725.133L1054.93 724.33L1054.93 716.41ZM1057.78 721.849C1058.19 722.084 1058.49 722.157 1058.69 722.069C1058.9 721.981 1059 721.739 1059 721.343C1059 720.955 1058.9 720.599 1058.69 720.276C1058.49 719.954 1058.19 719.675 1057.78 719.44L1056.32 718.599L1056.32 721.008L1057.78 721.849ZM1061.16 722.208L1062.42 722.934L1062.42 723.924C1062.58 723.641 1062.78 723.491 1063.03 723.473C1063.28 723.447 1063.57 723.529 1063.9 723.72L1064.3 723.951L1064.3 725.326L1063.84 725.062C1063.55 724.893 1063.3 724.805 1063.1 724.798C1062.89 724.783 1062.73 724.871 1062.62 725.062C1062.51 725.249 1062.46 725.555 1062.46 725.981L1062.46 728.676L1061.16 727.928L1061.16 722.208ZM1067.35 731.631C1066.83 731.33 1066.37 730.939 1065.99 730.459C1065.6 729.975 1065.31 729.451 1065.11 728.886C1064.91 728.318 1064.81 727.748 1064.81 727.176C1064.81 726.604 1064.91 726.147 1065.11 725.806C1065.31 725.469 1065.6 725.282 1065.99 725.245C1066.37 725.212 1066.83 725.346 1067.35 725.647C1067.87 725.951 1068.33 726.341 1068.71 726.818C1069.1 727.298 1069.39 727.823 1069.59 728.391C1069.78 728.959 1069.88 729.53 1069.88 730.102C1069.88 730.674 1069.78 731.13 1069.59 731.471C1069.39 731.805 1069.1 731.992 1068.71 732.032C1068.33 732.069 1067.87 731.935 1067.35 731.631ZM1067.35 730.399C1067.63 730.56 1067.86 730.619 1068.03 730.575C1068.22 730.534 1068.35 730.41 1068.43 730.201C1068.52 729.988 1068.57 729.702 1068.57 729.343C1068.57 728.983 1068.52 728.646 1068.43 728.331C1068.35 728.019 1068.22 727.74 1068.03 727.495C1067.86 727.245 1067.63 727.04 1067.35 726.879C1067.07 726.721 1066.85 726.662 1066.66 726.703C1066.48 726.739 1066.35 726.864 1066.26 727.077C1066.17 727.289 1066.13 727.575 1066.13 727.935C1066.13 728.294 1066.17 728.631 1066.26 728.947C1066.35 729.255 1066.48 729.533 1066.66 729.783C1066.85 730.036 1067.07 730.241 1067.35 730.399ZM1071.17 729.116L1070.31 728.621L1070.31 727.488L1071.17 727.983L1071.17 727.279C1071.17 726.89 1071.22 726.619 1071.34 726.465C1071.46 726.315 1071.62 726.258 1071.82 726.294C1072.03 726.324 1072.28 726.428 1072.59 726.608L1073.7 727.246L1073.7 728.379L1072.93 727.933C1072.76 727.834 1072.64 727.805 1072.57 727.845C1072.5 727.886 1072.46 727.998 1072.46 728.181L1072.46 728.731L1073.7 729.446L1073.7 730.579L1072.46 729.864L1072.46 734.451L1071.17 733.703L1071.17 729.116ZM1074.43 729.867L1075.72 730.615L1075.72 736.335L1074.43 735.587L1074.43 729.867ZM1074.43 727.667L1075.72 728.415L1075.72 729.746L1074.43 728.998L1074.43 727.667ZM1076.71 728.983L1078 729.731L1078 737.651L1076.71 736.903L1076.71 728.983ZM1081.27 739.67C1080.76 739.377 1080.32 738.992 1079.94 738.515C1079.56 738.035 1079.28 737.514 1079.08 736.953C1078.88 736.385 1078.79 735.815 1078.79 735.243C1078.79 734.671 1078.88 734.214 1079.08 733.873C1079.28 733.532 1079.56 733.342 1079.94 733.301C1080.32 733.265 1080.76 733.393 1081.27 733.686C1081.79 733.983 1082.23 734.368 1082.61 734.841C1082.98 735.307 1083.26 735.833 1083.45 736.42C1083.65 737.003 1083.75 737.61 1083.75 738.24L1083.75 738.57L1080.07 736.447C1080.1 736.752 1080.17 737.036 1080.27 737.3C1080.38 737.56 1080.52 737.797 1080.68 738.009C1080.85 738.218 1081.05 738.387 1081.27 738.515C1081.55 738.677 1081.78 738.748 1081.97 738.73C1082.16 738.708 1082.3 738.609 1082.41 738.433L1083.66 739.159C1083.5 739.643 1083.21 739.936 1082.79 740.039C1082.37 740.138 1081.87 740.015 1081.27 739.67ZM1082.45 736.788C1082.39 736.356 1082.26 735.971 1082.05 735.633C1081.85 735.289 1081.59 735.025 1081.27 734.841C1080.95 734.654 1080.69 734.616 1080.48 734.726C1080.28 734.829 1080.15 735.06 1080.08 735.419L1082.45 736.788Z" fill="#5F52FF"/>
|
|
130
|
+
<path d="M717.065 577.272C716.347 576.857 715.728 576.32 715.207 575.66C714.693 574.996 714.302 574.276 714.036 573.498C713.775 572.725 713.645 571.96 713.645 571.205C713.645 570.442 713.775 569.828 714.036 569.362C714.302 568.893 714.693 568.627 715.207 568.565C715.728 568.499 716.347 568.673 717.065 569.087C717.789 569.505 718.408 570.046 718.923 570.71C719.443 571.37 719.834 572.087 720.094 572.86C720.361 573.638 720.495 574.404 720.495 575.159C720.495 575.915 720.361 576.527 720.094 576.997C719.834 577.47 719.443 577.739 718.923 577.805C718.408 577.867 717.789 577.69 717.065 577.272ZM717.065 575.842C717.516 576.102 717.888 576.199 718.18 576.133C718.478 576.063 718.697 575.871 718.837 575.556C718.977 575.233 719.047 574.822 719.047 574.323C719.047 573.817 718.977 573.326 718.837 572.85C718.697 572.365 718.478 571.92 718.18 571.513C717.888 571.11 717.516 570.778 717.065 570.517C716.627 570.264 716.259 570.169 715.96 570.231C715.662 570.294 715.442 570.486 715.303 570.809C715.163 571.132 715.093 571.542 715.093 572.041C715.093 572.54 715.163 573.031 715.303 573.515C715.442 573.992 715.662 574.437 715.96 574.851C716.259 575.259 716.627 575.589 717.065 575.842ZM724.079 575.337C724.543 575.605 724.94 575.962 725.27 576.41C725.6 576.857 725.851 577.357 726.023 577.911C726.194 578.457 726.28 579.02 726.28 579.6C726.28 580.172 726.194 580.635 726.023 580.991C725.851 581.339 725.6 581.55 725.27 581.624C724.94 581.69 724.543 581.589 724.079 581.321C723.749 581.13 723.457 580.892 723.203 580.606C722.955 580.316 722.746 579.99 722.574 579.627L722.574 582.52L721.279 581.772L721.279 573.852L722.536 574.578L722.536 575.337C722.707 575.15 722.92 575.053 723.174 575.046C723.428 575.038 723.73 575.135 724.079 575.337ZM723.755 576.382C723.489 576.228 723.266 576.173 723.089 576.217C722.911 576.254 722.777 576.378 722.688 576.591C722.6 576.804 722.555 577.09 722.555 577.449C722.555 577.808 722.6 578.146 722.688 578.461C722.777 578.769 722.911 579.048 723.089 579.297C723.266 579.546 723.489 579.748 723.755 579.902C724.028 580.06 724.254 580.117 724.432 580.073C724.61 580.029 724.74 579.902 724.822 579.693C724.911 579.48 724.956 579.194 724.956 578.835C724.956 578.476 724.911 578.138 724.822 577.823C724.74 577.511 724.61 577.235 724.432 576.993C724.254 576.743 724.028 576.54 723.755 576.382ZM728.99 584.024C728.678 583.844 728.421 583.656 728.218 583.458C728.015 583.252 727.853 583.005 727.732 582.715C727.618 582.429 727.561 582.088 727.561 581.692L727.561 578.612L726.703 578.117L726.703 576.984L727.561 577.479L727.561 575.719L728.856 576.467L728.856 578.227L730.095 578.942L730.095 580.075L728.856 579.36L728.856 582.286C728.856 582.469 728.891 582.625 728.961 582.754C729.031 582.875 729.151 582.985 729.323 583.084L730.095 583.529L730.095 584.662L728.99 584.024ZM730.823 579.363L732.119 580.111L732.119 585.831L730.823 585.083L730.823 579.363ZM730.823 577.163L732.119 577.911L732.119 579.242L730.823 578.494L730.823 577.163ZM735.427 587.873C734.906 587.572 734.452 587.182 734.065 586.701C733.684 586.217 733.392 585.693 733.188 585.128C732.992 584.56 732.893 583.99 732.893 583.418C732.893 582.846 732.992 582.389 733.188 582.048C733.392 581.711 733.684 581.524 734.065 581.487C734.452 581.454 734.906 581.588 735.427 581.889C735.954 582.193 736.408 582.584 736.789 583.06C737.177 583.541 737.469 584.065 737.666 584.633C737.863 585.202 737.961 585.772 737.961 586.344C737.961 586.916 737.863 587.372 737.666 587.713C737.469 588.047 737.177 588.234 736.789 588.274C736.408 588.311 735.954 588.177 735.427 587.873ZM735.427 586.641C735.707 586.802 735.935 586.861 736.113 586.817C736.297 586.776 736.431 586.652 736.513 586.443C736.602 586.23 736.646 585.944 736.646 585.585C736.646 585.225 736.602 584.888 736.513 584.573C736.431 584.261 736.297 583.982 736.113 583.737C735.935 583.487 735.707 583.282 735.427 583.121C735.154 582.963 734.925 582.904 734.741 582.945C734.563 582.981 734.43 583.106 734.341 583.319C734.252 583.531 734.208 583.817 734.208 584.177C734.208 584.536 734.252 584.873 734.341 585.189C734.43 585.497 734.563 585.775 734.741 586.025C734.925 586.278 735.154 586.483 735.427 586.641ZM738.74 583.934L739.998 584.66L739.998 585.441C740.182 585.268 740.404 585.177 740.665 585.166C740.925 585.147 741.223 585.235 741.56 585.43C741.935 585.646 742.252 585.921 742.513 586.255C742.779 586.585 742.979 586.961 743.113 587.382C743.253 587.808 743.322 588.259 743.322 588.735L743.322 592.299L742.036 591.557L742.036 588.169C742.036 587.809 741.963 587.485 741.817 587.195C741.671 586.898 741.439 586.658 741.122 586.475C740.944 586.372 740.773 586.321 740.607 586.321C740.449 586.317 740.312 586.389 740.198 586.535C740.09 586.686 740.036 586.929 740.036 587.267L740.036 590.402L738.74 589.654L738.74 583.934ZM713.931 578.41L715.322 579.213L715.322 582.348L718.37 584.108L718.37 580.973L719.761 581.776L719.761 589.696L718.37 588.893L718.37 585.56L715.322 583.8L715.322 587.133L713.931 586.33L713.931 578.41ZM722.385 591.343C721.839 591.027 721.4 590.624 721.07 590.133C720.74 589.634 720.575 589.11 720.575 588.56C720.575 588.222 720.641 587.979 720.775 587.828C720.915 587.674 721.124 587.605 721.404 587.619C721.689 587.638 722.058 587.733 722.509 587.905L723.919 588.433L723.919 588.136C723.919 587.88 723.852 587.65 723.718 587.449C723.585 587.247 723.366 587.058 723.061 586.882C722.775 586.717 722.544 586.653 722.366 586.69C722.194 586.73 722.105 586.888 722.099 587.163L720.813 586.42C720.819 585.779 721.029 585.412 721.442 585.32C721.861 585.225 722.397 585.366 723.052 585.744C723.757 586.151 724.287 586.607 724.643 587.113C725.005 587.623 725.186 588.149 725.186 588.692L725.186 592.828L723.957 592.118L723.957 591.48C723.753 591.634 723.522 591.698 723.261 591.673C723.007 591.643 722.715 591.533 722.385 591.343ZM722.709 590.452C722.925 590.576 723.121 590.646 723.299 590.661C723.483 590.679 723.633 590.626 723.747 590.501C723.861 590.377 723.919 590.171 723.919 589.885L723.919 589.401L722.756 589.005C722.451 588.895 722.232 588.857 722.099 588.89C721.966 588.915 721.899 589.042 721.899 589.269C721.899 589.489 721.966 589.704 722.099 589.913C722.239 590.118 722.442 590.298 722.709 590.452ZM726.051 587.608L727.308 588.334L727.308 589.115C727.493 588.942 727.715 588.851 727.975 588.84C728.236 588.821 728.534 588.909 728.871 589.104C729.245 589.32 729.563 589.595 729.823 589.929C730.09 590.259 730.29 590.634 730.424 591.056C730.563 591.481 730.633 591.932 730.633 592.409L730.633 595.973L729.347 595.231L729.347 591.843C729.347 591.483 729.274 591.159 729.128 590.869C728.982 590.572 728.75 590.332 728.433 590.149C728.255 590.046 728.083 589.995 727.918 589.995C727.759 589.991 727.623 590.062 727.509 590.209C727.401 590.359 727.347 590.603 727.347 590.941L727.347 594.076L726.051 593.328L726.051 587.608ZM733.614 597.826C733.151 597.559 732.754 597.201 732.424 596.754C732.093 596.299 731.843 595.799 731.671 595.252C731.5 594.699 731.414 594.136 731.414 593.564C731.414 592.984 731.5 592.521 731.671 592.172C731.843 591.817 732.093 591.606 732.424 591.54C732.754 591.474 733.151 591.575 733.614 591.842C733.945 592.033 734.234 592.269 734.481 592.552C734.735 592.838 734.948 593.162 735.12 593.525L735.12 590.643L736.415 591.391L736.415 599.311L735.158 598.585L735.158 597.826C734.986 598.013 734.774 598.11 734.519 598.118C734.265 598.125 733.964 598.028 733.614 597.826ZM733.938 596.781C734.205 596.935 734.427 596.99 734.605 596.946C734.783 596.902 734.916 596.778 735.005 596.572C735.094 596.36 735.139 596.074 735.139 595.714C735.139 595.355 735.094 595.018 735.005 594.702C734.916 594.387 734.783 594.108 734.605 593.866C734.427 593.617 734.205 593.415 733.938 593.261C733.665 593.104 733.44 593.047 733.262 593.091C733.084 593.127 732.951 593.252 732.862 593.465C732.779 593.681 732.738 593.969 732.738 594.328C732.738 594.688 732.779 595.023 732.862 595.335C732.951 595.643 733.084 595.921 733.262 596.171C733.44 596.42 733.665 596.624 733.938 596.781ZM737.401 591.96L738.696 592.708L738.696 600.628L737.401 599.88L737.401 591.96ZM741.966 602.648C741.458 602.355 741.013 601.97 740.632 601.493C740.258 601.013 739.972 600.492 739.775 599.931C739.578 599.363 739.48 598.793 739.48 598.221C739.48 597.649 739.578 597.192 739.775 596.851C739.972 596.51 740.258 596.319 740.632 596.279C741.013 596.242 741.458 596.371 741.966 596.664C742.48 596.961 742.925 597.346 743.3 597.819C743.674 598.285 743.957 598.811 744.147 599.398C744.344 599.981 744.443 600.587 744.443 601.218L744.443 601.548L740.766 599.425C740.797 599.729 740.864 600.014 740.966 600.278C741.074 600.538 741.21 600.774 741.375 600.987C741.547 601.196 741.744 601.365 741.966 601.493C742.245 601.654 742.477 601.726 742.661 601.708C742.852 601.686 742.998 601.587 743.1 601.411L744.357 602.137C744.192 602.621 743.9 602.914 743.481 603.017C743.068 603.116 742.563 602.993 741.966 602.648ZM743.147 599.766C743.084 599.333 742.95 598.948 742.747 598.611C742.544 598.266 742.284 598.002 741.966 597.819C741.642 597.632 741.379 597.594 741.175 597.704C740.972 597.806 740.839 598.037 740.775 598.397L743.147 599.766ZM745.224 598.677L746.482 599.403L746.482 600.393C746.641 600.111 746.844 599.961 747.092 599.942C747.339 599.917 747.628 599.999 747.959 600.19L748.359 600.421L748.359 601.796L747.901 601.532C747.609 601.363 747.362 601.275 747.158 601.268C746.955 601.253 746.796 601.341 746.682 601.532C746.574 601.719 746.52 602.025 746.52 602.45L746.52 605.145L745.224 604.397L745.224 598.677ZM751.067 607.902C750.362 607.495 749.809 607.015 749.409 606.461C749.015 605.911 748.799 605.277 748.761 604.558L750.019 605.284C750.051 605.655 750.155 605.964 750.333 606.214C750.517 606.467 750.778 606.69 751.114 606.885C751.387 607.042 751.607 607.114 751.772 607.099C751.937 607.077 752.019 606.967 752.019 606.769C752.019 606.63 751.994 606.505 751.943 606.395C751.892 606.285 751.784 606.15 751.619 605.988C751.46 605.823 751.213 605.614 750.876 605.361C750.368 604.965 749.968 604.602 749.676 604.272C749.384 603.942 749.174 603.627 749.047 603.326C748.926 603.029 748.866 602.716 748.866 602.386C748.866 601.843 749.057 601.528 749.438 601.44C749.819 601.352 750.33 601.493 750.971 601.863C751.683 602.274 752.226 602.763 752.6 603.332C752.975 603.893 753.169 604.481 753.182 605.097L751.981 604.404C751.975 604.056 751.88 603.763 751.695 603.524C751.511 603.286 751.27 603.081 750.971 602.908C750.724 602.765 750.521 602.703 750.362 602.721C750.209 602.743 750.133 602.85 750.133 603.04C750.133 603.18 750.165 603.312 750.228 603.436C750.298 603.557 750.416 603.698 750.581 603.86C750.752 604.017 751.003 604.221 751.333 604.47C751.835 604.855 752.229 605.211 752.515 605.537C752.8 605.856 753.004 606.168 753.124 606.472C753.245 606.769 753.305 607.083 753.305 607.413C753.305 607.977 753.099 608.298 752.686 608.375C752.28 608.449 751.74 608.291 751.067 607.902Z" fill="#5F52FF"/>
|
|
131
|
+
<path d="M1092.37 566.905L1199.59 505L1255.02 537.005" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
132
|
+
<path d="M1096.07 579.274L1199.59 519.505L1255.02 551.509" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
133
|
+
<path d="M1097.66 592.859L1199.59 534.008L1255.02 566.013" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
134
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1217.59 597.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
135
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1217.59 582.778)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
136
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1217.59 567.778)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
137
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1217.59 552.778)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
138
|
+
<path d="M1281.36 559.996V587.496" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
139
|
+
<rect x="1.73205" width="43.616" height="43.616" transform="matrix(0.866025 -0.5 0.866025 0.5 1242.02 538.674)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
140
|
+
<path d="M1152.36 626.879L1250 570.505" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
141
|
+
<path d="M1152.36 641.879L1250 585.505" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
142
|
+
<path d="M1152.36 656.879L1250 600.505" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
143
|
+
<path d="M1313.85 570.504L1365.9 600.557L1239.88 673.313" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
144
|
+
<path d="M432.991 327.936L711.837 488.928L553.141 580.551" stroke="#E9725A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
145
|
+
<path d="M424.292 337.752L686.651 489.225L523.556 583.387" stroke="#6CD3FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
146
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 1037.48 522.567)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
147
|
+
<rect x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 1043.48 552.05)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
148
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 1050.36 565)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
149
|
+
<path d="M1072.86 570L1099.86 561" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
150
|
+
<path d="M1038.86 525.5L1044.36 554.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
151
|
+
<path d="M1038.86 596L1044.36 587" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
152
|
+
<path d="M1072.36 602.5L1099.86 631.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
153
|
+
<path d="M1069.3 674.282L980.872 623.23L1061.99 576.398" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
154
|
+
<path d="M697.808 659.497L569.77 585.574L915.286 386.091" stroke="#28FFB4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
155
|
+
<path d="M1313.85 584.504L1366.48 614.89L1242.06 686.725" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
156
|
+
<path d="M1314.36 598.801L1367.11 629.256L1243.36 700.704" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
157
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 1192.48 611.567)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
158
|
+
<rect x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 1198.48 641.05)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
159
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 1205.36 654)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
160
|
+
<path d="M1227.86 659L1254.86 650" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
161
|
+
<path d="M1193.86 614.5L1199.36 643.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
162
|
+
<path d="M1193.86 685L1199.36 676" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
163
|
+
<path d="M1227.36 691.5L1254.86 720.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
164
|
+
<path d="M1216.86 663.55L1133.85 711.478L1069.69 674.435" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
165
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 1115.48 567.567)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
166
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 1140.36 611)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
167
|
+
<path d="M1043.36 683.5L1151.61 621" stroke="#C7BA41" stroke-linecap="round" stroke-linejoin="round"/>
|
|
168
|
+
<rect width="44.8221" height="104.742" transform="matrix(0.866025 -0.5 0.866025 0.5 948.059 722.612)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
169
|
+
<rect x="0.866025" width="43.8221" height="103.742" transform="matrix(0.866025 -0.5 0.866025 0.5 948.175 723.045)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
170
|
+
<path d="M898.359 760.5L1006.61 698" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
171
|
+
<path d="M730.359 663L1260.37 357" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
172
|
+
<path d="M726.359 658L1256.37 352" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
173
|
+
<path d="M901.359 765.5L1009.61 703" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
174
|
+
<path d="M901.359 772.5L1009.61 710" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
175
|
+
<path d="M871.613 760.5L743.441 686.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
176
|
+
<path d="M868.613 772.5L736.977 696.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
177
|
+
<path d="M693.996 671L550.235 588" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
178
|
+
<path d="M710.808 674L548.861 580.5" stroke="#E9725A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
179
|
+
<path d="M534.344 580L267.608 426" stroke="#6CD3FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
180
|
+
<path d="M546.415 571.5L280.545 418" stroke="#E9725A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
181
|
+
<path d="M868.613 765.5L734.379 688" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
182
|
+
<path d="M1251.61 335.5L1166.74 286.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
183
|
+
<path d="M1300.66 250.852L1298.5 249.603L1298.5 248.162L1304.24 251.473L1304.24 252.914L1302.07 251.666L1302.07 258.145L1300.66 257.331L1300.66 250.852ZM1304.87 251.841L1306.17 252.589L1306.17 255.515C1306.35 255.357 1306.57 255.275 1306.83 255.268C1307.08 255.26 1307.37 255.35 1307.69 255.537C1308.07 255.753 1308.39 256.028 1308.65 256.362C1308.91 256.692 1309.11 257.068 1309.25 257.49C1309.39 257.915 1309.46 258.366 1309.46 258.843L1309.46 262.407L1308.17 261.664L1308.17 258.276C1308.17 257.917 1308.1 257.592 1307.95 257.303C1307.8 257.006 1307.57 256.765 1307.26 256.582C1307.08 256.479 1306.91 256.428 1306.74 256.428C1306.58 256.424 1306.45 256.496 1306.33 256.643C1306.22 256.793 1306.17 257.037 1306.17 257.374L1306.17 260.509L1304.87 259.761L1304.87 251.841ZM1312.77 264.452C1312.25 264.152 1311.8 263.761 1311.41 263.281C1311.03 262.797 1310.74 262.273 1310.53 261.708C1310.34 261.14 1310.24 260.569 1310.24 259.997C1310.24 259.425 1310.34 258.969 1310.53 258.628C1310.74 258.291 1311.03 258.104 1311.41 258.067C1311.8 258.034 1312.25 258.168 1312.77 258.468C1313.3 258.773 1313.75 259.163 1314.13 259.64C1314.52 260.12 1314.81 260.645 1315.01 261.213C1315.21 261.781 1315.3 262.351 1315.3 262.923C1315.3 263.495 1315.21 263.952 1315.01 264.293C1314.81 264.627 1314.52 264.814 1314.13 264.854C1313.75 264.891 1313.3 264.757 1312.77 264.452ZM1312.77 263.22C1313.05 263.382 1313.28 263.44 1313.46 263.396C1313.64 263.356 1313.77 263.231 1313.86 263.022C1313.95 262.81 1313.99 262.524 1313.99 262.164C1313.99 261.805 1313.95 261.468 1313.86 261.152C1313.77 260.841 1313.64 260.562 1313.46 260.316C1313.28 260.067 1313.05 259.862 1312.77 259.7C1312.5 259.543 1312.27 259.484 1312.08 259.524C1311.91 259.561 1311.77 259.686 1311.68 259.898C1311.6 260.111 1311.55 260.397 1311.55 260.756C1311.55 261.116 1311.6 261.453 1311.68 261.768C1311.77 262.076 1311.91 262.355 1312.08 262.604C1312.27 262.857 1312.5 263.063 1312.77 263.22ZM1320.67 268.879L1319.41 268.153L1319.41 267.372C1319.22 267.544 1319 267.639 1318.74 267.658C1318.48 267.669 1318.18 267.577 1317.85 267.383C1317.47 267.166 1317.15 266.893 1316.88 266.563C1316.62 266.23 1316.42 265.85 1316.28 265.425C1316.15 265.003 1316.08 264.554 1316.08 264.077L1316.08 260.513L1317.37 261.256L1317.37 264.644C1317.37 265.003 1317.44 265.331 1317.59 265.628C1317.74 265.918 1317.97 266.154 1318.28 266.338C1318.46 266.44 1318.63 266.494 1318.79 266.497C1318.95 266.497 1319.09 266.422 1319.2 266.272C1319.31 266.125 1319.37 265.883 1319.37 265.546L1319.37 262.411L1320.67 263.159L1320.67 268.879ZM1323.9 273.081C1323.21 272.677 1322.66 272.184 1322.28 271.601C1321.89 271.018 1321.68 270.4 1321.64 269.748L1322.91 270.485C1322.95 270.804 1323.05 271.084 1323.23 271.326C1323.41 271.572 1323.65 271.781 1323.95 271.953C1324.3 272.155 1324.59 272.221 1324.81 272.151C1325.04 272.092 1325.15 271.814 1325.15 271.315L1325.15 270.622C1324.98 270.78 1324.77 270.855 1324.51 270.848C1324.27 270.837 1323.98 270.736 1323.65 270.545C1323.18 270.277 1322.79 269.924 1322.46 269.484C1322.13 269.044 1321.88 268.558 1321.7 268.026C1321.53 267.487 1321.45 266.939 1321.45 266.382C1321.45 265.817 1321.53 265.368 1321.7 265.034C1321.88 264.693 1322.13 264.493 1322.46 264.435C1322.79 264.376 1323.18 264.48 1323.65 264.748C1323.99 264.946 1324.29 265.192 1324.54 265.485C1324.8 265.782 1325.02 266.119 1325.19 266.497L1325.19 265.771L1326.45 266.497L1326.45 272.063C1326.45 272.613 1326.34 273.007 1326.11 273.246C1325.89 273.491 1325.59 273.596 1325.21 273.559C1324.83 273.522 1324.39 273.363 1323.9 273.081ZM1323.97 269.555C1324.24 269.709 1324.46 269.768 1324.64 269.731C1324.82 269.687 1324.95 269.566 1325.04 269.368C1325.13 269.163 1325.17 268.884 1325.17 268.532C1325.17 268.18 1325.13 267.85 1325.04 267.542C1324.95 267.234 1324.82 266.959 1324.64 266.717C1324.46 266.468 1324.24 266.266 1323.97 266.112C1323.7 265.954 1323.47 265.898 1323.29 265.942C1323.12 265.978 1322.98 266.099 1322.89 266.305C1322.81 266.514 1322.77 266.794 1322.77 267.146C1322.77 267.498 1322.81 267.826 1322.89 268.131C1322.98 268.431 1323.12 268.706 1323.29 268.956C1323.47 269.198 1323.7 269.397 1323.97 269.555ZM1327.43 264.866L1328.73 265.614L1328.73 268.54C1328.91 268.382 1329.13 268.3 1329.39 268.292C1329.64 268.285 1329.93 268.375 1330.25 268.562C1330.63 268.778 1330.95 269.053 1331.21 269.387C1331.47 269.717 1331.67 270.093 1331.81 270.514C1331.95 270.94 1332.02 271.391 1332.02 271.868L1332.02 275.432L1330.73 274.689L1330.73 271.301C1330.73 270.942 1330.66 270.617 1330.51 270.327C1330.36 270.03 1330.13 269.79 1329.82 269.607C1329.64 269.504 1329.47 269.453 1329.3 269.453C1329.14 269.449 1329.01 269.521 1328.89 269.667C1328.78 269.818 1328.73 270.062 1328.73 270.399L1328.73 273.534L1327.43 272.786L1327.43 264.866ZM1334.94 277.12C1334.63 276.94 1334.37 276.751 1334.17 276.553C1333.97 276.348 1333.8 276.1 1333.68 275.811C1333.57 275.525 1333.51 275.184 1333.51 274.788L1333.51 271.708L1332.65 271.213L1332.65 270.08L1333.51 270.575L1333.51 268.815L1334.81 269.563L1334.81 271.323L1336.04 272.038L1336.04 273.171L1334.81 272.456L1334.81 275.382C1334.81 275.565 1334.84 275.721 1334.91 275.849C1334.98 275.97 1335.1 276.08 1335.27 276.179L1336.04 276.625L1336.04 277.758L1334.94 277.12ZM1303.19 269.734C1302.85 269.664 1302.48 269.512 1302.07 269.277C1301.35 268.859 1300.73 268.32 1300.21 267.66C1299.69 266.996 1299.3 266.276 1299.04 265.498C1298.78 264.725 1298.65 263.96 1298.65 263.205C1298.65 262.442 1298.78 261.828 1299.04 261.362C1299.3 260.893 1299.69 260.627 1300.21 260.565C1300.73 260.499 1301.35 260.675 1302.07 261.093C1302.79 261.507 1303.41 262.046 1303.92 262.71C1304.44 263.37 1304.83 264.087 1305.09 264.86C1305.36 265.63 1305.49 266.397 1305.49 267.159C1305.49 267.864 1305.38 268.447 1305.15 268.909C1304.93 269.367 1304.6 269.649 1304.16 269.756L1305.02 271.714L1303.73 270.971L1303.19 269.734ZM1302.83 266.708L1303.4 268.007C1303.61 267.904 1303.78 267.704 1303.88 267.407C1303.99 267.11 1304.05 266.749 1304.05 266.323C1304.05 265.817 1303.98 265.326 1303.84 264.85C1303.7 264.365 1303.48 263.92 1303.18 263.513C1302.89 263.11 1302.52 262.78 1302.07 262.523C1301.63 262.266 1301.26 262.169 1300.96 262.231C1300.66 262.294 1300.44 262.486 1300.3 262.809C1300.16 263.124 1300.09 263.535 1300.09 264.041C1300.09 264.525 1300.16 264.998 1300.28 265.46C1300.42 265.926 1300.62 266.358 1300.89 266.758C1301.17 267.154 1301.52 267.486 1301.93 267.754C1302.12 267.867 1302.28 267.95 1302.44 268.001L1301.54 265.966L1302.83 266.708ZM1310.86 274.218L1309.6 273.492L1309.6 272.711C1309.42 272.883 1309.2 272.978 1308.94 272.997C1308.68 273.008 1308.38 272.916 1308.04 272.722C1307.67 272.505 1307.35 272.232 1307.08 271.902C1306.82 271.568 1306.62 271.189 1306.48 270.764C1306.35 270.342 1306.28 269.893 1306.28 269.416L1306.28 265.852L1307.56 266.595L1307.56 269.983C1307.56 270.342 1307.64 270.67 1307.78 270.967C1307.93 271.257 1308.16 271.493 1308.48 271.677C1308.66 271.779 1308.83 271.832 1308.98 271.836C1309.15 271.836 1309.29 271.761 1309.39 271.611C1309.51 271.464 1309.57 271.222 1309.57 270.885L1309.57 267.75L1310.86 268.498L1310.86 274.218ZM1314.13 276.236C1313.62 275.943 1313.18 275.558 1312.79 275.081C1312.42 274.601 1312.13 274.08 1311.94 273.519C1311.74 272.951 1311.64 272.38 1311.64 271.808C1311.64 271.236 1311.74 270.78 1311.94 270.439C1312.13 270.098 1312.42 269.907 1312.79 269.867C1313.18 269.83 1313.62 269.959 1314.13 270.252C1314.64 270.549 1315.09 270.934 1315.46 271.407C1315.84 271.873 1316.12 272.399 1316.31 272.985C1316.51 273.568 1316.6 274.175 1316.6 274.806L1316.6 275.136L1312.93 273.013C1312.96 273.317 1313.03 273.601 1313.13 273.865C1313.24 274.126 1313.37 274.362 1313.54 274.575C1313.71 274.784 1313.91 274.953 1314.13 275.081C1314.41 275.242 1314.64 275.314 1314.82 275.295C1315.01 275.273 1315.16 275.174 1315.26 274.998L1316.52 275.724C1316.35 276.208 1316.06 276.502 1315.64 276.604C1315.23 276.703 1314.72 276.581 1314.13 276.236ZM1315.31 273.354C1315.25 272.921 1315.11 272.536 1314.91 272.199C1314.71 271.854 1314.45 271.59 1314.13 271.407C1313.8 271.22 1313.54 271.181 1313.34 271.291C1313.13 271.394 1313 271.625 1312.94 271.984L1315.31 273.354ZM1321.97 280.631L1320.71 279.905L1320.71 279.124C1320.53 279.296 1320.3 279.391 1320.04 279.41C1319.78 279.421 1319.49 279.329 1319.15 279.135C1318.77 278.918 1318.45 278.645 1318.19 278.315C1317.93 277.982 1317.73 277.602 1317.59 277.177C1317.45 276.755 1317.39 276.306 1317.39 275.829L1317.39 272.265L1318.67 273.008L1318.67 276.396C1318.67 276.755 1318.75 277.083 1318.89 277.38C1319.04 277.67 1319.27 277.906 1319.59 278.09C1319.76 278.192 1319.93 278.246 1320.09 278.249C1320.26 278.249 1320.39 278.174 1320.5 278.024C1320.62 277.877 1320.67 277.635 1320.67 277.298L1320.67 274.163L1321.97 274.911L1321.97 280.631ZM1325.24 282.649C1324.73 282.356 1324.28 281.971 1323.9 281.494C1323.53 281.014 1323.24 280.493 1323.04 279.932C1322.85 279.364 1322.75 278.794 1322.75 278.222C1322.75 277.65 1322.85 277.193 1323.04 276.852C1323.24 276.511 1323.53 276.32 1323.9 276.28C1324.28 276.243 1324.73 276.372 1325.24 276.665C1325.75 276.962 1326.19 277.347 1326.57 277.82C1326.94 278.286 1327.23 278.812 1327.42 279.399C1327.61 279.982 1327.71 280.588 1327.71 281.219L1327.71 281.549L1324.04 279.426C1324.07 279.73 1324.13 280.015 1324.24 280.279C1324.34 280.539 1324.48 280.775 1324.64 280.988C1324.82 281.197 1325.01 281.366 1325.24 281.494C1325.52 281.655 1325.75 281.727 1325.93 281.709C1326.12 281.687 1326.27 281.588 1326.37 281.412L1327.63 282.138C1327.46 282.622 1327.17 282.915 1326.75 283.018C1326.34 283.117 1325.83 282.994 1325.24 282.649ZM1326.42 279.767C1326.35 279.334 1326.22 278.949 1326.02 278.612C1325.81 278.267 1325.55 278.003 1325.24 277.82C1324.91 277.633 1324.65 277.595 1324.44 277.705C1324.24 277.807 1324.11 278.038 1324.04 278.398L1326.42 279.767Z" fill="#5F52FF"/>
|
|
184
|
+
<path d="M1158.66 204.852L1156.5 203.603L1156.5 202.162L1162.24 205.473L1162.24 206.914L1160.07 205.666L1160.07 212.145L1158.66 211.331L1158.66 204.852ZM1164.43 214.79C1163.88 214.474 1163.44 214.071 1163.11 213.58C1162.78 213.081 1162.62 212.557 1162.62 212.007C1162.62 211.669 1162.68 211.425 1162.82 211.275C1162.96 211.121 1163.17 211.051 1163.45 211.066C1163.73 211.084 1164.1 211.18 1164.55 211.352L1165.96 211.88L1165.96 211.583C1165.96 211.326 1165.89 211.097 1165.76 210.896C1165.63 210.694 1165.41 210.505 1165.1 210.329C1164.82 210.164 1164.59 210.1 1164.41 210.137C1164.24 210.177 1164.15 210.335 1164.14 210.61L1162.85 209.867C1162.86 209.225 1163.07 208.859 1163.48 208.767C1163.9 208.672 1164.44 208.813 1165.09 209.191C1165.8 209.598 1166.33 210.054 1166.68 210.56C1167.05 211.07 1167.23 211.596 1167.23 212.139L1167.23 216.275L1166 215.565L1166 214.927C1165.8 215.081 1165.56 215.145 1165.3 215.12C1165.05 215.09 1164.76 214.98 1164.43 214.79ZM1164.75 213.899C1164.97 214.023 1165.16 214.093 1165.34 214.108C1165.53 214.126 1165.67 214.073 1165.79 213.948C1165.9 213.823 1165.96 213.618 1165.96 213.332L1165.96 212.848L1164.8 212.452C1164.49 212.342 1164.27 212.304 1164.14 212.337C1164.01 212.362 1163.94 212.489 1163.94 212.716C1163.94 212.936 1164.01 213.151 1164.14 213.36C1164.28 213.565 1164.48 213.745 1164.75 213.899ZM1170.07 218.05C1169.37 217.643 1168.82 217.163 1168.42 216.609C1168.02 216.059 1167.81 215.425 1167.77 214.706L1169.03 215.432C1169.06 215.803 1169.16 216.112 1169.34 216.362C1169.52 216.615 1169.79 216.838 1170.12 217.033C1170.39 217.19 1170.61 217.262 1170.78 217.247C1170.94 217.225 1171.03 217.115 1171.03 216.917C1171.03 216.778 1171 216.653 1170.95 216.543C1170.9 216.433 1170.79 216.298 1170.63 216.136C1170.47 215.971 1170.22 215.762 1169.88 215.509C1169.38 215.113 1168.98 214.75 1168.68 214.42C1168.39 214.09 1168.18 213.775 1168.05 213.474C1167.93 213.177 1167.87 212.864 1167.87 212.534C1167.87 211.991 1168.06 211.676 1168.45 211.588C1168.83 211.5 1169.34 211.641 1169.98 212.011C1170.69 212.422 1171.23 212.911 1171.61 213.48C1171.98 214.041 1172.18 214.629 1172.19 215.245L1170.99 214.552C1170.98 214.204 1170.89 213.911 1170.7 213.672C1170.52 213.434 1170.28 213.229 1169.98 213.056C1169.73 212.913 1169.53 212.851 1169.37 212.869C1169.22 212.891 1169.14 212.998 1169.14 213.188C1169.14 213.328 1169.17 213.46 1169.24 213.584C1169.31 213.705 1169.42 213.846 1169.59 214.008C1169.76 214.165 1170.01 214.369 1170.34 214.618C1170.84 215.003 1171.24 215.359 1171.52 215.685C1171.81 216.004 1172.01 216.316 1172.13 216.62C1172.25 216.917 1172.31 217.231 1172.31 217.561C1172.31 218.125 1172.11 218.446 1171.69 218.523C1171.29 218.597 1170.75 218.439 1170.07 218.05ZM1172.98 211.674L1174.27 212.422L1174.27 216.932L1176.21 215.739L1177.74 216.624L1175.86 217.719L1177.86 222.416L1176.35 221.541L1174.97 218.247L1174.27 218.67L1174.27 220.342L1172.98 219.594L1172.98 211.674ZM1180.36 223.991C1179.66 223.584 1179.11 223.103 1178.71 222.55C1178.31 222 1178.1 221.365 1178.06 220.647L1179.32 221.373C1179.35 221.743 1179.45 222.053 1179.63 222.302C1179.81 222.555 1180.07 222.779 1180.41 222.973C1180.68 223.131 1180.9 223.202 1181.07 223.188C1181.23 223.166 1181.32 223.056 1181.32 222.858C1181.32 222.718 1181.29 222.594 1181.24 222.484C1181.19 222.374 1181.08 222.238 1180.92 222.077C1180.76 221.912 1180.51 221.703 1180.17 221.45C1179.66 221.054 1179.26 220.691 1178.97 220.361C1178.68 220.031 1178.47 219.715 1178.34 219.415C1178.22 219.118 1178.16 218.804 1178.16 218.474C1178.16 217.932 1178.35 217.616 1178.73 217.528C1179.12 217.44 1179.63 217.581 1180.27 217.952C1180.98 218.362 1181.52 218.852 1181.9 219.42C1182.27 219.981 1182.47 220.57 1182.48 221.186L1181.28 220.493C1181.27 220.144 1181.18 219.851 1180.99 219.613C1180.81 219.374 1180.57 219.169 1180.27 218.997C1180.02 218.854 1179.82 218.791 1179.66 218.81C1179.51 218.832 1179.43 218.938 1179.43 219.129C1179.43 219.268 1179.46 219.4 1179.53 219.525C1179.59 219.646 1179.71 219.787 1179.88 219.948C1180.05 220.106 1180.3 220.309 1180.63 220.559C1181.13 220.944 1181.53 221.299 1181.81 221.626C1182.1 221.945 1182.3 222.256 1182.42 222.561C1182.54 222.858 1182.6 223.171 1182.6 223.501C1182.6 224.066 1182.4 224.387 1181.98 224.464C1181.58 224.537 1181.04 224.379 1180.36 223.991ZM1161.19 223.734C1160.85 223.664 1160.48 223.512 1160.07 223.277C1159.35 222.859 1158.73 222.32 1158.21 221.66C1157.69 220.996 1157.3 220.276 1157.04 219.498C1156.78 218.725 1156.65 217.96 1156.65 217.205C1156.65 216.442 1156.78 215.828 1157.04 215.362C1157.3 214.893 1157.69 214.627 1158.21 214.565C1158.73 214.499 1159.35 214.675 1160.07 215.093C1160.79 215.507 1161.41 216.046 1161.92 216.71C1162.44 217.37 1162.83 218.087 1163.09 218.86C1163.36 219.63 1163.49 220.397 1163.49 221.159C1163.49 221.864 1163.38 222.447 1163.15 222.909C1162.93 223.367 1162.6 223.649 1162.16 223.756L1163.02 225.714L1161.73 224.971L1161.19 223.734ZM1160.83 220.708L1161.4 222.007C1161.61 221.904 1161.78 221.704 1161.88 221.407C1161.99 221.11 1162.05 220.749 1162.05 220.323C1162.05 219.817 1161.98 219.326 1161.84 218.85C1161.7 218.365 1161.48 217.92 1161.18 217.513C1160.89 217.11 1160.52 216.78 1160.07 216.523C1159.63 216.266 1159.26 216.169 1158.96 216.231C1158.66 216.294 1158.44 216.486 1158.3 216.809C1158.16 217.124 1158.09 217.535 1158.09 218.041C1158.09 218.525 1158.16 218.998 1158.28 219.46C1158.42 219.926 1158.62 220.358 1158.89 220.758C1159.17 221.154 1159.52 221.486 1159.93 221.754C1160.12 221.867 1160.28 221.95 1160.44 222.001L1159.54 219.966L1160.83 220.708ZM1168.86 228.218L1167.6 227.492L1167.6 226.711C1167.42 226.883 1167.2 226.978 1166.94 226.997C1166.68 227.008 1166.38 226.916 1166.04 226.722C1165.67 226.505 1165.35 226.232 1165.08 225.902C1164.82 225.568 1164.62 225.189 1164.48 224.764C1164.35 224.342 1164.28 223.893 1164.28 223.416L1164.28 219.852L1165.56 220.595L1165.56 223.983C1165.56 224.342 1165.64 224.67 1165.78 224.967C1165.93 225.257 1166.16 225.493 1166.48 225.677C1166.66 225.779 1166.83 225.832 1166.98 225.836C1167.15 225.836 1167.29 225.761 1167.39 225.611C1167.51 225.464 1167.57 225.222 1167.57 224.885L1167.57 221.75L1168.86 222.498L1168.86 228.218ZM1172.13 230.236C1171.62 229.943 1171.18 229.558 1170.79 229.081C1170.42 228.601 1170.13 228.08 1169.94 227.519C1169.74 226.951 1169.64 226.38 1169.64 225.808C1169.64 225.236 1169.74 224.78 1169.94 224.439C1170.13 224.098 1170.42 223.907 1170.79 223.867C1171.18 223.83 1171.62 223.959 1172.13 224.252C1172.64 224.549 1173.09 224.934 1173.46 225.407C1173.84 225.873 1174.12 226.399 1174.31 226.985C1174.51 227.568 1174.6 228.175 1174.6 228.806L1174.6 229.136L1170.93 227.013C1170.96 227.317 1171.03 227.601 1171.13 227.865C1171.24 228.126 1171.37 228.362 1171.54 228.575C1171.71 228.784 1171.91 228.953 1172.13 229.081C1172.41 229.242 1172.64 229.314 1172.82 229.295C1173.01 229.273 1173.16 229.174 1173.26 228.998L1174.52 229.724C1174.35 230.208 1174.06 230.502 1173.64 230.604C1173.23 230.703 1172.72 230.581 1172.13 230.236ZM1173.31 227.354C1173.25 226.921 1173.11 226.536 1172.91 226.199C1172.71 225.854 1172.45 225.59 1172.13 225.407C1171.8 225.22 1171.54 225.181 1171.34 225.291C1171.13 225.394 1171 225.625 1170.94 225.984L1173.31 227.354ZM1179.97 234.631L1178.71 233.905L1178.71 233.124C1178.53 233.296 1178.3 233.391 1178.04 233.41C1177.78 233.421 1177.49 233.329 1177.15 233.135C1176.77 232.918 1176.45 232.645 1176.19 232.315C1175.93 231.982 1175.73 231.602 1175.59 231.177C1175.45 230.755 1175.39 230.306 1175.39 229.829L1175.39 226.265L1176.67 227.008L1176.67 230.396C1176.67 230.755 1176.75 231.083 1176.89 231.38C1177.04 231.67 1177.27 231.906 1177.59 232.09C1177.76 232.192 1177.93 232.246 1178.09 232.249C1178.26 232.249 1178.39 232.174 1178.5 232.024C1178.62 231.877 1178.67 231.635 1178.67 231.298L1178.67 228.163L1179.97 228.911L1179.97 234.631ZM1183.24 236.649C1182.73 236.356 1182.28 235.971 1181.9 235.494C1181.53 235.014 1181.24 234.493 1181.04 233.932C1180.85 233.364 1180.75 232.794 1180.75 232.222C1180.75 231.65 1180.85 231.193 1181.04 230.852C1181.24 230.511 1181.53 230.32 1181.9 230.28C1182.28 230.243 1182.73 230.372 1183.24 230.665C1183.75 230.962 1184.19 231.347 1184.57 231.82C1184.94 232.286 1185.23 232.812 1185.42 233.399C1185.61 233.982 1185.71 234.588 1185.71 235.219L1185.71 235.549L1182.04 233.426C1182.07 233.73 1182.13 234.015 1182.24 234.279C1182.34 234.539 1182.48 234.775 1182.64 234.988C1182.82 235.197 1183.01 235.366 1183.24 235.494C1183.52 235.655 1183.75 235.727 1183.93 235.709C1184.12 235.687 1184.27 235.588 1184.37 235.412L1185.63 236.138C1185.46 236.622 1185.17 236.915 1184.75 237.018C1184.34 237.117 1183.83 236.994 1183.24 236.649ZM1184.42 233.767C1184.35 233.334 1184.22 232.949 1184.02 232.612C1183.81 232.267 1183.55 232.003 1183.24 231.82C1182.91 231.633 1182.65 231.595 1182.44 231.705C1182.24 231.807 1182.11 232.038 1182.04 232.398L1184.42 233.767Z" fill="#5F52FF"/>
|
|
185
|
+
<path d="M1299.07 522.277C1298.35 521.859 1297.73 521.32 1297.21 520.66C1296.69 519.996 1296.3 519.276 1296.04 518.498C1295.78 517.725 1295.65 516.96 1295.65 516.205C1295.65 515.442 1295.78 514.828 1296.04 514.362C1296.3 513.893 1296.69 513.627 1297.21 513.565C1297.73 513.499 1298.35 513.675 1299.07 514.093C1299.63 514.416 1300.13 514.828 1300.57 515.331C1301.01 515.833 1301.36 516.385 1301.63 516.986C1301.89 517.587 1302.07 518.194 1302.15 518.806L1300.74 517.992C1300.68 517.655 1300.57 517.329 1300.42 517.014C1300.27 516.702 1300.08 516.416 1299.85 516.155C1299.62 515.899 1299.36 515.688 1299.07 515.523C1298.63 515.266 1298.26 515.169 1297.96 515.231C1297.66 515.294 1297.44 515.486 1297.3 515.809C1297.16 516.124 1297.09 516.535 1297.09 517.041C1297.09 517.54 1297.16 518.031 1297.3 518.515C1297.44 518.992 1297.66 519.437 1297.96 519.851C1298.26 520.259 1298.63 520.59 1299.07 520.847C1299.39 521.027 1299.66 521.111 1299.89 521.1C1300.13 521.089 1300.32 520.997 1300.47 520.825C1300.62 520.656 1300.72 520.422 1300.77 520.121L1302.17 520.93C1302.11 521.487 1301.94 521.927 1301.68 522.25C1301.41 522.576 1301.06 522.745 1300.61 522.755C1300.16 522.77 1299.65 522.611 1299.07 522.277ZM1305.28 525.858C1304.76 525.557 1304.3 525.167 1303.92 524.687C1303.53 524.203 1303.24 523.678 1303.04 523.114C1302.84 522.545 1302.74 521.975 1302.74 521.403C1302.74 520.831 1302.84 520.375 1303.04 520.034C1303.24 519.696 1303.53 519.509 1303.92 519.473C1304.3 519.44 1304.76 519.573 1305.28 519.874C1305.8 520.178 1306.26 520.569 1306.64 521.046C1307.03 521.526 1307.32 522.05 1307.52 522.619C1307.71 523.187 1307.81 523.757 1307.81 524.329C1307.81 524.901 1307.71 525.358 1307.52 525.699C1307.32 526.032 1307.03 526.219 1306.64 526.26C1306.26 526.296 1305.8 526.162 1305.28 525.858ZM1305.28 524.626C1305.56 524.787 1305.79 524.846 1305.96 524.802C1306.15 524.762 1306.28 524.637 1306.36 524.428C1306.45 524.215 1306.5 523.929 1306.5 523.57C1306.5 523.211 1306.45 522.873 1306.36 522.558C1306.28 522.246 1306.15 521.968 1305.96 521.722C1305.79 521.473 1305.56 521.267 1305.28 521.106C1305 520.948 1304.78 520.89 1304.59 520.93C1304.41 520.967 1304.28 521.091 1304.19 521.304C1304.1 521.517 1304.06 521.803 1304.06 522.162C1304.06 522.521 1304.1 522.859 1304.19 523.174C1304.28 523.482 1304.41 523.761 1304.59 524.01C1304.78 524.263 1305 524.468 1305.28 524.626ZM1308.59 521.919L1309.85 522.645L1309.85 523.426C1310.03 523.254 1310.25 523.162 1310.51 523.151C1310.78 523.133 1311.07 523.221 1311.41 523.415C1311.79 523.631 1312.1 523.906 1312.36 524.24C1312.63 524.57 1312.83 524.946 1312.96 525.368C1313.1 525.793 1313.17 526.244 1313.17 526.721L1313.17 530.285L1311.89 529.542L1311.89 526.154C1311.89 525.795 1311.81 525.47 1311.67 525.181C1311.52 524.884 1311.29 524.643 1310.97 524.46C1310.79 524.357 1310.62 524.306 1310.46 524.306C1310.3 524.302 1310.16 524.374 1310.05 524.521C1309.94 524.671 1309.89 524.915 1309.89 525.252L1309.89 528.387L1308.59 527.639L1308.59 521.919ZM1316.1 531.973C1315.79 531.793 1315.53 531.604 1315.33 531.406C1315.12 531.201 1314.96 530.953 1314.84 530.664C1314.73 530.378 1314.67 530.037 1314.67 529.641L1314.67 526.561L1313.81 526.066L1313.81 524.933L1314.67 525.428L1314.67 523.668L1315.96 524.416L1315.96 526.176L1317.2 526.891L1317.2 528.024L1315.96 527.309L1315.96 530.235C1315.96 530.418 1316 530.574 1316.07 530.702C1316.14 530.823 1316.26 530.933 1316.43 531.032L1317.2 531.478L1317.2 532.611L1316.1 531.973ZM1320.22 534.483C1319.71 534.19 1319.26 533.805 1318.88 533.328C1318.51 532.848 1318.22 532.327 1318.03 531.766C1317.83 531.198 1317.73 530.628 1317.73 530.056C1317.73 529.484 1317.83 529.027 1318.03 528.686C1318.22 528.345 1318.51 528.155 1318.88 528.114C1319.26 528.078 1319.71 528.206 1320.22 528.499C1320.73 528.796 1321.18 529.181 1321.55 529.654C1321.93 530.12 1322.21 530.646 1322.4 531.233C1322.6 531.816 1322.69 532.423 1322.69 533.053L1322.69 533.383L1319.02 531.26C1319.05 531.565 1319.11 531.849 1319.22 532.113C1319.32 532.373 1319.46 532.61 1319.63 532.822C1319.8 533.031 1319.99 533.2 1320.22 533.328C1320.5 533.49 1320.73 533.561 1320.91 533.543C1321.1 533.521 1321.25 533.422 1321.35 533.246L1322.61 533.972C1322.44 534.456 1322.15 534.749 1321.73 534.852C1321.32 534.951 1320.81 534.828 1320.22 534.483ZM1321.4 531.601C1321.33 531.169 1321.2 530.784 1321 530.446C1320.79 530.102 1320.53 529.838 1320.22 529.654C1319.89 529.467 1319.63 529.429 1319.43 529.539C1319.22 529.642 1319.09 529.873 1319.03 530.232L1321.4 531.601ZM1324.81 534.066L1323.1 530.298L1324.58 531.151L1325.55 533.274L1326.51 532.267L1327.97 533.109L1326.28 534.891L1328.09 538.895L1326.61 538.042L1325.54 535.688L1324.47 536.805L1323.01 535.963L1324.81 534.066ZM1330.54 540.314C1330.23 540.134 1329.98 539.946 1329.77 539.748C1329.57 539.542 1329.41 539.295 1329.29 539.005C1329.17 538.719 1329.12 538.378 1329.12 537.982L1329.12 534.902L1328.26 534.407L1328.26 533.274L1329.12 533.769L1329.12 532.009L1330.41 532.757L1330.41 534.517L1331.65 535.232L1331.65 536.365L1330.41 535.65L1330.41 538.576C1330.41 538.759 1330.45 538.915 1330.52 539.044C1330.59 539.165 1330.71 539.275 1330.88 539.374L1331.65 539.819L1331.65 540.952L1330.54 540.314Z" fill="#5F52FF"/>
|
|
186
|
+
<path d="M1304.77 409.591L1306.4 410.532L1302.19 416.021L1300.71 415.168L1301.64 414.019L1298.73 412.341L1296.73 412.869L1295.3 412.044L1304.77 409.591ZM1302.41 413.1L1304.25 410.829L1300.32 411.896L1302.41 413.1ZM1304.93 417.732C1304.42 417.439 1304.09 417.12 1303.93 416.775C1303.8 416.431 1303.82 416.09 1304.01 415.752C1304.21 415.411 1304.55 415.098 1305.05 414.812C1305.54 414.526 1306.09 414.326 1306.68 414.212C1307.27 414.099 1307.86 414.084 1308.45 414.168C1309.05 414.256 1309.6 414.447 1310.11 414.74C1310.79 415.133 1311.16 415.543 1311.21 415.972C1311.27 416.401 1311.04 416.807 1310.54 417.188L1309.24 416.44C1309.44 416.257 1309.53 416.07 1309.49 415.879C1309.46 415.688 1309.31 415.514 1309.04 415.356C1308.79 415.21 1308.51 415.124 1308.21 415.098C1307.92 415.069 1307.62 415.094 1307.3 415.175C1306.99 415.259 1306.68 415.391 1306.36 415.571C1306.05 415.751 1305.82 415.93 1305.68 416.11C1305.54 416.29 1305.5 416.466 1305.54 416.638C1305.59 416.81 1305.74 416.97 1305.99 417.116C1306.28 417.281 1306.59 417.369 1306.93 417.38C1307.27 417.395 1307.61 417.331 1307.95 417.188L1309.24 417.936C1308.56 418.24 1307.84 418.38 1307.07 418.354C1306.31 418.325 1305.59 418.117 1304.93 417.732ZM1310.01 420.535C1309.7 420.356 1309.48 420.187 1309.34 420.029C1309.22 419.868 1309.19 419.697 1309.26 419.518C1309.33 419.342 1309.54 419.155 1309.89 418.957L1312.55 417.417L1311.7 416.922L1312.68 416.355L1313.53 416.85L1315.06 415.97L1316.35 416.718L1314.83 417.598L1316.07 418.313L1315.09 418.88L1313.85 418.165L1311.31 419.628C1311.16 419.719 1311.07 419.807 1311.07 419.892C1311.07 419.972 1311.15 420.062 1311.32 420.161L1312.1 420.607L1311.11 421.173L1310.01 420.535ZM1316.8 418.734L1318.09 419.482L1313.14 422.342L1311.84 421.594L1316.8 418.734ZM1318.7 417.634L1320 418.382L1318.84 419.047L1317.55 418.299L1318.7 417.634ZM1318.63 419.792L1320.03 420.6L1317.52 423.455L1322.45 421.997L1323.84 422.8L1317.03 424.588L1315.54 423.73L1318.63 419.792ZM1321.59 427.352C1321.08 427.059 1320.75 426.738 1320.59 426.39C1320.44 426.041 1320.46 425.698 1320.65 425.361C1320.85 425.02 1321.2 424.707 1321.69 424.421C1322.19 424.135 1322.73 423.935 1323.32 423.821C1323.91 423.707 1324.51 423.695 1325.1 423.783C1325.71 423.874 1326.26 424.067 1326.77 424.36C1327.28 424.657 1327.62 424.978 1327.77 425.323C1327.93 425.664 1327.9 426.008 1327.67 426.357C1327.47 426.705 1327.09 427.037 1326.54 427.352L1326.26 427.517L1322.58 425.394C1322.36 425.555 1322.22 425.717 1322.14 425.878C1322.08 426.039 1322.08 426.197 1322.14 426.351C1322.22 426.505 1322.37 426.646 1322.59 426.775C1322.87 426.936 1323.15 427.039 1323.45 427.083C1323.75 427.127 1324.05 427.119 1324.36 427.061L1325.62 427.787C1324.95 427.981 1324.26 428.043 1323.54 427.974C1322.84 427.904 1322.18 427.697 1321.59 427.352ZM1325.86 426.252C1326.13 426.017 1326.27 425.786 1326.26 425.559C1326.25 425.328 1326.09 425.121 1325.77 424.938C1325.45 424.751 1325.08 424.655 1324.68 424.652C1324.29 424.644 1323.89 424.721 1323.48 424.883L1325.86 426.252ZM1334.51 428.203L1332.35 426.954L1333.6 426.234L1339.33 429.545L1338.08 430.265L1335.92 429.017L1330.31 432.256L1328.9 431.442L1334.51 428.203ZM1339.97 429.912L1341.26 430.66L1338.73 432.123C1339.14 432.098 1339.54 432.12 1339.93 432.189C1340.32 432.259 1340.67 432.387 1341 432.574C1341.37 432.791 1341.61 433.02 1341.71 433.262C1341.83 433.504 1341.8 433.75 1341.64 433.999C1341.48 434.252 1341.19 434.498 1340.78 434.736L1337.69 436.518L1336.41 435.775L1339.34 434.081C1339.65 433.902 1339.82 433.718 1339.85 433.531C1339.89 433.341 1339.75 433.154 1339.44 432.97C1339.26 432.868 1339.04 432.793 1338.8 432.745C1338.56 432.697 1338.3 432.694 1338 432.734C1337.7 432.778 1337.41 432.884 1337.12 433.053L1334.41 434.62L1333.11 433.872L1339.97 429.912ZM1340.89 438.498C1340.37 438.197 1340.03 437.871 1339.86 437.519C1339.71 437.167 1339.73 436.82 1339.91 436.479C1340.11 436.138 1340.45 435.825 1340.95 435.539C1341.44 435.253 1341.99 435.053 1342.58 434.939C1343.18 434.829 1343.78 434.82 1344.38 434.912C1344.99 435.007 1345.55 435.205 1346.07 435.506C1346.6 435.81 1346.94 436.136 1347.1 436.485C1347.27 436.837 1347.25 437.183 1347.06 437.524C1346.86 437.865 1346.51 438.179 1346.02 438.465C1345.52 438.751 1344.98 438.951 1344.39 439.064C1343.8 439.174 1343.2 439.183 1342.59 439.092C1341.98 439 1341.42 438.802 1340.89 438.498ZM1341.96 437.882C1342.24 438.043 1342.53 438.138 1342.84 438.168C1343.15 438.201 1343.45 438.177 1343.76 438.096C1344.08 438.016 1344.39 437.885 1344.7 437.706C1345.01 437.526 1345.24 437.345 1345.38 437.161C1345.53 436.982 1345.57 436.804 1345.5 436.628C1345.45 436.452 1345.29 436.283 1345.01 436.122C1344.73 435.964 1344.44 435.869 1344.13 435.836C1343.83 435.803 1343.52 435.827 1343.21 435.907C1342.89 435.988 1342.58 436.118 1342.26 436.298C1341.95 436.477 1341.73 436.659 1341.59 436.842C1341.45 437.022 1341.41 437.2 1341.46 437.376C1341.52 437.555 1341.69 437.724 1341.96 437.882ZM1348.9 442.99L1347.64 442.264L1348.32 441.874C1347.9 441.907 1347.48 441.89 1347.07 441.824C1346.67 441.754 1346.3 441.622 1345.97 441.428C1345.59 441.212 1345.35 440.983 1345.23 440.741C1345.13 440.499 1345.16 440.251 1345.32 439.998C1345.49 439.749 1345.77 439.505 1346.19 439.267L1349.27 437.485L1350.56 438.227L1347.63 439.921C1347.31 440.101 1347.14 440.286 1347.1 440.477C1347.07 440.664 1347.21 440.849 1347.53 441.032C1347.71 441.135 1347.91 441.21 1348.15 441.258C1348.4 441.305 1348.67 441.307 1348.96 441.263C1349.26 441.223 1349.55 441.118 1349.85 440.95L1352.56 439.382L1353.86 440.13L1348.9 442.99ZM1350.12 446.026C1349.42 445.623 1349.03 445.219 1348.96 444.816C1348.88 444.413 1349.1 444.042 1349.61 443.705L1350.88 444.442C1350.65 444.611 1350.57 444.781 1350.63 444.953C1350.69 445.129 1350.87 445.304 1351.17 445.476C1351.52 445.678 1351.89 445.793 1352.28 445.822C1352.68 445.859 1353.09 445.753 1353.52 445.503L1354.12 445.157C1353.73 445.186 1353.34 445.162 1352.97 445.085C1352.61 445.008 1352.26 444.875 1351.93 444.684C1351.47 444.416 1351.18 444.125 1351.06 443.809C1350.95 443.494 1350.99 443.179 1351.2 442.863C1351.41 442.544 1351.75 442.246 1352.24 441.967C1352.72 441.685 1353.24 441.485 1353.79 441.367C1354.34 441.246 1354.89 441.219 1355.44 441.285C1355.98 441.351 1356.49 441.518 1356.95 441.785C1357.29 441.983 1357.53 442.192 1357.66 442.412C1357.79 442.636 1357.82 442.867 1357.75 443.105L1358.38 442.742L1359.64 443.468L1354.82 446.251C1354.34 446.526 1353.83 446.691 1353.29 446.746C1352.75 446.805 1352.2 446.77 1351.66 446.642C1351.12 446.514 1350.61 446.308 1350.12 446.026ZM1353.27 444.282C1353.54 444.436 1353.82 444.53 1354.12 444.563C1354.43 444.592 1354.73 444.57 1355.04 444.497C1355.35 444.42 1355.66 444.293 1355.96 444.117C1356.27 443.941 1356.48 443.764 1356.62 443.584C1356.75 443.404 1356.79 443.228 1356.73 443.056C1356.68 442.88 1356.52 442.715 1356.26 442.561C1355.98 442.403 1355.69 442.31 1355.39 442.28C1355.09 442.247 1354.79 442.269 1354.47 442.346C1354.17 442.427 1353.86 442.555 1353.56 442.731C1353.26 442.907 1353.03 443.083 1352.89 443.259C1352.77 443.435 1352.73 443.611 1352.78 443.787C1352.84 443.96 1353 444.125 1353.27 444.282ZM1362.53 442.937L1363.82 443.685L1361.29 445.148C1361.7 445.123 1362.1 445.145 1362.49 445.214C1362.88 445.284 1363.23 445.412 1363.56 445.599C1363.93 445.816 1364.17 446.045 1364.27 446.287C1364.39 446.529 1364.36 446.774 1364.2 447.024C1364.04 447.277 1363.75 447.522 1363.34 447.761L1360.25 449.543L1358.97 448.8L1361.9 447.106C1362.21 446.927 1362.38 446.743 1362.41 446.556C1362.45 446.366 1362.31 446.179 1361.99 445.995C1361.82 445.893 1361.6 445.817 1361.36 445.77C1361.12 445.722 1360.85 445.718 1360.56 445.759C1360.26 445.803 1359.97 445.909 1359.68 446.078L1356.97 447.645L1355.67 446.897L1362.53 442.937ZM1363.18 451.231C1362.86 451.051 1362.64 450.883 1362.51 450.725C1362.38 450.564 1362.35 450.393 1362.42 450.214C1362.5 450.038 1362.71 449.851 1363.05 449.653L1365.72 448.113L1364.86 447.618L1365.84 447.051L1366.7 447.546L1368.22 446.666L1369.52 447.414L1368 448.294L1369.23 449.009L1368.25 449.576L1367.01 448.861L1364.48 450.324C1364.32 450.415 1364.24 450.503 1364.23 450.588C1364.23 450.668 1364.32 450.758 1364.49 450.857L1365.26 451.303L1364.28 451.869L1363.18 451.231ZM1367.25 455.786C1366.96 455.613 1366.74 455.436 1366.6 455.252C1366.46 455.073 1366.43 454.884 1366.51 454.686C1366.58 454.491 1366.79 454.295 1367.13 454.097L1369.35 452.816C1369.56 452.695 1369.65 452.572 1369.63 452.447C1369.61 452.323 1369.45 452.17 1369.14 451.991L1370.22 451.369C1370.53 451.549 1370.79 451.644 1371 451.655C1371.22 451.666 1371.43 451.613 1371.64 451.496L1373.87 450.209C1374.2 450.014 1374.54 449.897 1374.88 449.857C1375.22 449.813 1375.55 449.829 1375.86 449.906C1376.17 449.987 1376.48 450.113 1376.78 450.286L1377.97 450.973L1376.89 451.595L1375.96 451.056C1375.79 450.957 1375.6 450.907 1375.4 450.907C1375.2 450.907 1375.01 450.953 1374.86 451.045L1372.64 452.326C1372.35 452.491 1372.07 452.577 1371.79 452.585C1371.52 452.588 1371.23 452.528 1370.92 452.403C1371.14 452.579 1371.24 452.748 1371.23 452.909C1371.22 453.067 1371.07 453.228 1370.79 453.393L1368.58 454.669C1368.41 454.765 1368.33 454.871 1368.33 454.988C1368.33 455.106 1368.42 455.214 1368.59 455.313L1369.52 455.852L1368.44 456.473L1367.25 455.786ZM1376.62 454.944L1377.7 451.699L1379.31 452.628L1378.64 454.713L1382.24 454.317L1383.8 455.219L1378.24 455.846L1377.08 459.261L1375.47 458.332L1376.22 456.088L1372.32 456.511L1370.75 455.604L1376.62 454.944ZM1376.49 459.875L1377.42 460.414C1377.6 460.517 1377.79 460.566 1377.99 460.563C1378.19 460.563 1378.37 460.515 1378.54 460.42L1380.75 459.144C1381.03 458.979 1381.31 458.894 1381.59 458.891C1381.87 458.887 1382.17 458.948 1382.47 459.072C1382.26 458.896 1382.15 458.728 1382.15 458.566C1382.16 458.405 1382.31 458.242 1382.6 458.077L1384.82 456.795C1384.97 456.704 1385.05 456.599 1385.05 456.482C1385.06 456.368 1384.97 456.26 1384.8 456.157L1383.86 455.618L1384.94 454.997L1386.14 455.69C1386.44 455.862 1386.65 456.038 1386.79 456.218C1386.92 456.397 1386.95 456.586 1386.87 456.784C1386.8 456.979 1386.6 457.173 1386.26 457.367L1384.04 458.654C1383.83 458.772 1383.74 458.894 1383.76 459.023C1383.78 459.147 1383.95 459.298 1384.25 459.474L1383.18 460.095C1382.87 459.919 1382.61 459.826 1382.39 459.815C1382.17 459.8 1381.96 459.853 1381.75 459.974L1379.53 461.256C1379.19 461.454 1378.85 461.573 1378.51 461.613C1378.17 461.657 1377.84 461.641 1377.53 461.564C1377.22 461.487 1376.91 461.362 1376.61 461.19L1375.41 460.497L1376.49 459.875Z" fill="#5F52FF"/>
|
|
187
|
+
<path d="M1297.38 504.844L1295.69 503.87L1295.69 502.583L1297.38 503.557L1297.38 501.621L1298.49 502.264L1298.49 504.2L1300.17 505.168L1300.17 506.455L1298.49 505.487L1298.49 507.435L1297.38 506.791L1297.38 504.844Z" fill="#5F52FF"/>
|
|
188
|
+
<rect x="1.73205" width="72.4008" height="72.4008" transform="matrix(0.866025 -0.5 0.866025 0.5 647.591 675.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
189
|
+
<mask id="path-168-inside-7_83_4466" fill="white">
|
|
190
|
+
<path d="M732.226 685.109L712.352 696.583L647.761 659.292L667.635 647.817L732.226 685.109ZM755.082 671.913L734.213 683.961L669.622 646.67L690.491 634.622L755.082 671.913ZM776.943 659.292L757.069 670.766L692.478 633.474L712.352 622L776.943 659.292Z"/>
|
|
191
|
+
</mask>
|
|
192
|
+
<path d="M732.226 685.109L712.352 696.583L647.761 659.292L667.635 647.817L732.226 685.109ZM755.082 671.913L734.213 683.961L669.622 646.67L690.491 634.622L755.082 671.913ZM776.943 659.292L757.069 670.766L692.478 633.474L712.352 622L776.943 659.292Z" fill="#F8F7FF"/>
|
|
193
|
+
<path d="M732.226 685.109L733.958 686.109C734.914 685.557 734.914 684.661 733.958 684.109L732.226 685.109ZM712.352 696.583L710.62 697.583C711.577 698.135 713.127 698.135 714.084 697.583L712.352 696.583ZM647.761 659.292L646.029 658.292C645.073 658.844 645.073 659.739 646.029 660.292L647.761 659.292ZM667.635 647.817L669.367 646.817C668.41 646.265 666.86 646.265 665.903 646.817L667.635 647.817ZM755.082 671.913L756.814 672.913C757.77 672.361 757.77 671.465 756.814 670.913L755.082 671.913ZM734.213 683.961L732.481 684.961C732.941 685.227 733.564 685.376 734.213 685.376C734.863 685.376 735.486 685.227 735.945 684.961L734.213 683.961ZM669.622 646.67L667.89 645.67C666.934 646.222 666.934 647.118 667.89 647.67L669.622 646.67ZM690.491 634.622L692.223 633.622C691.763 633.356 691.14 633.207 690.491 633.207C689.841 633.207 689.218 633.356 688.759 633.622L690.491 634.622ZM776.943 659.292L778.675 660.292C779.631 659.739 779.631 658.844 778.675 658.292L776.943 659.292ZM757.069 670.766L755.337 671.766C756.294 672.318 757.844 672.318 758.801 671.766L757.069 670.766ZM692.478 633.474L690.746 632.474C690.287 632.739 690.029 633.099 690.029 633.474C690.029 633.849 690.287 634.209 690.746 634.474L692.478 633.474ZM712.352 622L714.084 621C713.127 620.448 711.577 620.448 710.62 621L712.352 622ZM732.226 685.109L730.494 684.109L710.62 695.583L712.352 696.583L714.084 697.583L733.958 686.109L732.226 685.109ZM712.352 696.583L714.084 695.583L649.493 658.292L647.761 659.292L646.029 660.292L710.62 697.583L712.352 696.583ZM647.761 659.292L649.493 660.292L669.367 648.817L667.635 647.817L665.903 646.817L646.029 658.292L647.761 659.292ZM667.635 647.817L665.903 648.817L730.494 686.109L732.226 685.109L733.958 684.109L669.367 646.817L667.635 647.817ZM755.082 671.913L753.35 670.913L732.481 682.961L734.213 683.961L735.945 684.961L756.814 672.913L755.082 671.913ZM734.213 683.961L735.945 682.961L671.355 645.67L669.622 646.67L667.89 647.67L732.481 684.961L734.213 683.961ZM669.622 646.67L671.355 647.67L692.223 635.622L690.491 634.622L688.759 633.622L667.89 645.67L669.622 646.67ZM690.491 634.622L688.759 635.622L753.35 672.913L755.082 671.913L756.814 670.913L692.223 633.622L690.491 634.622ZM776.943 659.292L775.211 658.292L755.337 669.766L757.069 670.766L758.801 671.766L778.675 660.292L776.943 659.292ZM757.069 670.766L758.801 669.766L694.21 632.474L692.478 633.474L690.746 634.474L755.337 671.766L757.069 670.766ZM692.478 633.474L694.21 634.474L714.084 623L712.352 622L710.62 621L690.746 632.474L692.478 633.474ZM712.352 622L710.62 623L775.211 660.292L776.943 659.292L778.675 658.292L714.084 621L712.352 622Z" fill="#5F52FF" mask="url(#path-168-inside-7_83_4466)"/>
|
|
194
|
+
<mask id="path-170-inside-8_83_4466" fill="white">
|
|
195
|
+
<path d="M732.226 670.109L712.352 681.583L647.761 644.292L667.635 632.817L732.226 670.109ZM755.082 656.913L734.213 668.961L669.622 631.67L690.491 619.622L755.082 656.913ZM776.943 644.292L757.069 655.766L692.478 618.474L712.352 607L776.943 644.292Z"/>
|
|
196
|
+
</mask>
|
|
197
|
+
<path d="M732.226 670.109L712.352 681.583L647.761 644.292L667.635 632.817L732.226 670.109ZM755.082 656.913L734.213 668.961L669.622 631.67L690.491 619.622L755.082 656.913ZM776.943 644.292L757.069 655.766L692.478 618.474L712.352 607L776.943 644.292Z" fill="#F8F7FF"/>
|
|
198
|
+
<path d="M732.226 670.109L733.958 671.109C734.914 670.557 734.914 669.661 733.958 669.109L732.226 670.109ZM712.352 681.583L710.62 682.583C711.577 683.135 713.127 683.135 714.084 682.583L712.352 681.583ZM647.761 644.292L646.029 643.292C645.57 643.557 645.312 643.916 645.312 644.292C645.312 644.667 645.57 645.026 646.029 645.292L647.761 644.292ZM667.635 632.817L669.367 631.817C668.41 631.265 666.86 631.265 665.903 631.817L667.635 632.817ZM755.082 656.913L756.814 657.913C757.77 657.361 757.77 656.465 756.814 655.913L755.082 656.913ZM734.213 668.961L732.481 669.961C732.941 670.227 733.564 670.376 734.213 670.376C734.863 670.376 735.486 670.227 735.945 669.961L734.213 668.961ZM669.622 631.67L667.89 630.67C666.934 631.222 666.934 632.118 667.89 632.67L669.622 631.67ZM690.491 619.622L692.223 618.622C691.763 618.356 691.14 618.207 690.491 618.207C689.841 618.207 689.218 618.356 688.759 618.622L690.491 619.622ZM776.943 644.292L778.675 645.292C779.631 644.739 779.631 643.844 778.675 643.292L776.943 644.292ZM757.069 655.766L755.337 656.766C756.294 657.318 757.844 657.318 758.801 656.766L757.069 655.766ZM692.478 618.474L690.746 617.474C689.79 618.026 689.79 618.922 690.746 619.474L692.478 618.474ZM712.352 607L714.084 606C713.127 605.448 711.577 605.448 710.62 606L712.352 607ZM732.226 670.109L730.494 669.109L710.62 680.583L712.352 681.583L714.084 682.583L733.958 671.109L732.226 670.109ZM712.352 681.583L714.084 680.583L649.493 643.292L647.761 644.292L646.029 645.292L710.62 682.583L712.352 681.583ZM647.761 644.292L649.493 645.292L669.367 633.817L667.635 632.817L665.903 631.817L646.029 643.292L647.761 644.292ZM667.635 632.817L665.903 633.817L730.494 671.109L732.226 670.109L733.958 669.109L669.367 631.817L667.635 632.817ZM755.082 656.913L753.35 655.913L732.481 667.961L734.213 668.961L735.945 669.961L756.814 657.913L755.082 656.913ZM734.213 668.961L735.945 667.961L671.355 630.67L669.622 631.67L667.89 632.67L732.481 669.961L734.213 668.961ZM669.622 631.67L671.355 632.67L692.223 620.622L690.491 619.622L688.759 618.622L667.89 630.67L669.622 631.67ZM690.491 619.622L688.759 620.622L753.35 657.913L755.082 656.913L756.814 655.913L692.223 618.622L690.491 619.622ZM776.943 644.292L775.211 643.292L755.337 654.766L757.069 655.766L758.801 656.766L778.675 645.292L776.943 644.292ZM757.069 655.766L758.801 654.766L694.21 617.474L692.478 618.474L690.746 619.474L755.337 656.766L757.069 655.766ZM692.478 618.474L694.21 619.474L714.084 608L712.352 607L710.62 606L690.746 617.474L692.478 618.474ZM712.352 607L710.62 608L775.211 645.292L776.943 644.292L778.675 643.292L714.084 606L712.352 607Z" fill="#5F52FF" mask="url(#path-170-inside-8_83_4466)"/>
|
|
199
|
+
<mask id="path-172-inside-9_83_4466" fill="white">
|
|
200
|
+
<path d="M732.226 655.109L712.352 666.583L647.761 629.292L667.635 617.817L732.226 655.109ZM755.082 641.913L734.213 653.961L669.622 616.67L690.491 604.622L755.082 641.913ZM776.943 629.292L757.069 640.766L692.478 603.474L712.352 592L776.943 629.292Z"/>
|
|
201
|
+
</mask>
|
|
202
|
+
<path d="M732.226 655.109L712.352 666.583L647.761 629.292L667.635 617.817L732.226 655.109ZM755.082 641.913L734.213 653.961L669.622 616.67L690.491 604.622L755.082 641.913ZM776.943 629.292L757.069 640.766L692.478 603.474L712.352 592L776.943 629.292Z" fill="#DAFFF4"/>
|
|
203
|
+
<path d="M732.226 655.109L733.958 656.109C734.914 655.557 734.914 654.661 733.958 654.109L732.226 655.109ZM712.352 666.583L710.62 667.583C711.577 668.135 713.127 668.135 714.084 667.583L712.352 666.583ZM647.761 629.292L646.029 628.292C645.073 628.844 645.073 629.739 646.029 630.292L647.761 629.292ZM667.635 617.817L669.367 616.817C668.41 616.265 666.86 616.265 665.903 616.817L667.635 617.817ZM755.082 641.913L756.814 642.913C757.77 642.361 757.77 641.465 756.814 640.913L755.082 641.913ZM734.213 653.961L732.481 654.961C733.438 655.514 734.989 655.514 735.945 654.961L734.213 653.961ZM669.622 616.67L667.89 615.67C666.934 616.222 666.934 617.118 667.89 617.67L669.622 616.67ZM690.491 604.622L692.223 603.622C691.266 603.069 689.715 603.069 688.759 603.622L690.491 604.622ZM776.943 629.292L778.675 630.292C779.631 629.739 779.631 628.844 778.675 628.292L776.943 629.292ZM757.069 640.766L755.337 641.766C756.294 642.318 757.844 642.318 758.801 641.766L757.069 640.766ZM692.478 603.474L690.746 602.474C689.79 603.026 689.79 603.922 690.746 604.474L692.478 603.474ZM712.352 592L714.084 591C713.127 590.448 711.577 590.448 710.62 591L712.352 592ZM732.226 655.109L730.494 654.109L710.62 665.583L712.352 666.583L714.084 667.583L733.958 656.109L732.226 655.109ZM712.352 666.583L714.084 665.583L649.493 628.292L647.761 629.292L646.029 630.292L710.62 667.583L712.352 666.583ZM647.761 629.292L649.493 630.292L669.367 618.817L667.635 617.817L665.903 616.817L646.029 628.292L647.761 629.292ZM667.635 617.817L665.903 618.817L730.494 656.109L732.226 655.109L733.958 654.109L669.367 616.817L667.635 617.817ZM755.082 641.913L753.35 640.913L732.481 652.961L734.213 653.961L735.945 654.961L756.814 642.913L755.082 641.913ZM734.213 653.961L735.945 652.961L671.355 615.67L669.622 616.67L667.89 617.67L732.481 654.961L734.213 653.961ZM669.622 616.67L671.355 617.67L692.223 605.622L690.491 604.622L688.759 603.622L667.89 615.67L669.622 616.67ZM690.491 604.622L688.759 605.622L753.35 642.913L755.082 641.913L756.814 640.913L692.223 603.622L690.491 604.622ZM776.943 629.292L775.211 628.292L755.337 639.766L757.069 640.766L758.801 641.766L778.675 630.292L776.943 629.292ZM757.069 640.766L758.801 639.766L694.21 602.474L692.478 603.474L690.746 604.474L755.337 641.766L757.069 640.766ZM692.478 603.474L694.21 604.474L714.084 593L712.352 592L710.62 591L690.746 602.474L692.478 603.474ZM712.352 592L710.62 593L775.211 630.292L776.943 629.292L778.675 628.292L714.084 591L712.352 592Z" fill="#5F52FF" mask="url(#path-172-inside-9_83_4466)"/>
|
|
204
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 986.475 641.567)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
205
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 973.475 648.567)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
206
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 998.359 692)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
207
|
+
<rect x="1246.36" y="326" width="72" height="21" fill="#5F52FF"/>
|
|
208
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 344.607)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
209
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 329.82)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
210
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 322.71)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
211
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 315.601)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
212
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 307.762)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
213
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 299.923)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
214
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1231.36 292.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
215
|
+
<rect x="1105.36" y="259" width="72" height="21" fill="#5F52FF"/>
|
|
216
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1090.36 277.45)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
217
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1090.36 262.663)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
218
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1090.36 255.554)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
219
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1090.36 248.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
220
|
+
<rect width="188.633" height="75.32" transform="matrix(0.866025 -0.5 0.866025 0.5 876.359 456.279)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
221
|
+
<rect x="0.866025" width="187.633" height="74.32" transform="matrix(0.866025 -0.5 0.866025 0.5 876.475 456.712)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
222
|
+
<path d="M1042.48 315.41L1043.87 316.213L1043.87 322.692L1047.12 324.568L1047.12 326.009L1042.48 323.33L1042.48 315.41ZM1050.1 327.864C1049.58 327.564 1049.13 327.173 1048.74 326.693C1048.36 326.209 1048.07 325.685 1047.86 325.12C1047.67 324.552 1047.57 323.981 1047.57 323.409C1047.57 322.837 1047.67 322.381 1047.86 322.04C1048.07 321.703 1048.36 321.516 1048.74 321.479C1049.13 321.446 1049.58 321.58 1050.1 321.88C1050.63 322.185 1051.08 322.575 1051.47 323.052C1051.85 323.532 1052.14 324.057 1052.34 324.625C1052.54 325.193 1052.64 325.763 1052.64 326.335C1052.64 326.907 1052.54 327.364 1052.34 327.705C1052.14 328.039 1051.85 328.226 1051.47 328.266C1051.08 328.303 1050.63 328.169 1050.1 327.864ZM1050.1 326.632C1050.38 326.794 1050.61 326.852 1050.79 326.808C1050.97 326.768 1051.11 326.643 1051.19 326.434C1051.28 326.222 1051.32 325.936 1051.32 325.576C1051.32 325.217 1051.28 324.88 1051.19 324.564C1051.11 324.253 1050.97 323.974 1050.79 323.728C1050.61 323.479 1050.38 323.274 1050.1 323.112C1049.83 322.955 1049.6 322.896 1049.42 322.936C1049.24 322.973 1049.11 323.098 1049.02 323.31C1048.93 323.523 1048.88 323.809 1048.88 324.168C1048.88 324.528 1048.93 324.865 1049.02 325.18C1049.11 325.488 1049.24 325.767 1049.42 326.016C1049.6 326.269 1049.83 326.475 1050.1 326.632ZM1055.69 331.092C1055.19 330.799 1054.74 330.415 1054.37 329.942C1054 329.466 1053.72 328.947 1053.52 328.386C1053.32 327.818 1053.23 327.247 1053.23 326.675C1053.23 326.103 1053.32 325.647 1053.52 325.306C1053.72 324.965 1054 324.772 1054.37 324.728C1054.74 324.688 1055.19 324.815 1055.69 325.108C1056.37 325.5 1056.91 326.01 1057.31 326.637C1057.71 327.264 1057.95 327.937 1058.03 328.655L1056.73 327.907C1056.67 327.574 1056.55 327.269 1056.37 326.994C1056.19 326.716 1055.97 326.498 1055.69 326.34C1055.44 326.193 1055.23 326.144 1055.05 326.191C1054.88 326.232 1054.75 326.358 1054.66 326.571C1054.58 326.787 1054.54 327.075 1054.54 327.434C1054.54 327.794 1054.58 328.129 1054.66 328.441C1054.75 328.749 1054.88 329.026 1055.05 329.271C1055.23 329.517 1055.44 329.713 1055.69 329.86C1055.98 330.025 1056.21 330.067 1056.39 329.986C1056.57 329.909 1056.69 329.715 1056.73 329.403L1058.03 330.151C1057.95 330.804 1057.71 331.222 1057.3 331.405C1056.9 331.581 1056.36 331.477 1055.69 331.092ZM1060.28 333.741C1059.74 333.425 1059.3 333.022 1058.97 332.531C1058.64 332.032 1058.47 331.508 1058.47 330.958C1058.47 330.62 1058.54 330.377 1058.67 330.226C1058.81 330.072 1059.02 330.003 1059.3 330.017C1059.59 330.036 1059.95 330.131 1060.41 330.303L1061.81 330.831L1061.81 330.534C1061.81 330.278 1061.75 330.048 1061.61 329.847C1061.48 329.645 1061.26 329.456 1060.96 329.28C1060.67 329.115 1060.44 329.051 1060.26 329.088C1060.09 329.128 1060 329.286 1060 329.561L1058.71 328.818C1058.72 328.177 1058.93 327.81 1059.34 327.718C1059.76 327.623 1060.29 327.764 1060.95 328.142C1061.65 328.549 1062.18 329.005 1062.54 329.511C1062.9 330.021 1063.08 330.547 1063.08 331.09L1063.08 335.226L1061.85 334.516L1061.85 333.878C1061.65 334.032 1061.42 334.096 1061.16 334.071C1060.9 334.041 1060.61 333.931 1060.28 333.741ZM1060.61 332.85C1060.82 332.974 1061.02 333.044 1061.2 333.059C1061.38 333.077 1061.53 333.024 1061.64 332.899C1061.76 332.775 1061.81 332.569 1061.81 332.283L1061.81 331.799L1060.65 331.403C1060.35 331.293 1060.13 331.255 1060 331.288C1059.86 331.313 1059.8 331.44 1059.8 331.667C1059.8 331.887 1059.86 332.102 1060 332.311C1060.14 332.516 1060.34 332.696 1060.61 332.85ZM1063.95 327.805L1065.24 328.553L1065.24 336.473L1063.95 335.725L1063.95 327.805ZM1042.4 328.566L1043.66 329.292L1043.66 330.106C1043.82 329.908 1044.03 329.794 1044.27 329.765C1044.51 329.736 1044.8 329.818 1045.14 330.013C1045.48 330.21 1045.77 330.473 1046.02 330.799C1046.27 331.125 1046.46 331.499 1046.59 331.921C1046.78 331.705 1047.01 331.58 1047.28 331.547C1047.56 331.51 1047.88 331.595 1048.23 331.8C1048.57 331.998 1048.87 332.26 1049.12 332.586C1049.37 332.916 1049.57 333.292 1049.7 333.714C1049.83 334.136 1049.9 334.581 1049.9 335.051L1049.9 338.615L1048.6 337.867L1048.6 334.478C1048.6 334.126 1048.54 333.806 1048.4 333.516C1048.27 333.226 1048.07 333.003 1047.79 332.845C1047.52 332.687 1047.29 332.662 1047.09 332.768C1046.9 332.878 1046.8 333.186 1046.8 333.692L1046.8 336.827L1045.51 336.079L1045.51 332.691C1045.51 332.339 1045.44 332.016 1045.3 331.723C1045.16 331.433 1044.96 331.211 1044.7 331.057C1044.42 330.896 1044.18 330.869 1043.98 330.975C1043.79 331.085 1043.7 331.393 1043.7 331.899L1043.7 335.034L1042.4 334.286L1042.4 328.566ZM1053.16 340.631C1052.65 340.338 1052.21 339.953 1051.83 339.476C1051.45 338.996 1051.17 338.475 1050.97 337.914C1050.77 337.346 1050.68 336.775 1050.68 336.203C1050.68 335.631 1050.77 335.175 1050.97 334.834C1051.17 334.493 1051.45 334.302 1051.83 334.262C1052.21 334.225 1052.65 334.354 1053.16 334.647C1053.68 334.944 1054.12 335.329 1054.5 335.802C1054.87 336.268 1055.15 336.794 1055.34 337.38C1055.54 337.963 1055.64 338.57 1055.64 339.201L1055.64 339.531L1051.96 337.408C1051.99 337.712 1052.06 337.996 1052.16 338.26C1052.27 338.521 1052.41 338.757 1052.57 338.97C1052.74 339.179 1052.94 339.348 1053.16 339.476C1053.44 339.637 1053.67 339.709 1053.86 339.69C1054.05 339.668 1054.19 339.569 1054.3 339.393L1055.55 340.119C1055.39 340.603 1055.1 340.897 1054.68 340.999C1054.26 341.098 1053.76 340.976 1053.16 340.631ZM1054.34 337.749C1054.28 337.316 1054.15 336.931 1053.94 336.594C1053.74 336.249 1053.48 335.985 1053.16 335.802C1052.84 335.615 1052.58 335.576 1052.37 335.686C1052.17 335.789 1052.04 336.02 1051.97 336.379L1054.34 337.749ZM1056.42 336.66L1057.68 337.386L1057.68 338.2C1057.84 338.002 1058.05 337.889 1058.29 337.859C1058.53 337.83 1058.82 337.912 1059.16 338.107C1059.5 338.305 1059.79 338.567 1060.04 338.893C1060.29 339.22 1060.48 339.594 1060.61 340.015C1060.8 339.799 1061.03 339.674 1061.3 339.641C1061.58 339.605 1061.9 339.689 1062.25 339.894C1062.59 340.092 1062.89 340.354 1063.14 340.681C1063.39 341.011 1063.59 341.387 1063.72 341.808C1063.85 342.23 1063.92 342.675 1063.92 343.145L1063.92 346.709L1062.62 345.961L1062.62 342.573C1062.62 342.221 1062.56 341.9 1062.42 341.61C1062.29 341.321 1062.09 341.097 1061.81 340.939C1061.54 340.782 1061.31 340.756 1061.11 340.862C1060.92 340.972 1060.82 341.28 1060.82 341.786L1060.82 344.921L1059.53 344.173L1059.53 340.785C1059.53 340.433 1059.46 340.111 1059.32 339.817C1059.18 339.528 1058.98 339.306 1058.72 339.152C1058.44 338.99 1058.2 338.963 1058 339.069C1057.81 339.179 1057.72 339.487 1057.72 339.993L1057.72 343.128L1056.42 342.38L1056.42 336.66ZM1067.23 348.753C1066.71 348.452 1066.26 348.062 1065.87 347.581C1065.49 347.097 1065.19 346.573 1064.99 346.008C1064.79 345.44 1064.7 344.87 1064.7 344.298C1064.7 343.726 1064.79 343.269 1064.99 342.928C1065.19 342.591 1065.49 342.404 1065.87 342.367C1066.26 342.334 1066.71 342.468 1067.23 342.769C1067.76 343.073 1068.21 343.464 1068.59 343.94C1068.98 344.421 1069.27 344.945 1069.47 345.513C1069.67 346.082 1069.76 346.652 1069.76 347.224C1069.76 347.796 1069.67 348.252 1069.47 348.593C1069.27 348.927 1068.98 349.114 1068.59 349.154C1068.21 349.191 1067.76 349.057 1067.23 348.753ZM1067.23 347.521C1067.51 347.682 1067.74 347.741 1067.92 347.697C1068.1 347.656 1068.23 347.532 1068.32 347.323C1068.4 347.11 1068.45 346.824 1068.45 346.465C1068.45 346.105 1068.4 345.768 1068.32 345.453C1068.23 345.141 1068.1 344.862 1067.92 344.617C1067.74 344.367 1067.51 344.162 1067.23 344.001C1066.96 343.843 1066.73 343.784 1066.54 343.825C1066.37 343.861 1066.23 343.986 1066.14 344.199C1066.06 344.411 1066.01 344.697 1066.01 345.057C1066.01 345.416 1066.06 345.753 1066.14 346.069C1066.23 346.377 1066.37 346.655 1066.54 346.905C1066.73 347.158 1066.96 347.363 1067.23 347.521ZM1070.54 344.814L1071.8 345.54L1071.8 346.53C1071.96 346.247 1072.16 346.097 1072.41 346.079C1072.66 346.053 1072.95 346.135 1073.28 346.326L1073.68 346.557L1073.68 347.932L1073.22 347.668C1072.93 347.499 1072.68 347.411 1072.48 347.404C1072.27 347.389 1072.12 347.477 1072 347.668C1071.89 347.855 1071.84 348.161 1071.84 348.587L1071.84 351.282L1070.54 350.534L1070.54 344.814ZM1074.19 353.632L1074.99 354.094C1075.14 354.178 1075.25 354.226 1075.34 354.237C1075.43 354.259 1075.5 354.248 1075.55 354.204C1075.6 354.16 1075.65 354.086 1075.7 353.984L1075.83 353.665L1073.96 346.784L1075.36 347.593L1076.54 352.543L1077.68 348.935L1079.07 349.738L1077.07 354.875C1076.96 355.168 1076.83 355.39 1076.7 355.54C1076.57 355.69 1076.39 355.769 1076.18 355.777C1075.97 355.795 1075.7 355.711 1075.38 355.524L1074.19 354.842L1074.19 353.632ZM1044.65 348.916C1043.95 348.513 1043.41 348.02 1043.02 347.437C1042.63 346.854 1042.42 346.236 1042.38 345.583L1043.66 346.32C1043.69 346.639 1043.8 346.92 1043.97 347.162C1044.16 347.407 1044.4 347.616 1044.7 347.789C1045.05 347.99 1045.33 348.056 1045.55 347.987C1045.78 347.928 1045.9 347.649 1045.9 347.151L1045.9 346.458C1045.73 346.615 1045.51 346.69 1045.26 346.683C1045.01 346.672 1044.72 346.571 1044.39 346.381C1043.93 346.113 1043.53 345.759 1043.2 345.319C1042.87 344.879 1042.62 344.393 1042.45 343.862C1042.28 343.323 1042.19 342.774 1042.19 342.217C1042.19 341.652 1042.28 341.203 1042.45 340.869C1042.62 340.528 1042.87 340.329 1043.2 340.27C1043.53 340.211 1043.93 340.316 1044.39 340.583C1044.74 340.782 1045.03 341.027 1045.29 341.32C1045.55 341.617 1045.76 341.955 1045.94 342.332L1045.94 341.606L1047.19 342.332L1047.19 347.899C1047.19 348.449 1047.08 348.843 1046.86 349.081C1046.64 349.327 1046.34 349.431 1045.95 349.395C1045.57 349.358 1045.14 349.198 1044.65 348.916ZM1044.72 345.391C1044.98 345.545 1045.21 345.603 1045.38 345.566C1045.56 345.522 1045.69 345.401 1045.78 345.204C1045.87 344.998 1045.92 344.72 1045.92 344.368C1045.92 344.016 1045.87 343.685 1045.78 343.377C1045.69 343.069 1045.56 342.794 1045.38 342.552C1045.21 342.303 1044.98 342.101 1044.72 341.947C1044.44 341.79 1044.22 341.733 1044.04 341.777C1043.86 341.814 1043.73 341.935 1043.64 342.14C1043.56 342.349 1043.52 342.629 1043.52 342.982C1043.52 343.333 1043.56 343.662 1043.64 343.966C1043.73 344.267 1043.86 344.542 1044.04 344.791C1044.22 345.033 1044.44 345.233 1044.72 345.391ZM1048.18 342.901L1049.44 343.627L1049.44 344.617C1049.6 344.335 1049.8 344.185 1050.05 344.166C1050.29 344.141 1050.58 344.223 1050.91 344.414L1051.31 344.645L1051.31 346.02L1050.86 345.756C1050.56 345.587 1050.32 345.499 1050.11 345.492C1049.91 345.477 1049.75 345.565 1049.64 345.756C1049.53 345.943 1049.47 346.249 1049.47 346.674L1049.47 349.369L1048.18 348.621L1048.18 342.901ZM1053.59 351.879C1053.05 351.564 1052.61 351.16 1052.28 350.669C1051.95 350.17 1051.78 349.646 1051.78 349.096C1051.78 348.759 1051.85 348.515 1051.98 348.364C1052.12 348.21 1052.33 348.141 1052.61 348.155C1052.9 348.174 1053.27 348.269 1053.72 348.441L1055.13 348.969L1055.13 348.672C1055.13 348.416 1055.06 348.187 1054.93 347.985C1054.79 347.783 1054.57 347.594 1054.27 347.418C1053.98 347.253 1053.75 347.189 1053.57 347.226C1053.4 347.266 1053.31 347.424 1053.31 347.699L1052.02 346.956C1052.03 346.315 1052.24 345.948 1052.65 345.856C1053.07 345.761 1053.61 345.902 1054.26 346.28C1054.96 346.687 1055.49 347.143 1055.85 347.649C1056.21 348.159 1056.39 348.685 1056.39 349.228L1056.39 353.364L1055.16 352.654L1055.16 352.016C1054.96 352.17 1054.73 352.235 1054.47 352.209C1054.21 352.18 1053.92 352.07 1053.59 351.879ZM1053.92 350.988C1054.13 351.113 1054.33 351.182 1054.51 351.197C1054.69 351.215 1054.84 351.162 1054.95 351.037C1055.07 350.913 1055.13 350.707 1055.13 350.421L1055.13 349.937L1053.96 349.541C1053.66 349.431 1053.44 349.393 1053.31 349.426C1053.17 349.452 1053.11 349.578 1053.11 349.805C1053.11 350.025 1053.17 350.24 1053.31 350.449C1053.45 350.654 1053.65 350.834 1053.92 350.988ZM1060.06 349.629C1060.52 349.896 1060.92 350.254 1061.25 350.701C1061.58 351.148 1061.83 351.649 1062 352.203C1062.17 352.749 1062.26 353.312 1062.26 353.891C1062.26 354.463 1062.17 354.927 1062 355.283C1061.83 355.631 1061.58 355.842 1061.25 355.915C1060.92 355.981 1060.52 355.88 1060.06 355.613C1059.73 355.422 1059.44 355.184 1059.18 354.898C1058.94 354.608 1058.73 354.282 1058.55 353.919L1058.55 356.812L1057.26 356.064L1057.26 348.144L1058.52 348.87L1058.52 349.629C1058.69 349.442 1058.9 349.344 1059.15 349.337C1059.41 349.33 1059.71 349.427 1060.06 349.629ZM1059.74 350.674C1059.47 350.52 1059.25 350.465 1059.07 350.509C1058.89 350.545 1058.76 350.67 1058.67 350.883C1058.58 351.095 1058.54 351.381 1058.54 351.741C1058.54 352.1 1058.58 352.437 1058.67 352.753C1058.76 353.061 1058.89 353.339 1059.07 353.589C1059.25 353.838 1059.47 354.04 1059.74 354.194C1060.01 354.351 1060.23 354.408 1060.41 354.364C1060.59 354.32 1060.72 354.194 1060.8 353.985C1060.89 353.772 1060.94 353.486 1060.94 353.127C1060.94 352.767 1060.89 352.43 1060.8 352.115C1060.72 351.803 1060.59 351.526 1060.41 351.284C1060.23 351.035 1060.01 350.831 1059.74 350.674ZM1063.04 349.279L1064.33 350.027L1064.33 352.953C1064.52 352.795 1064.73 352.713 1064.99 352.706C1065.24 352.698 1065.53 352.788 1065.86 352.975C1066.23 353.191 1066.55 353.466 1066.81 353.8C1067.07 354.13 1067.27 354.506 1067.41 354.928C1067.55 355.353 1067.62 355.804 1067.62 356.281L1067.62 359.845L1066.33 359.102L1066.33 355.714C1066.33 355.355 1066.26 355.03 1066.11 354.741C1065.97 354.444 1065.73 354.203 1065.42 354.02C1065.24 353.917 1065.07 353.866 1064.9 353.866C1064.74 353.862 1064.61 353.934 1064.49 354.081C1064.39 354.231 1064.33 354.475 1064.33 354.812L1064.33 357.947L1063.04 357.199L1063.04 349.279ZM1070.59 361.692C1069.88 361.285 1069.33 360.805 1068.93 360.251C1068.54 359.701 1068.32 359.067 1068.28 358.348L1069.54 359.074C1069.57 359.445 1069.68 359.755 1069.86 360.004C1070.04 360.257 1070.3 360.481 1070.64 360.675C1070.91 360.833 1071.13 360.904 1071.29 360.889C1071.46 360.867 1071.54 360.757 1071.54 360.559C1071.54 360.42 1071.52 360.295 1071.47 360.185C1071.42 360.075 1071.31 359.94 1071.14 359.778C1070.98 359.613 1070.74 359.404 1070.4 359.151C1069.89 358.755 1069.49 358.392 1069.2 358.062C1068.91 357.732 1068.7 357.417 1068.57 357.116C1068.45 356.819 1068.39 356.506 1068.39 356.176C1068.39 355.633 1068.58 355.318 1068.96 355.23C1069.34 355.142 1069.85 355.283 1070.49 355.653C1071.21 356.064 1071.75 356.554 1072.12 357.122C1072.5 357.683 1072.69 358.271 1072.7 358.887L1071.5 358.194C1071.5 357.846 1071.4 357.553 1071.22 357.314C1071.03 357.076 1070.79 356.871 1070.49 356.698C1070.25 356.555 1070.04 356.493 1069.88 356.511C1069.73 356.533 1069.66 356.64 1069.66 356.83C1069.66 356.97 1069.69 357.102 1069.75 357.226C1069.82 357.347 1069.94 357.489 1070.1 357.65C1070.28 357.808 1070.53 358.011 1070.86 358.26C1071.36 358.645 1071.75 359.001 1072.04 359.327C1072.32 359.646 1072.53 359.958 1072.65 360.262C1072.77 360.559 1072.83 360.873 1072.83 361.203C1072.83 361.768 1072.62 362.088 1072.21 362.165C1071.8 362.239 1071.26 362.081 1070.59 361.692Z" fill="#5F52FF"/>
|
|
223
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 1007.14 399.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
224
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 1007.14 391.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
225
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 1007.14 383.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
226
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 1007.14 375.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
227
|
+
<path d="M1043.35 379V394" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
228
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 1021.04 367.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
229
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 956.138 428.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
230
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 956.138 420.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
231
|
+
<path d="M992.346 424V439" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
232
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 970.037 412.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
233
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 904.138 458.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
234
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 904.138 450.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
235
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 904.138 442.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
236
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 904.138 434.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
237
|
+
<path d="M940.346 438V453" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
238
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 918.036 426.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
239
|
+
<mask id="path-209-inside-10_83_4466" fill="white">
|
|
240
|
+
<path d="M912.359 756.166V772.424L884.359 788.59L856.359 772.424V756.166L884.359 740L912.359 756.166Z"/>
|
|
241
|
+
</mask>
|
|
242
|
+
<path d="M912.359 756.166V772.424L884.359 788.59L856.359 772.424V756.166L884.359 740L912.359 756.166Z" fill="#F8F7FF"/>
|
|
243
|
+
<path d="M912.359 756.166H914.359V755.011L913.359 754.434L912.359 756.166ZM912.359 772.424L913.359 774.156L914.359 773.579V772.424H912.359ZM884.359 788.59L883.359 790.322L884.359 790.899L885.359 790.322L884.359 788.59ZM856.359 772.424H854.359V773.579L855.359 774.156L856.359 772.424ZM856.359 756.166L855.359 754.434L854.359 755.011V756.166H856.359ZM884.359 740L885.359 738.268L884.359 737.691L883.359 738.268L884.359 740ZM912.359 756.166H910.359V772.424H912.359H914.359V756.166H912.359ZM912.359 772.424L911.359 770.692L883.359 786.858L884.359 788.59L885.359 790.322L913.359 774.156L912.359 772.424ZM884.359 788.59L885.359 786.858L857.359 770.692L856.359 772.424L855.359 774.156L883.359 790.322L884.359 788.59ZM856.359 772.424H858.359V756.166H856.359H854.359V772.424H856.359ZM856.359 756.166L857.359 757.898L885.359 741.732L884.359 740L883.359 738.268L855.359 754.434L856.359 756.166ZM884.359 740L883.359 741.732L911.359 757.898L912.359 756.166L913.359 754.434L885.359 738.268L884.359 740Z" fill="#5F52FF" mask="url(#path-209-inside-10_83_4466)"/>
|
|
244
|
+
<rect x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 856.591 757.032)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
245
|
+
<path d="M884.359 772.166L884.359 786.166" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
246
|
+
<mask id="path-213-inside-11_83_4466" fill="white">
|
|
247
|
+
<path d="M912.359 732.166V748.424L884.359 764.59L856.359 748.424V732.166L884.359 716L912.359 732.166Z"/>
|
|
248
|
+
</mask>
|
|
249
|
+
<path d="M912.359 732.166V748.424L884.359 764.59L856.359 748.424V732.166L884.359 716L912.359 732.166Z" fill="#F8F7FF"/>
|
|
250
|
+
<path d="M912.359 732.166H914.359V731.011L913.359 730.434L912.359 732.166ZM912.359 748.424L913.359 750.156L914.359 749.579V748.424H912.359ZM884.359 764.59L883.359 766.322L884.359 766.899L885.359 766.322L884.359 764.59ZM856.359 748.424H854.359V749.579L855.359 750.156L856.359 748.424ZM856.359 732.166L855.359 730.434L854.359 731.011V732.166H856.359ZM884.359 716L885.359 714.268L884.359 713.691L883.359 714.268L884.359 716ZM912.359 732.166H910.359V748.424H912.359H914.359V732.166H912.359ZM912.359 748.424L911.359 746.692L883.359 762.858L884.359 764.59L885.359 766.322L913.359 750.156L912.359 748.424ZM884.359 764.59L885.359 762.858L857.359 746.692L856.359 748.424L855.359 750.156L883.359 766.322L884.359 764.59ZM856.359 748.424H858.359V732.166H856.359H854.359V748.424H856.359ZM856.359 732.166L857.359 733.898L885.359 717.732L884.359 716L883.359 714.268L855.359 730.434L856.359 732.166ZM884.359 716L883.359 717.732L911.359 733.898L912.359 732.166L913.359 730.434L885.359 714.268L884.359 716Z" fill="#5F52FF" mask="url(#path-213-inside-11_83_4466)"/>
|
|
251
|
+
<rect x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 856.591 733.032)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
252
|
+
<path d="M884.359 748.166L884.359 762.166" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
253
|
+
<mask id="path-217-inside-12_83_4466" fill="white">
|
|
254
|
+
<path d="M915.359 704.294L915.357 704.295H915.359V722.295L884.359 740.193L853.359 722.295V704.295H853.361L853.359 704.294L884.359 686.397L915.359 704.294Z"/>
|
|
255
|
+
</mask>
|
|
256
|
+
<path d="M915.359 704.294L915.357 704.295H915.359V722.295L884.359 740.193L853.359 722.295V704.295H853.361L853.359 704.294L884.359 686.397L915.359 704.294Z" fill="#F8F7FF"/>
|
|
257
|
+
<path d="M915.359 704.294L916.254 706.083L919.579 704.421L916.359 702.562L915.359 704.294ZM915.357 704.295L914.463 702.507L915.357 706.295V704.295ZM915.359 704.295H917.359V702.295H915.359V704.295ZM915.359 722.295L916.359 724.027L917.359 723.45V722.295H915.359ZM884.359 740.193L883.359 741.925L884.359 742.502L885.359 741.925L884.359 740.193ZM853.359 722.295H851.359V723.45L852.359 724.027L853.359 722.295ZM853.359 704.295V702.295H851.359V704.295H853.359ZM853.361 704.295V706.295L854.256 702.507L853.361 704.295ZM853.359 704.294L852.359 702.562L849.14 704.421L852.465 706.083L853.359 704.294ZM884.359 686.397L885.359 684.665L884.359 684.088L883.359 684.665L884.359 686.397ZM915.359 704.294L914.465 702.506L914.463 702.507L915.357 704.295L916.252 706.084L916.254 706.083L915.359 704.294ZM915.357 704.295V706.295H915.359V704.295V702.295H915.357V704.295ZM915.359 704.295H913.359V722.295H915.359H917.359V704.295H915.359ZM915.359 722.295L914.359 720.563L883.359 738.461L884.359 740.193L885.359 741.925L916.359 724.027L915.359 722.295ZM884.359 740.193L885.359 738.461L854.359 720.563L853.359 722.295L852.359 724.027L883.359 741.925L884.359 740.193ZM853.359 722.295H855.359V704.295H853.359H851.359V722.295H853.359ZM853.359 704.295V706.295H853.361V704.295V702.295H853.359V704.295ZM853.361 704.295L854.256 702.507L854.254 702.506L853.359 704.294L852.465 706.083L852.467 706.084L853.361 704.295ZM853.359 704.294L854.359 706.026L885.359 688.129L884.359 686.397L883.359 684.665L852.359 702.562L853.359 704.294ZM884.359 686.397L883.359 688.129L914.359 706.026L915.359 704.294L916.359 702.562L885.359 684.665L884.359 686.397Z" fill="#5F52FF" mask="url(#path-217-inside-12_83_4466)"/>
|
|
258
|
+
<rect x="1.73205" width="33.7957" height="33.7957" transform="matrix(0.866025 -0.5 0.866025 0.5 853.591 705.161)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
259
|
+
<path d="M884.359 722.009L884.359 737.509" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
260
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 848.091 696.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
261
|
+
<path d="M884.299 700V715" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
262
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 861.989 688.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
263
|
+
<rect width="26.0469" height="32.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 908.936 392.45)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
264
|
+
<rect x="0.866025" width="25.0469" height="31.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 909.052 392.883)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
265
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 917.593 392.616)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
266
|
+
<rect x="5.96046e-08" y="-1" width="16" height="11.5" transform="matrix(0.866025 -0.5 -0.866025 -0.5 935.981 403)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2"/>
|
|
267
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 924.737 391.491)" stroke="#5F52FF" stroke-width="2"/>
|
|
268
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 935.634 395.825)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
269
|
+
<rect width="45.6628" height="32.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 453 548.023)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
270
|
+
<rect x="0.866025" width="44.6628" height="31.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 453.116 548.456)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
271
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 461.657 548.19)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
272
|
+
<rect x="5.96046e-08" y="-1" width="16" height="11.5" transform="matrix(0.866025 -0.5 -0.866025 -0.5 480.045 558.573)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2"/>
|
|
273
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 468.802 547.065)" stroke="#5F52FF" stroke-width="2"/>
|
|
274
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 479.699 551.398)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
275
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 478.657 538.19)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
276
|
+
<rect x="5.96046e-08" y="-1" width="16" height="11.5" transform="matrix(0.866025 -0.5 -0.866025 -0.5 497.045 548.573)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2"/>
|
|
277
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 485.802 537.065)" stroke="#5F52FF" stroke-width="2"/>
|
|
278
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 496.699 541.398)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
279
|
+
<rect width="62.7477" height="32.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 522 411.831)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
280
|
+
<rect x="0.866025" width="61.7477" height="31.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 522.116 412.264)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
281
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 531.307 412.372)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
282
|
+
<rect x="1.73205" width="16" height="11.5" transform="matrix(0.866025 -0.5 0.866025 0.5 529.359 412.747)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
283
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 538.452 411.247)" stroke="#5F52FF" stroke-width="2"/>
|
|
284
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 549.349 415.581)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
285
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 547.307 403.372)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
286
|
+
<rect x="1.73205" width="16" height="11.5" transform="matrix(0.866025 -0.5 0.866025 0.5 545.359 403.747)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
287
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 554.452 402.247)" stroke="#5F52FF" stroke-width="2"/>
|
|
288
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 565.349 406.581)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
289
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 563.243 393.991)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
290
|
+
<rect x="1.73205" width="16" height="11.5" transform="matrix(0.866025 -0.5 0.866025 0.5 561.294 394.366)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
291
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 570.387 392.866)" stroke="#5F52FF" stroke-width="2"/>
|
|
292
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 581.284 397.2)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
293
|
+
<rect width="45.6628" height="32.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 339 481.831)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
294
|
+
<rect x="0.866025" width="44.6628" height="31.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 339.116 482.264)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
295
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 347.657 481.998)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
296
|
+
<rect x="5.96046e-08" y="-1" width="16" height="11.5" transform="matrix(0.866025 -0.5 -0.866025 -0.5 366.045 492.382)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2"/>
|
|
297
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 354.802 480.873)" stroke="#5F52FF" stroke-width="2"/>
|
|
298
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 365.699 485.206)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
299
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 364.657 471.998)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
300
|
+
<rect x="5.96046e-08" y="-1" width="16" height="11.5" transform="matrix(0.866025 -0.5 -0.866025 -0.5 383.045 482.382)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2"/>
|
|
301
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 371.802 470.873)" stroke="#5F52FF" stroke-width="2"/>
|
|
302
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 382.699 475.206)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
303
|
+
<rect width="26.0469" height="32.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 860 364.023)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
304
|
+
<rect x="0.866025" width="25.0469" height="31.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 860.116 364.456)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
305
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 869.307 364.564)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
306
|
+
<rect x="1.73205" width="16" height="11.5" transform="matrix(0.866025 -0.5 0.866025 0.5 867.359 364.939)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
307
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 876.452 363.439)" stroke="#5F52FF" stroke-width="2"/>
|
|
308
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 887.349 367.773)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
309
|
+
<path d="M534.572 497.41L536.601 498.581L538.268 505.209L539.925 500.501L541.954 501.672L541.954 509.593L540.621 508.823L540.621 502.948L538.858 507.805L537.677 507.123L535.905 500.226L535.905 506.1L534.572 505.33L534.572 497.41ZM547.599 512.851L546.342 512.125L546.342 511.344C546.157 511.517 545.935 511.612 545.675 511.63C545.414 511.641 545.116 511.55 544.779 511.355C544.405 511.139 544.084 510.866 543.817 510.536C543.557 510.202 543.357 509.823 543.217 509.397C543.084 508.976 543.017 508.527 543.017 508.05L543.017 504.486L544.303 505.228L544.303 508.616C544.303 508.976 544.376 509.304 544.522 509.601C544.668 509.891 544.9 510.127 545.217 510.31C545.395 510.413 545.564 510.466 545.722 510.47C545.888 510.47 546.024 510.395 546.132 510.244C546.246 510.098 546.303 509.856 546.303 509.518L546.303 506.383L547.599 507.131L547.599 512.851ZM548.589 505.503L549.885 506.251L549.885 514.171L548.589 513.423L548.589 505.503ZM552.812 515.861C552.501 515.681 552.243 515.492 552.04 515.294C551.837 515.089 551.675 514.842 551.554 514.552C551.44 514.266 551.383 513.925 551.383 513.529L551.383 510.449L550.525 509.954L550.525 508.821L551.383 509.316L551.383 507.556L552.678 508.304L552.678 510.064L553.917 510.779L553.917 511.912L552.678 511.197L552.678 514.123C552.678 514.306 552.713 514.462 552.783 514.59C552.853 514.711 552.974 514.821 553.145 514.92L553.917 515.366L553.917 516.499L552.812 515.861ZM554.645 511.2L555.941 511.948L555.941 517.668L554.645 516.92L554.645 511.2ZM554.645 509L555.941 509.748L555.941 511.079L554.645 510.331L554.645 509ZM561.037 520.742C560.332 520.335 559.779 519.854 559.379 519.301C558.985 518.751 558.77 518.116 558.731 517.398L559.989 518.124C560.021 518.494 560.125 518.804 560.303 519.053C560.487 519.306 560.748 519.53 561.084 519.724C561.357 519.882 561.577 519.953 561.742 519.939C561.907 519.917 561.989 519.807 561.989 519.609C561.989 519.469 561.964 519.345 561.913 519.235C561.862 519.125 561.754 518.989 561.589 518.828C561.431 518.663 561.183 518.454 560.846 518.201C560.338 517.805 559.938 517.442 559.646 517.112C559.354 516.782 559.144 516.466 559.017 516.166C558.897 515.869 558.836 515.555 558.836 515.225C558.836 514.683 559.027 514.367 559.408 514.279C559.789 514.191 560.3 514.332 560.942 514.703C561.653 515.113 562.196 515.603 562.571 516.171C562.945 516.732 563.139 517.321 563.152 517.937L561.951 517.244C561.945 516.895 561.85 516.602 561.666 516.364C561.481 516.125 561.24 515.92 560.942 515.748C560.694 515.605 560.491 515.542 560.332 515.561C560.179 515.583 560.103 515.689 560.103 515.88C560.103 516.019 560.135 516.151 560.198 516.276C560.268 516.397 560.386 516.538 560.551 516.699C560.722 516.857 560.973 517.06 561.304 517.31C561.805 517.695 562.199 518.05 562.485 518.377C562.771 518.696 562.974 519.007 563.094 519.312C563.215 519.609 563.275 519.922 563.275 520.252C563.275 520.817 563.069 521.138 562.656 521.215C562.25 521.288 561.71 521.13 561.037 520.742ZM566.216 523.732C565.708 523.439 565.264 523.054 564.882 522.577C564.508 522.097 564.222 521.576 564.025 521.015C563.828 520.447 563.73 519.877 563.73 519.305C563.73 518.733 563.828 518.276 564.025 517.935C564.222 517.594 564.508 517.403 564.882 517.363C565.264 517.326 565.708 517.455 566.216 517.748C566.731 518.045 567.175 518.43 567.55 518.903C567.925 519.369 568.207 519.895 568.398 520.482C568.595 521.065 568.693 521.671 568.693 522.302L568.693 522.632L565.016 520.509C565.048 520.813 565.114 521.098 565.216 521.362C565.324 521.622 565.46 521.858 565.626 522.071C565.797 522.28 565.994 522.449 566.216 522.577C566.496 522.738 566.727 522.81 566.912 522.792C567.102 522.77 567.248 522.671 567.35 522.495L568.607 523.221C568.442 523.705 568.15 523.998 567.731 524.101C567.318 524.2 566.813 524.077 566.216 523.732ZM567.397 520.85C567.334 520.417 567.201 520.032 566.997 519.695C566.794 519.35 566.534 519.086 566.216 518.903C565.892 518.716 565.629 518.678 565.425 518.788C565.222 518.89 565.089 519.121 565.025 519.481L567.397 520.85ZM569.475 519.761L570.732 520.487L570.732 521.477C570.891 521.195 571.094 521.045 571.342 521.026C571.59 521.001 571.878 521.083 572.209 521.274L572.609 521.505L572.609 522.88L572.152 522.616C571.859 522.447 571.612 522.359 571.409 522.352C571.205 522.337 571.047 522.425 570.932 522.616C570.824 522.803 570.77 523.109 570.77 523.534L570.77 526.229L569.475 525.481L569.475 519.761ZM572.888 521.732L574.288 522.54L575.507 527.545L576.708 523.937L578.099 524.74L576.241 529.388L574.755 528.53L572.888 521.732ZM578.629 525.046L579.924 525.794L579.924 531.514L578.629 530.766L578.629 525.046ZM578.629 522.846L579.924 523.594L579.924 524.925L578.629 524.177L578.629 522.846ZM583.185 533.529C582.677 533.236 582.235 532.852 581.861 532.379C581.492 531.903 581.21 531.384 581.013 530.823C580.816 530.255 580.718 529.684 580.718 529.112C580.718 528.54 580.816 528.084 581.013 527.743C581.21 527.402 581.492 527.209 581.861 527.165C582.235 527.125 582.677 527.252 583.185 527.545C583.864 527.937 584.404 528.447 584.804 529.074C585.204 529.701 585.443 530.374 585.519 531.092L584.223 530.344C584.166 530.011 584.045 529.706 583.861 529.431C583.683 529.153 583.458 528.935 583.185 528.777C582.931 528.63 582.718 528.581 582.547 528.628C582.375 528.669 582.245 528.795 582.156 529.008C582.073 529.224 582.032 529.512 582.032 529.871C582.032 530.231 582.073 530.566 582.156 530.878C582.245 531.186 582.375 531.463 582.547 531.708C582.718 531.954 582.931 532.15 583.185 532.297C583.471 532.462 583.702 532.504 583.88 532.423C584.064 532.346 584.179 532.152 584.223 531.84L585.519 532.588C585.443 533.241 585.201 533.659 584.795 533.842C584.388 534.018 583.852 533.914 583.185 533.529ZM588.497 536.596C587.989 536.302 587.544 535.917 587.163 535.441C586.788 534.96 586.503 534.44 586.306 533.879C586.109 533.31 586.011 532.74 586.011 532.168C586.011 531.596 586.109 531.14 586.306 530.799C586.503 530.458 586.788 530.267 587.163 530.227C587.544 530.19 587.989 530.318 588.497 530.612C589.011 530.909 589.456 531.294 589.831 531.767C590.205 532.232 590.488 532.759 590.678 533.345C590.875 533.928 590.974 534.535 590.974 535.166L590.974 535.496L587.297 533.373C587.328 533.677 587.395 533.961 587.497 534.225C587.605 534.486 587.741 534.722 587.906 534.935C588.078 535.144 588.275 535.312 588.497 535.441C588.776 535.602 589.008 535.674 589.192 535.655C589.383 535.633 589.529 535.534 589.63 535.358L590.888 536.084C590.723 536.568 590.431 536.862 590.012 536.964C589.599 537.063 589.094 536.94 588.497 536.596ZM589.678 533.714C589.615 533.281 589.481 532.896 589.278 532.559C589.075 532.214 588.814 531.95 588.497 531.767C588.173 531.58 587.909 531.541 587.706 531.651C587.503 531.754 587.37 531.985 587.306 532.344L589.678 533.714ZM536.429 517.403C536.118 517.223 535.861 517.034 535.658 516.836C535.454 516.631 535.292 516.383 535.172 516.093C535.057 515.807 535 515.466 535 515.07L535 511.99L534.143 511.495L534.143 510.362L535 510.857L535 509.097L536.296 509.845L536.296 511.605L537.534 512.32L537.534 513.453L536.296 512.738L536.296 515.664C536.296 515.848 536.331 516.004 536.401 516.132C536.47 516.253 536.591 516.363 536.763 516.462L537.534 516.908L537.534 518.041L536.429 517.403ZM538.272 512.747L539.53 513.473L539.53 514.463C539.689 514.18 539.892 514.03 540.14 514.012C540.387 513.986 540.676 514.068 541.006 514.259L541.407 514.49L541.407 515.865L540.949 515.601C540.657 515.432 540.409 515.344 540.206 515.337C540.003 515.322 539.844 515.41 539.73 515.601C539.622 515.788 539.568 516.094 539.568 516.52L539.568 519.215L538.272 518.467L538.272 512.747ZM543.686 521.724C543.14 521.409 542.702 521.006 542.371 520.514C542.041 520.016 541.876 519.491 541.876 518.941C541.876 518.604 541.943 518.36 542.076 518.21C542.216 518.056 542.425 517.986 542.705 518.001C542.991 518.019 543.359 518.114 543.81 518.287L545.22 518.815L545.22 518.518C545.22 518.261 545.153 518.032 545.02 517.83C544.886 517.629 544.667 517.44 544.362 517.264C544.076 517.099 543.845 517.035 543.667 517.071C543.495 517.112 543.406 517.269 543.4 517.544L542.114 516.802C542.12 516.16 542.33 515.793 542.743 515.702C543.162 515.606 543.699 515.748 544.353 516.125C545.058 516.532 545.588 516.989 545.944 517.495C546.306 518.004 546.487 518.531 546.487 519.073L546.487 523.209L545.258 522.5L545.258 521.862C545.055 522.016 544.823 522.08 544.562 522.054C544.308 522.025 544.016 521.915 543.686 521.724ZM544.01 520.833C544.226 520.958 544.423 521.028 544.6 521.042C544.785 521.061 544.934 521.007 545.048 520.883C545.162 520.758 545.22 520.553 545.22 520.267L545.22 519.783L544.057 519.387C543.753 519.277 543.533 519.238 543.4 519.271C543.267 519.297 543.2 519.423 543.2 519.651C543.2 519.871 543.267 520.085 543.4 520.294C543.54 520.5 543.743 520.679 544.01 520.833ZM547.352 517.989L548.61 518.715L548.61 519.496C548.794 519.324 549.016 519.232 549.276 519.221C549.537 519.203 549.835 519.291 550.172 519.485C550.547 519.701 550.864 519.976 551.125 520.31C551.391 520.64 551.591 521.016 551.725 521.437C551.864 521.863 551.934 522.314 551.934 522.79L551.934 526.354L550.648 525.612L550.648 522.224C550.648 521.865 550.575 521.54 550.429 521.25C550.283 520.953 550.051 520.713 549.734 520.53C549.556 520.427 549.384 520.376 549.219 520.376C549.061 520.372 548.924 520.444 548.81 520.59C548.702 520.741 548.648 520.985 548.648 521.322L548.648 524.457L547.352 523.709L547.352 517.989ZM554.906 528.202C554.201 527.795 553.649 527.315 553.249 526.761C552.855 526.211 552.639 525.577 552.601 524.858L553.858 525.584C553.89 525.954 553.995 526.264 554.173 526.514C554.357 526.767 554.617 526.99 554.954 527.185C555.227 527.342 555.446 527.414 555.611 527.399C555.776 527.377 555.859 527.267 555.859 527.069C555.859 526.93 555.833 526.805 555.783 526.695C555.732 526.585 555.624 526.449 555.459 526.288C555.3 526.123 555.052 525.914 554.716 525.661C554.207 525.265 553.807 524.902 553.515 524.572C553.223 524.242 553.014 523.927 552.887 523.626C552.766 523.329 552.706 523.016 552.706 522.686C552.706 522.143 552.896 521.828 553.277 521.74C553.658 521.652 554.169 521.793 554.811 522.163C555.522 522.574 556.065 523.063 556.44 523.632C556.815 524.193 557.008 524.781 557.021 525.397L555.821 524.704C555.814 524.356 555.719 524.062 555.535 523.824C555.351 523.586 555.109 523.38 554.811 523.208C554.563 523.065 554.36 523.003 554.201 523.021C554.049 523.043 553.973 523.149 553.973 523.34C553.973 523.479 554.004 523.611 554.068 523.736C554.138 523.857 554.255 523.998 554.42 524.16C554.592 524.317 554.843 524.521 555.173 524.77C555.675 525.155 556.068 525.511 556.354 525.837C556.64 526.156 556.843 526.468 556.964 526.772C557.084 527.069 557.145 527.383 557.145 527.713C557.145 528.277 556.938 528.598 556.526 528.675C556.119 528.748 555.579 528.591 554.906 528.202ZM559.361 530.774C558.815 530.459 558.377 530.056 558.047 529.564C557.717 529.066 557.551 528.541 557.551 527.991C557.551 527.654 557.618 527.41 557.752 527.26C557.891 527.106 558.101 527.036 558.38 527.051C558.666 527.069 559.034 527.165 559.485 527.337L560.895 527.865L560.895 527.568C560.895 527.311 560.829 527.082 560.695 526.88C560.562 526.679 560.343 526.49 560.038 526.314C559.752 526.149 559.52 526.085 559.342 526.121C559.171 526.162 559.082 526.319 559.076 526.594L557.79 525.852C557.796 525.21 558.006 524.844 558.418 524.752C558.838 524.657 559.374 524.798 560.028 525.175C560.733 525.582 561.264 526.039 561.619 526.545C561.981 527.055 562.162 527.581 562.162 528.123L562.162 532.259L560.933 531.55L560.933 530.912C560.73 531.066 560.498 531.13 560.238 531.104C559.984 531.075 559.692 530.965 559.361 530.774ZM559.685 529.883C559.901 530.008 560.098 530.078 560.276 530.092C560.46 530.111 560.609 530.058 560.724 529.933C560.838 529.808 560.895 529.603 560.895 529.317L560.895 528.833L559.733 528.437C559.428 528.327 559.209 528.288 559.076 528.321C558.942 528.347 558.876 528.474 558.876 528.701C558.876 528.921 558.942 529.135 559.076 529.344C559.215 529.55 559.419 529.729 559.685 529.883ZM565.304 534.206C564.796 533.912 564.355 533.529 563.98 533.056C563.612 532.579 563.329 532.061 563.132 531.5C562.936 530.931 562.837 530.361 562.837 529.789C562.837 529.217 562.936 528.761 563.132 528.42C563.329 528.079 563.612 527.886 563.98 527.842C564.355 527.802 564.796 527.928 565.304 528.222C565.984 528.614 566.524 529.124 566.924 529.751C567.324 530.378 567.562 531.05 567.638 531.769L566.343 531.021C566.286 530.687 566.165 530.383 565.981 530.108C565.803 529.829 565.578 529.611 565.304 529.454C565.05 529.307 564.838 529.257 564.666 529.305C564.495 529.345 564.365 529.472 564.276 529.685C564.193 529.901 564.152 530.189 564.152 530.548C564.152 530.907 564.193 531.243 564.276 531.555C564.365 531.863 564.495 532.139 564.666 532.385C564.838 532.631 565.05 532.827 565.304 532.974C565.59 533.139 565.822 533.181 566 533.1C566.184 533.023 566.298 532.829 566.343 532.517L567.638 533.265C567.562 533.918 567.321 534.336 566.914 534.519C566.508 534.695 565.971 534.591 565.304 534.206ZM570.274 536.943C569.962 536.763 569.705 536.574 569.502 536.376C569.299 536.171 569.137 535.923 569.016 535.634C568.902 535.348 568.845 535.007 568.845 534.611L568.845 531.531L567.987 531.036L567.987 529.903L568.845 530.398L568.845 528.638L570.14 529.386L570.14 531.146L571.379 531.861L571.379 532.994L570.14 532.279L570.14 535.205C570.14 535.388 570.175 535.544 570.245 535.672C570.315 535.793 570.435 535.903 570.607 536.002L571.379 536.448L571.379 537.581L570.274 536.943ZM572.107 532.281L573.403 533.029L573.403 538.749L572.107 538.001L572.107 532.281ZM572.107 530.081L573.403 530.829L573.403 532.16L572.107 531.412L572.107 530.081ZM576.711 540.791C576.19 540.491 575.736 540.1 575.349 539.62C574.968 539.136 574.676 538.611 574.472 538.047C574.276 537.478 574.177 536.908 574.177 536.336C574.177 535.764 574.276 535.308 574.472 534.967C574.676 534.629 574.968 534.442 575.349 534.406C575.736 534.373 576.19 534.507 576.711 534.807C577.238 535.112 577.692 535.502 578.073 535.979C578.461 536.459 578.753 536.983 578.95 537.552C579.147 538.12 579.245 538.69 579.245 539.262C579.245 539.834 579.147 540.291 578.95 540.632C578.753 540.965 578.461 541.152 578.073 541.193C577.692 541.229 577.238 541.096 576.711 540.791ZM576.711 539.559C576.991 539.721 577.219 539.779 577.397 539.735C577.581 539.695 577.715 539.57 577.797 539.361C577.886 539.149 577.93 538.863 577.93 538.503C577.93 538.144 577.886 537.807 577.797 537.491C577.715 537.18 577.581 536.901 577.397 536.655C577.219 536.406 576.991 536.201 576.711 536.039C576.438 535.882 576.209 535.823 576.025 535.863C575.847 535.9 575.714 536.025 575.625 536.237C575.536 536.45 575.492 536.736 575.492 537.095C575.492 537.455 575.536 537.792 575.625 538.107C575.714 538.415 575.847 538.694 576.025 538.943C576.209 539.196 576.438 539.402 576.711 539.559ZM580.024 536.852L581.282 537.578L581.282 538.359C581.466 538.187 581.688 538.095 581.949 538.084C582.209 538.066 582.507 538.154 582.844 538.348C583.219 538.564 583.536 538.839 583.797 539.173C584.063 539.503 584.263 539.879 584.397 540.301C584.537 540.726 584.606 541.177 584.606 541.654L584.606 545.218L583.32 544.475L583.32 541.087C583.32 540.728 583.247 540.403 583.101 540.114C582.955 539.817 582.723 539.576 582.406 539.393C582.228 539.29 582.057 539.239 581.891 539.239C581.733 539.235 581.596 539.307 581.482 539.454C581.374 539.604 581.32 539.848 581.32 540.185L581.32 543.32L580.024 542.572L580.024 536.852ZM537.296 529.035C536.947 528.833 536.645 528.582 536.391 528.282C536.137 527.981 535.924 527.638 535.753 527.253L535.753 528.012L534.495 527.286L534.495 519.366L535.791 520.114L535.791 522.996C535.962 522.831 536.172 522.75 536.42 522.754C536.674 522.761 536.966 522.86 537.296 523.051C537.76 523.319 538.157 523.676 538.487 524.123C538.817 524.571 539.068 525.071 539.239 525.625C539.411 526.171 539.497 526.734 539.497 527.313C539.497 527.885 539.411 528.349 539.239 528.705C539.068 529.053 538.817 529.264 538.487 529.338C538.157 529.404 537.76 529.303 537.296 529.035ZM536.972 527.616C537.245 527.774 537.471 527.831 537.649 527.787C537.826 527.743 537.957 527.616 538.039 527.407C538.128 527.194 538.173 526.908 538.173 526.549C538.173 526.19 538.128 525.852 538.039 525.537C537.957 525.225 537.826 524.948 537.649 524.707C537.471 524.457 537.245 524.254 536.972 524.096C536.705 523.942 536.483 523.887 536.305 523.931C536.128 523.968 535.994 524.092 535.905 524.305C535.816 524.518 535.772 524.804 535.772 525.163C535.772 525.522 535.816 525.86 535.905 526.175C535.994 526.483 536.128 526.762 536.305 527.011C536.483 527.26 536.705 527.462 536.972 527.616ZM544.855 533.267L543.597 532.541L543.597 531.76C543.413 531.932 543.191 532.028 542.93 532.046C542.67 532.057 542.371 531.965 542.035 531.771C541.66 531.555 541.339 531.281 541.073 530.951C540.812 530.618 540.612 530.238 540.473 529.813C540.339 529.391 540.273 528.942 540.273 528.465L540.273 524.901L541.559 525.644L541.559 529.032C541.559 529.391 541.632 529.719 541.778 530.016C541.924 530.306 542.156 530.543 542.473 530.726C542.651 530.829 542.819 530.882 542.978 530.885C543.143 530.885 543.28 530.81 543.388 530.66C543.502 530.513 543.559 530.271 543.559 529.934L543.559 526.799L544.855 527.547L544.855 533.267ZM547.827 535.115C547.122 534.708 546.569 534.227 546.169 533.674C545.775 533.124 545.559 532.489 545.521 531.771L546.779 532.497C546.81 532.867 546.915 533.177 547.093 533.426C547.277 533.679 547.538 533.903 547.874 534.097C548.147 534.255 548.366 534.326 548.531 534.312C548.697 534.29 548.779 534.18 548.779 533.982C548.779 533.842 548.754 533.718 548.703 533.608C548.652 533.498 548.544 533.362 548.379 533.201C548.22 533.036 547.973 532.827 547.636 532.574C547.128 532.178 546.728 531.815 546.436 531.485C546.144 531.155 545.934 530.839 545.807 530.539C545.686 530.242 545.626 529.928 545.626 529.598C545.626 529.056 545.816 528.74 546.198 528.652C546.579 528.564 547.09 528.705 547.731 529.076C548.443 529.486 548.986 529.976 549.36 530.544C549.735 531.105 549.929 531.694 549.941 532.31L548.741 531.617C548.735 531.268 548.639 530.975 548.455 530.737C548.271 530.498 548.03 530.293 547.731 530.121C547.484 529.978 547.28 529.915 547.122 529.934C546.969 529.956 546.893 530.062 546.893 530.253C546.893 530.392 546.925 530.524 546.988 530.649C547.058 530.77 547.176 530.911 547.341 531.072C547.512 531.23 547.763 531.433 548.093 531.683C548.595 532.068 548.989 532.423 549.274 532.75C549.56 533.069 549.764 533.38 549.884 533.685C550.005 533.982 550.065 534.295 550.065 534.625C550.065 535.19 549.859 535.511 549.446 535.588C549.04 535.661 548.5 535.503 547.827 535.115Z" fill="#5F52FF"/>
|
|
310
|
+
<path d="M540.885 563.896L570.927 568.532L578.958 585.878L556.947 598.586L526.903 593.95L518.873 576.604L540.885 563.896Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
311
|
+
<path d="M540.885 556.896L570.927 561.532L578.958 578.878L556.947 591.586L526.903 586.95L518.873 569.604L540.885 556.896Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
312
|
+
<path d="M540.885 548.896L570.927 553.532L578.958 570.878L556.947 583.586L526.903 578.95L518.873 561.604L540.885 548.896Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
313
|
+
<path d="M540.885 540.896L570.927 545.532L578.958 562.878L556.947 575.586L526.903 570.95L518.873 553.604L540.885 540.896Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
314
|
+
<path d="M544.336 548.35L561.468 550.994L566.049 560.885L553.496 568.133L536.362 565.489L531.783 555.597L544.336 548.35Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
315
|
+
<path d="M544.336 543.166L561.468 545.81L566.049 555.701L553.496 562.949L536.362 560.305L531.783 550.413L544.336 543.166Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
316
|
+
<path d="M312.488 474.489L314.117 473.548L323.624 475.979L322.147 476.832L320.156 476.298L317.251 477.976L318.165 479.131L316.736 479.956L312.488 474.489ZM318.566 475.853L314.631 474.791L316.479 477.057L318.566 475.853ZM326.97 474.18C326.462 474.473 325.91 474.664 325.313 474.752C324.716 474.832 324.125 474.818 323.541 474.708C322.95 474.594 322.407 474.394 321.912 474.108C321.416 473.822 321.07 473.509 320.873 473.168C320.676 472.827 320.651 472.486 320.797 472.145C320.95 471.8 321.28 471.481 321.788 471.188C322.467 470.795 323.179 470.583 323.922 470.55C324.665 470.517 325.367 470.647 326.027 470.94L324.731 471.688C324.414 471.571 324.09 471.523 323.76 471.545C323.43 471.56 323.128 471.646 322.855 471.804C322.601 471.95 322.452 472.11 322.407 472.282C322.356 472.451 322.401 472.627 322.54 472.81C322.686 472.99 322.915 473.169 323.226 473.349C323.538 473.529 323.849 473.661 324.16 473.745C324.471 473.822 324.776 473.848 325.074 473.822C325.373 473.796 325.649 473.71 325.903 473.564C326.189 473.399 326.341 473.219 326.36 473.025C326.386 472.827 326.275 472.63 326.027 472.436L327.323 471.688C327.85 472.08 328.091 472.498 328.047 472.942C327.996 473.382 327.637 473.795 326.97 474.18ZM332.206 471.025C331.895 471.204 331.603 471.333 331.33 471.41C331.05 471.483 330.755 471.5 330.444 471.459C330.139 471.415 329.815 471.294 329.472 471.096L326.805 469.556L325.947 470.051L324.966 469.485L325.823 468.99L324.299 468.11L325.595 467.362L327.119 468.242L328.357 467.527L329.339 468.093L328.1 468.808L330.634 470.271C330.793 470.363 330.945 470.411 331.091 470.414C331.231 470.414 331.387 470.365 331.558 470.266L332.33 469.82L333.311 470.387L332.206 471.025Z" fill="#6CD3FF"/>
|
|
317
|
+
<path d="M350.373 451.71L352.983 450.203C353.752 449.759 354.542 449.475 355.355 449.35C356.168 449.218 356.959 449.228 357.727 449.378C358.496 449.528 359.213 449.796 359.88 450.181C360.541 450.562 361.001 450.975 361.261 451.418C361.522 451.862 361.541 452.32 361.319 452.793C361.103 453.263 360.61 453.719 359.842 454.163L357.232 455.67L350.373 451.71ZM358.642 453.47C359.105 453.202 359.391 452.927 359.499 452.645C359.607 452.355 359.566 452.075 359.375 451.803C359.178 451.528 358.864 451.266 358.432 451.017C357.994 450.764 357.54 450.582 357.07 450.472C356.594 450.359 356.108 450.335 355.612 450.401C355.123 450.463 354.647 450.628 354.183 450.896L352.964 451.6L357.422 454.174L358.642 453.47ZM366.859 450.244C366.35 450.537 365.795 450.73 365.191 450.822C364.588 450.906 363.994 450.893 363.41 450.783C362.819 450.669 362.276 450.47 361.781 450.184C361.286 449.898 360.94 449.584 360.743 449.243C360.546 448.902 360.524 448.559 360.676 448.215C360.835 447.866 361.168 447.545 361.676 447.252C362.191 446.955 362.746 446.763 363.343 446.675C363.934 446.583 364.531 446.601 365.134 446.73C365.738 446.851 366.312 447.069 366.859 447.384L367.144 447.549L363.467 449.672C363.747 449.797 364.026 449.881 364.305 449.925C364.585 449.962 364.858 449.962 365.125 449.925C365.391 449.881 365.636 449.795 365.858 449.667C366.138 449.505 366.316 449.34 366.392 449.172C366.468 448.996 366.455 448.82 366.354 448.644L367.611 447.918C367.948 448.303 368.056 448.702 367.935 449.117C367.814 449.524 367.455 449.899 366.859 450.244ZM364.953 447.78C364.547 447.619 364.147 447.542 363.753 447.549C363.353 447.553 362.994 447.646 362.676 447.83C362.353 448.017 362.187 448.226 362.181 448.457C362.168 448.684 362.302 448.915 362.581 449.15L364.953 447.78ZM366.916 445.492L366.059 445.987L365.078 445.42L365.935 444.925L365.325 444.573C364.989 444.379 364.782 444.194 364.706 444.018C364.636 443.838 364.668 443.669 364.801 443.512C364.928 443.35 365.147 443.18 365.459 443L366.564 442.362L367.545 442.929L366.773 443.374C366.602 443.473 366.516 443.563 366.516 443.644C366.516 443.724 366.595 443.811 366.754 443.902L367.231 444.177L368.469 443.462L369.45 444.029L368.212 444.744L372.184 447.037L370.889 447.785L366.916 445.492ZM376.933 444.428C376.425 444.721 375.869 444.913 375.266 445.005C374.662 445.089 374.069 445.077 373.484 444.967C372.894 444.853 372.351 444.653 371.855 444.367C371.36 444.081 371.014 443.768 370.817 443.427C370.62 443.086 370.598 442.743 370.75 442.398C370.909 442.05 371.243 441.729 371.751 441.436C372.265 441.139 372.821 440.946 373.418 440.858C374.008 440.766 374.605 440.785 375.209 440.913C375.812 441.034 376.387 441.252 376.933 441.568L377.219 441.733L373.542 443.856C373.821 443.98 374.1 444.065 374.38 444.109C374.659 444.145 374.932 444.145 375.199 444.109C375.466 444.065 375.71 443.978 375.933 443.85C376.212 443.689 376.39 443.524 376.466 443.355C376.542 443.179 376.53 443.003 376.428 442.827L377.685 442.101C378.022 442.486 378.13 442.886 378.009 443.3C377.889 443.707 377.53 444.083 376.933 444.428ZM375.028 441.964C374.621 441.802 374.221 441.725 373.827 441.733C373.427 441.736 373.068 441.83 372.751 442.013C372.427 442.2 372.262 442.409 372.256 442.64C372.243 442.867 372.376 443.098 372.656 443.333L375.028 441.964ZM375.505 439.4L376.762 438.674L377.619 439.169C377.454 438.891 377.426 438.639 377.534 438.416C377.635 438.188 377.851 437.979 378.181 437.789L378.581 437.558L379.772 438.245L379.315 438.509C379.023 438.678 378.823 438.848 378.715 439.021C378.601 439.189 378.597 439.371 378.705 439.565C378.813 439.752 379.051 439.952 379.42 440.165L381.754 441.512L380.458 442.26L375.505 439.4Z" fill="#E9725A"/>
|
|
318
|
+
<path d="M657.488 493.489L659.117 492.548L668.624 494.979L667.147 495.832L665.156 495.298L662.251 496.976L663.165 498.131L661.736 498.956L657.488 493.489ZM663.566 494.853L659.631 493.791L661.479 496.057L663.566 494.853ZM671.97 493.18C671.462 493.473 670.91 493.664 670.313 493.752C669.716 493.832 669.125 493.818 668.541 493.708C667.95 493.594 667.407 493.394 666.912 493.108C666.416 492.822 666.07 492.509 665.873 492.168C665.676 491.827 665.651 491.486 665.797 491.145C665.95 490.8 666.28 490.481 666.788 490.188C667.467 489.795 668.179 489.583 668.922 489.55C669.665 489.517 670.367 489.647 671.027 489.94L669.731 490.688C669.414 490.571 669.09 490.523 668.76 490.545C668.43 490.56 668.128 490.646 667.855 490.804C667.601 490.95 667.452 491.11 667.407 491.282C667.356 491.451 667.401 491.627 667.54 491.81C667.686 491.99 667.915 492.169 668.226 492.349C668.538 492.529 668.849 492.661 669.16 492.745C669.471 492.822 669.776 492.848 670.074 492.822C670.373 492.796 670.649 492.71 670.903 492.564C671.189 492.399 671.341 492.219 671.36 492.025C671.386 491.827 671.275 491.63 671.027 491.436L672.323 490.688C672.85 491.08 673.091 491.498 673.047 491.942C672.996 492.382 672.637 492.795 671.97 493.18ZM677.206 490.025C676.895 490.204 676.603 490.333 676.33 490.41C676.05 490.483 675.755 490.5 675.444 490.459C675.139 490.415 674.815 490.294 674.472 490.096L671.805 488.556L670.947 489.051L669.966 488.485L670.823 487.99L669.299 487.11L670.595 486.362L672.119 487.242L673.357 486.527L674.339 487.093L673.1 487.808L675.634 489.271C675.793 489.363 675.945 489.411 676.091 489.414C676.231 489.414 676.387 489.365 676.558 489.266L677.33 488.82L678.311 489.387L677.206 490.025Z" fill="#6CD3FF"/>
|
|
319
|
+
<rect width="26.0469" height="32.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 303 584.023)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
320
|
+
<rect x="0.866025" width="25.0469" height="31.9516" transform="matrix(0.866025 -0.5 0.866025 0.5 303.116 584.456)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
321
|
+
<rect x="1.73205" width="13" height="21.25" transform="matrix(0.866025 -0.5 0.866025 0.5 312.307 584.564)" fill="#DDEFE9" stroke="#5F52FF" stroke-width="2"/>
|
|
322
|
+
<rect x="1.73205" width="16" height="11.5" transform="matrix(0.866025 -0.5 0.866025 0.5 310.359 584.939)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
323
|
+
<rect x="1.73205" width="3" height="4" transform="matrix(0.866025 -0.5 0.866025 0.5 319.452 583.439)" stroke="#5F52FF" stroke-width="2"/>
|
|
324
|
+
<rect x="0.649519" width="0.75" height="5.25" transform="matrix(0.866025 -0.5 0.866025 0.5 330.349 587.773)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="0.75"/>
|
|
325
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 395.232 514.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
326
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 395.232 506.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
327
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 395.232 498.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
328
|
+
<path d="M431.44 502V517" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
329
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 409.13 490.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
330
|
+
<path d="M432.591 473.119C432.108 471.887 431.749 470.763 431.514 469.747C431.279 468.724 431.162 467.739 431.162 466.793C431.162 465.847 431.279 465.002 431.514 464.258C431.749 463.506 432.108 462.793 432.591 462.118L433.477 462.63C433.001 463.323 432.658 464.042 432.448 464.786C432.238 465.523 432.134 466.379 432.134 467.354C432.134 468.33 432.238 469.311 432.448 470.297C432.658 471.276 433.001 472.387 433.477 473.63L432.591 473.119ZM436.807 465.433L437.951 466.093L440.704 475.602L439.627 474.981L438.932 472.5L435.836 470.713L435.14 472.39L434.073 471.774L436.807 465.433ZM438.589 471.268L437.379 466.94L436.169 469.871L438.589 471.268ZM441.471 468.125L444.281 469.748C444.808 470.052 445.253 470.419 445.615 470.848C445.977 471.277 446.247 471.73 446.425 472.206C446.603 472.683 446.691 473.156 446.691 473.625C446.691 474.095 446.603 474.465 446.425 474.736C446.247 475.008 445.977 475.149 445.615 475.16C445.253 475.164 444.808 475.013 444.281 474.709L442.49 473.675L442.49 476.634L441.471 476.045L441.471 468.125ZM444.253 473.658C444.723 473.93 445.075 474.005 445.31 473.884C445.545 473.756 445.663 473.471 445.663 473.031C445.663 472.584 445.545 472.164 445.31 471.772C445.075 471.38 444.723 471.048 444.253 470.776L442.49 469.759L442.49 472.641L444.253 473.658ZM447.639 471.687L448.658 472.275L448.658 480.195L447.639 479.607L447.639 471.687ZM453.816 483.305C453.34 483.03 452.927 482.696 452.577 482.304C452.235 481.908 451.971 481.488 451.787 481.044C451.603 480.593 451.511 480.159 451.511 479.741C451.511 479.359 451.577 479.064 451.711 478.855C451.85 478.65 452.028 478.507 452.244 478.426C452.466 478.342 452.73 478.292 453.035 478.278C452.844 477.933 452.698 477.654 452.597 477.442C452.501 477.225 452.422 477 452.358 476.765C452.301 476.534 452.273 476.287 452.273 476.023C452.273 475.649 452.352 475.372 452.511 475.192C452.676 475.016 452.892 474.936 453.159 474.95C453.432 474.969 453.73 475.071 454.054 475.258C454.384 475.449 454.683 475.691 454.95 475.984C455.223 476.281 455.439 476.611 455.597 476.974C455.756 477.337 455.835 477.706 455.835 478.08C455.835 478.395 455.772 478.641 455.645 478.817C455.524 478.996 455.365 479.125 455.169 479.202C454.978 479.275 454.74 479.321 454.454 479.339L455.893 482.018C456.109 481.644 456.22 481.158 456.226 480.56L457.131 481.083C457.112 482.01 456.909 482.714 456.521 483.195L457.722 485.428L456.493 484.718L455.912 483.635C455.639 483.763 455.324 483.802 454.969 483.75C454.619 483.695 454.235 483.547 453.816 483.305ZM453.825 482.309C454.111 482.474 454.378 482.573 454.626 482.606C454.873 482.632 455.099 482.593 455.302 482.491L453.625 479.378C453.397 479.4 453.203 479.442 453.044 479.504C452.892 479.563 452.768 479.656 452.673 479.785C452.577 479.906 452.53 480.084 452.53 480.318C452.53 480.538 452.577 480.771 452.673 481.017C452.768 481.262 452.914 481.501 453.111 481.732C453.308 481.955 453.546 482.148 453.825 482.309ZM453.864 478.261C454.2 478.243 454.454 478.188 454.626 478.096C454.797 477.997 454.883 477.812 454.883 477.541C454.883 477.277 454.807 477.027 454.654 476.793C454.502 476.551 454.308 476.362 454.073 476.226C453.838 476.091 453.644 476.056 453.492 476.122C453.34 476.18 453.263 476.342 453.263 476.606C453.263 476.848 453.308 477.082 453.397 477.31C453.486 477.53 453.641 477.847 453.864 478.261ZM463.33 488.798C462.625 488.391 462.022 487.859 461.52 487.203C461.018 486.546 460.64 485.837 460.386 485.074C460.132 484.304 460.005 483.542 460.005 482.786C460.005 482.031 460.132 481.419 460.386 480.949C460.64 480.473 461.018 480.196 461.52 480.119C462.022 480.042 462.625 480.207 463.33 480.614C463.851 480.914 464.314 481.303 464.721 481.78C465.134 482.253 465.467 482.779 465.721 483.358C465.981 483.934 466.15 484.511 466.226 485.091L465.197 484.497C465.14 484.119 465.026 483.752 464.854 483.397C464.689 483.037 464.473 482.707 464.206 482.407C463.946 482.11 463.654 481.868 463.33 481.681C462.828 481.391 462.406 481.283 462.063 481.356C461.726 481.426 461.476 481.64 461.31 482C461.152 482.363 461.072 482.83 461.072 483.402C461.072 483.974 461.152 484.533 461.31 485.08C461.476 485.63 461.726 486.138 462.063 486.603C462.406 487.065 462.828 487.441 463.33 487.731C463.679 487.932 463.99 488.028 464.264 488.017C464.537 488.006 464.756 487.898 464.921 487.692C465.092 487.491 465.2 487.208 465.245 486.845L466.274 487.439C466.21 487.989 466.051 488.422 465.797 488.737C465.55 489.056 465.213 489.225 464.787 489.243C464.362 489.262 463.876 489.113 463.33 488.798ZM467.222 482.993L468.241 483.581L468.241 490.445L471.623 492.398L471.623 493.454L467.222 490.913L467.222 482.993ZM472.441 486.006L473.46 486.594L473.46 494.514L472.441 493.926L472.441 486.006ZM474.177 497.129C474.654 496.436 474.994 495.719 475.197 494.978C475.406 494.234 475.511 493.374 475.511 492.399C475.511 491.423 475.406 490.446 475.197 489.467C474.994 488.484 474.654 487.372 474.177 486.129L475.063 486.64C475.546 487.872 475.905 489 476.14 490.023C476.375 491.038 476.492 492.019 476.492 492.965C476.492 493.911 476.375 494.76 476.14 495.512C475.905 496.256 475.546 496.965 475.063 497.64L474.177 497.129Z" fill="#465358"/>
|
|
331
|
+
<path d="M431.572 425.41L432.962 426.213L432.962 432.692L436.211 434.568L436.211 436.009L431.572 433.33L431.572 425.41ZM439.197 437.864C438.676 437.564 438.222 437.173 437.835 436.693C437.454 436.209 437.161 435.685 436.958 435.12C436.761 434.552 436.663 433.981 436.663 433.409C436.663 432.837 436.761 432.381 436.958 432.04C437.161 431.703 437.454 431.516 437.835 431.479C438.222 431.446 438.676 431.58 439.197 431.88C439.724 432.185 440.178 432.575 440.559 433.052C440.947 433.532 441.239 434.057 441.436 434.625C441.632 435.193 441.731 435.763 441.731 436.335C441.731 436.907 441.632 437.364 441.436 437.705C441.239 438.039 440.947 438.226 440.559 438.266C440.178 438.303 439.724 438.169 439.197 437.864ZM439.197 436.632C439.476 436.794 439.705 436.852 439.883 436.808C440.067 436.768 440.2 436.643 440.283 436.434C440.372 436.222 440.416 435.936 440.416 435.576C440.416 435.217 440.372 434.88 440.283 434.564C440.2 434.253 440.067 433.974 439.883 433.728C439.705 433.479 439.476 433.274 439.197 433.112C438.924 432.955 438.695 432.896 438.511 432.936C438.333 432.973 438.2 433.098 438.111 433.31C438.022 433.523 437.978 433.809 437.978 434.168C437.978 434.528 438.022 434.865 438.111 435.18C438.2 435.488 438.333 435.767 438.511 436.016C438.695 436.269 438.924 436.475 439.197 436.632ZM444.787 441.092C444.279 440.799 443.837 440.415 443.463 439.942C443.094 439.466 442.812 438.947 442.615 438.386C442.418 437.818 442.32 437.247 442.32 436.675C442.32 436.103 442.418 435.647 442.615 435.306C442.812 434.965 443.094 434.772 443.463 434.728C443.837 434.688 444.279 434.815 444.787 435.108C445.466 435.5 446.006 436.01 446.406 436.637C446.806 437.264 447.045 437.937 447.121 438.655L445.825 437.907C445.768 437.574 445.647 437.269 445.463 436.994C445.285 436.716 445.06 436.498 444.787 436.34C444.533 436.193 444.32 436.144 444.149 436.191C443.977 436.232 443.847 436.358 443.758 436.571C443.676 436.787 443.634 437.075 443.634 437.434C443.634 437.794 443.676 438.129 443.758 438.441C443.847 438.749 443.977 439.026 444.149 439.271C444.32 439.517 444.533 439.713 444.787 439.86C445.073 440.025 445.305 440.067 445.482 439.986C445.667 439.909 445.781 439.715 445.825 439.403L447.121 440.151C447.045 440.804 446.803 441.222 446.397 441.405C445.99 441.581 445.454 441.477 444.787 441.092ZM449.375 443.741C448.829 443.425 448.391 443.022 448.06 442.531C447.73 442.032 447.565 441.508 447.565 440.958C447.565 440.62 447.632 440.377 447.765 440.226C447.905 440.072 448.114 440.003 448.394 440.017C448.68 440.036 449.048 440.131 449.499 440.303L450.909 440.831L450.909 440.534C450.909 440.278 450.842 440.048 450.709 439.847C450.575 439.645 450.356 439.456 450.051 439.28C449.766 439.115 449.534 439.051 449.356 439.088C449.184 439.128 449.095 439.286 449.089 439.561L447.803 438.818C447.809 438.177 448.019 437.81 448.432 437.718C448.851 437.623 449.388 437.764 450.042 438.142C450.747 438.549 451.277 439.005 451.633 439.511C451.995 440.021 452.176 440.547 452.176 441.09L452.176 445.226L450.947 444.516L450.947 443.878C450.744 444.032 450.512 444.096 450.251 444.071C449.997 444.041 449.705 443.931 449.375 443.741ZM449.699 442.85C449.915 442.974 450.112 443.044 450.289 443.059C450.474 443.077 450.623 443.024 450.737 442.899C450.852 442.775 450.909 442.569 450.909 442.283L450.909 441.799L449.746 441.403C449.442 441.293 449.223 441.255 449.089 441.288C448.956 441.313 448.889 441.44 448.889 441.667C448.889 441.887 448.956 442.102 449.089 442.311C449.229 442.516 449.432 442.696 449.699 442.85ZM453.041 437.805L454.337 438.553L454.337 446.473L453.041 445.725L453.041 437.805ZM433.772 445.733C433.264 445.439 432.823 445.056 432.448 444.583C432.08 444.106 431.797 443.587 431.6 443.026C431.403 442.458 431.305 441.888 431.305 441.316C431.305 440.744 431.403 440.287 431.6 439.946C431.797 439.605 432.08 439.413 432.448 439.369C432.823 439.329 433.264 439.455 433.772 439.748C434.452 440.141 434.992 440.651 435.392 441.277C435.792 441.904 436.03 442.577 436.106 443.296L434.811 442.548C434.753 442.214 434.633 441.91 434.449 441.635C434.271 441.356 434.045 441.138 433.772 440.98C433.518 440.834 433.305 440.784 433.134 440.832C432.962 440.872 432.832 440.999 432.743 441.211C432.661 441.428 432.619 441.716 432.619 442.075C432.619 442.434 432.661 442.77 432.743 443.081C432.832 443.39 432.962 443.666 433.134 443.912C433.305 444.158 433.518 444.354 433.772 444.501C434.058 444.666 434.29 444.708 434.468 444.627C434.652 444.55 434.766 444.356 434.811 444.044L436.106 444.792C436.03 445.445 435.789 445.863 435.382 446.046C434.976 446.222 434.439 446.118 433.772 445.733ZM439.132 448.827C438.611 448.526 438.157 448.136 437.77 447.655C437.388 447.171 437.096 446.647 436.893 446.082C436.696 445.514 436.598 444.944 436.598 444.372C436.598 443.8 436.696 443.343 436.893 443.002C437.096 442.665 437.388 442.478 437.77 442.441C438.157 442.408 438.611 442.542 439.132 442.843C439.659 443.147 440.113 443.538 440.494 444.014C440.881 444.495 441.174 445.019 441.37 445.587C441.567 446.156 441.666 446.726 441.666 447.298C441.666 447.87 441.567 448.326 441.37 448.667C441.174 449.001 440.881 449.188 440.494 449.228C440.113 449.265 439.659 449.131 439.132 448.827ZM439.132 447.595C439.411 447.756 439.64 447.815 439.818 447.771C440.002 447.731 440.135 447.606 440.218 447.397C440.307 447.184 440.351 446.898 440.351 446.539C440.351 446.18 440.307 445.842 440.218 445.527C440.135 445.215 440.002 444.937 439.818 444.691C439.64 444.442 439.411 444.236 439.132 444.075C438.859 443.917 438.63 443.859 438.446 443.899C438.268 443.936 438.135 444.06 438.046 444.273C437.957 444.486 437.912 444.772 437.912 445.131C437.912 445.49 437.957 445.828 438.046 446.143C438.135 446.451 438.268 446.73 438.446 446.979C438.63 447.232 438.859 447.437 439.132 447.595ZM442.445 444.888L443.702 445.614L443.702 446.428C443.868 446.23 444.071 446.116 444.312 446.087C444.553 446.057 444.842 446.14 445.179 446.334C445.522 446.532 445.817 446.794 446.065 447.121C446.313 447.447 446.503 447.821 446.637 448.243C446.821 448.026 447.049 447.902 447.322 447.869C447.602 447.832 447.919 447.916 448.275 448.122C448.618 448.32 448.913 448.582 449.161 448.908C449.415 449.238 449.609 449.614 449.742 450.036C449.876 450.457 449.942 450.903 449.942 451.372L449.942 454.936L448.647 454.188L448.647 450.8C448.647 450.448 448.58 450.127 448.447 449.838C448.313 449.548 448.11 449.324 447.837 449.167C447.564 449.009 447.329 448.983 447.132 449.09C446.941 449.2 446.846 449.508 446.846 450.014L446.846 453.149L445.551 452.401L445.551 449.013C445.551 448.661 445.481 448.338 445.341 448.045C445.208 447.755 445.008 447.533 444.741 447.379C444.461 447.218 444.223 447.19 444.026 447.297C443.836 447.407 443.741 447.715 443.741 448.221L443.741 451.356L442.445 450.608L442.445 444.888ZM450.929 449.786L452.187 450.512L452.187 451.326C452.352 451.128 452.555 451.015 452.796 450.985C453.038 450.956 453.327 451.038 453.663 451.233C454.006 451.431 454.302 451.693 454.549 452.019C454.797 452.346 454.988 452.72 455.121 453.141C455.305 452.925 455.534 452.8 455.807 452.767C456.086 452.731 456.404 452.815 456.759 453.02C457.102 453.218 457.398 453.48 457.645 453.807C457.899 454.137 458.093 454.513 458.226 454.934C458.36 455.356 458.427 455.801 458.427 456.271L458.427 459.835L457.131 459.087L457.131 455.699C457.131 455.347 457.064 455.026 456.931 454.736C456.798 454.447 456.594 454.223 456.321 454.065C456.048 453.908 455.813 453.882 455.616 453.988C455.426 454.098 455.33 454.406 455.33 454.912L455.33 458.047L454.035 457.299L454.035 453.911C454.035 453.559 453.965 453.237 453.825 452.943C453.692 452.654 453.492 452.432 453.225 452.278C452.946 452.116 452.708 452.089 452.511 452.195C452.32 452.305 452.225 452.613 452.225 453.119L452.225 456.254L450.929 455.506L450.929 449.786ZM463.996 463.05L462.738 462.324L462.738 461.543C462.554 461.715 462.332 461.811 462.072 461.829C461.811 461.84 461.513 461.748 461.176 461.554C460.801 461.338 460.481 461.065 460.214 460.735C459.954 460.401 459.753 460.021 459.614 459.596C459.48 459.174 459.414 458.725 459.414 458.249L459.414 454.685L460.7 455.427L460.7 458.815C460.7 459.174 460.773 459.503 460.919 459.8C461.065 460.089 461.297 460.326 461.614 460.509C461.792 460.612 461.96 460.665 462.119 460.669C462.284 460.669 462.421 460.593 462.529 460.443C462.643 460.296 462.7 460.054 462.7 459.717L462.7 456.582L463.996 457.33L463.996 463.05ZM464.986 457.902L466.244 458.628L466.244 459.409C466.428 459.237 466.65 459.145 466.911 459.134C467.171 459.116 467.469 459.204 467.806 459.398C468.181 459.614 468.498 459.889 468.759 460.223C469.025 460.553 469.225 460.929 469.359 461.35C469.498 461.776 469.568 462.227 469.568 462.703L469.568 466.267L468.282 465.525L468.282 462.137C468.282 461.778 468.209 461.453 468.063 461.163C467.917 460.866 467.685 460.626 467.368 460.443C467.19 460.34 467.018 460.289 466.853 460.289C466.695 460.285 466.558 460.357 466.444 460.503C466.336 460.654 466.282 460.898 466.282 461.235L466.282 464.37L464.986 463.622L464.986 457.902ZM470.549 461.114L471.845 461.862L471.845 467.582L470.549 466.834L470.549 461.114ZM470.549 458.914L471.845 459.662L471.845 460.993L470.549 460.245L470.549 458.914ZM475.105 469.596C474.597 469.303 474.156 468.92 473.781 468.447C473.413 467.97 473.13 467.451 472.933 466.89C472.737 466.322 472.638 465.752 472.638 465.18C472.638 464.608 472.737 464.151 472.933 463.81C473.13 463.469 473.413 463.277 473.781 463.233C474.156 463.192 474.597 463.319 475.105 463.612C475.785 464.005 476.325 464.514 476.725 465.141C477.125 465.768 477.363 466.441 477.439 467.16L476.144 466.412C476.087 466.078 475.966 465.774 475.782 465.499C475.604 465.22 475.378 465.002 475.105 464.844C474.851 464.698 474.639 464.648 474.467 464.696C474.296 464.736 474.165 464.863 474.077 465.075C473.994 465.292 473.953 465.579 473.953 465.939C473.953 466.298 473.994 466.634 474.077 466.945C474.165 467.253 474.296 467.53 474.467 467.776C474.639 468.021 474.851 468.218 475.105 468.364C475.391 468.529 475.623 468.571 475.801 468.491C475.985 468.414 476.099 468.219 476.144 467.908L477.439 468.656C477.363 469.308 477.122 469.726 476.715 469.91C476.309 470.086 475.772 469.981 475.105 469.596ZM479.693 472.245C479.147 471.93 478.709 471.526 478.379 471.035C478.049 470.536 477.883 470.012 477.883 469.462C477.883 469.125 477.95 468.881 478.083 468.731C478.223 468.577 478.433 468.507 478.712 468.522C478.998 468.54 479.366 468.635 479.817 468.808L481.227 469.336L481.227 469.039C481.227 468.782 481.16 468.553 481.027 468.351C480.894 468.149 480.675 467.961 480.37 467.785C480.084 467.62 479.852 467.555 479.674 467.592C479.503 467.632 479.414 467.79 479.408 468.065L478.122 467.323C478.128 466.681 478.338 466.314 478.75 466.223C479.169 466.127 479.706 466.268 480.36 466.646C481.065 467.053 481.596 467.51 481.951 468.016C482.313 468.525 482.494 469.051 482.494 469.594L482.494 473.73L481.265 473.021L481.265 472.383C481.062 472.537 480.83 472.601 480.57 472.575C480.316 472.546 480.024 472.436 479.693 472.245ZM480.017 471.354C480.233 471.479 480.43 471.548 480.608 471.563C480.792 471.581 480.941 471.528 481.056 471.404C481.17 471.279 481.227 471.074 481.227 470.788L481.227 470.304L480.065 469.908C479.76 469.798 479.541 469.759 479.408 469.792C479.274 469.818 479.208 469.944 479.208 470.172C479.208 470.392 479.274 470.606 479.408 470.815C479.547 471.02 479.751 471.2 480.017 471.354ZM485.293 475.346C484.982 475.167 484.725 474.978 484.522 474.78C484.319 474.575 484.157 474.327 484.036 474.037C483.922 473.751 483.865 473.41 483.865 473.014L483.865 469.934L483.007 469.439L483.007 468.306L483.865 468.801L483.865 467.041L485.16 467.789L485.16 469.549L486.399 470.264L486.399 471.397L485.16 470.682L485.16 473.608C485.16 473.792 485.195 473.948 485.265 474.076C485.335 474.197 485.455 474.307 485.627 474.406L486.399 474.851L486.399 475.984L485.293 475.346ZM487.127 470.685L488.423 471.433L488.423 477.153L487.127 476.405L487.127 470.685ZM487.127 468.485L488.423 469.233L488.423 470.564L487.127 469.816L487.127 468.485ZM491.731 479.195C491.21 478.894 490.756 478.504 490.369 478.024C489.988 477.54 489.696 477.015 489.492 476.451C489.295 475.882 489.197 475.312 489.197 474.74C489.197 474.168 489.295 473.712 489.492 473.371C489.696 473.033 489.988 472.846 490.369 472.81C490.756 472.777 491.21 472.91 491.731 473.211C492.258 473.515 492.712 473.906 493.093 474.383C493.481 474.863 493.773 475.387 493.97 475.956C494.167 476.524 494.265 477.094 494.265 477.666C494.265 478.238 494.167 478.695 493.97 479.036C493.773 479.369 493.481 479.556 493.093 479.597C492.712 479.633 492.258 479.499 491.731 479.195ZM491.731 477.963C492.01 478.124 492.239 478.183 492.417 478.139C492.601 478.099 492.734 477.974 492.817 477.765C492.906 477.552 492.95 477.266 492.95 476.907C492.95 476.548 492.906 476.21 492.817 475.895C492.734 475.583 492.601 475.305 492.417 475.059C492.239 474.81 492.01 474.604 491.731 474.443C491.458 474.285 491.229 474.227 491.045 474.267C490.867 474.304 490.734 474.428 490.645 474.641C490.556 474.854 490.512 475.14 490.512 475.499C490.512 475.858 490.556 476.196 490.645 476.511C490.734 476.819 490.867 477.098 491.045 477.347C491.229 477.6 491.458 477.805 491.731 477.963ZM495.044 475.256L496.302 475.982L496.302 476.763C496.486 476.591 496.708 476.499 496.969 476.488C497.229 476.47 497.527 476.558 497.864 476.752C498.239 476.968 498.556 477.243 498.817 477.577C499.083 477.907 499.283 478.283 499.417 478.704C499.556 479.13 499.626 479.581 499.626 480.057L499.626 483.621L498.34 482.879L498.34 479.491C498.34 479.132 498.267 478.807 498.121 478.517C497.975 478.22 497.743 477.98 497.426 477.797C497.248 477.694 497.076 477.643 496.911 477.643C496.753 477.639 496.616 477.711 496.502 477.857C496.394 478.008 496.34 478.252 496.34 478.589L496.34 481.724L495.044 480.976L495.044 475.256ZM433.048 456.315C432.502 455.999 432.064 455.596 431.734 455.105C431.403 454.606 431.238 454.081 431.238 453.531C431.238 453.194 431.305 452.95 431.438 452.8C431.578 452.646 431.788 452.576 432.067 452.591C432.353 452.609 432.721 452.705 433.172 452.877L434.582 453.405L434.582 453.108C434.582 452.851 434.515 452.622 434.382 452.42C434.248 452.219 434.029 452.03 433.725 451.854C433.439 451.689 433.207 451.625 433.029 451.661C432.858 451.702 432.769 451.859 432.762 452.134L431.476 451.392C431.483 450.75 431.692 450.384 432.105 450.292C432.524 450.197 433.061 450.338 433.715 450.716C434.42 451.123 434.95 451.579 435.306 452.085C435.668 452.595 435.849 453.121 435.849 453.663L435.849 457.8L434.62 457.09L434.62 456.452C434.417 456.606 434.185 456.67 433.925 456.645C433.671 456.615 433.378 456.505 433.048 456.315ZM433.372 455.424C433.588 455.548 433.785 455.618 433.963 455.633C434.147 455.651 434.296 455.598 434.41 455.473C434.525 455.348 434.582 455.143 434.582 454.857L434.582 454.373L433.42 453.977C433.115 453.867 432.896 453.828 432.762 453.861C432.629 453.887 432.562 454.014 432.562 454.241C432.562 454.461 432.629 454.675 432.762 454.884C432.902 455.09 433.105 455.27 433.372 455.424ZM436.714 452.579L437.972 453.305L437.972 454.086C438.156 453.914 438.378 453.822 438.639 453.811C438.899 453.793 439.198 453.881 439.534 454.075C439.909 454.292 440.226 454.567 440.487 454.9C440.753 455.23 440.954 455.606 441.087 456.028C441.227 456.453 441.296 456.904 441.296 457.381L441.296 460.945L440.01 460.202L440.01 456.814C440.01 456.455 439.937 456.13 439.791 455.841C439.645 455.544 439.413 455.304 439.096 455.12C438.918 455.018 438.747 454.966 438.582 454.966C438.423 454.963 438.286 455.034 438.172 455.181C438.064 455.331 438.01 455.575 438.01 455.912L438.01 459.047L436.714 458.299L436.714 452.579ZM444.278 462.798C443.814 462.53 443.417 462.173 443.087 461.725C442.757 461.271 442.506 460.77 442.334 460.224C442.163 459.67 442.077 459.107 442.077 458.535C442.077 457.956 442.163 457.492 442.334 457.144C442.506 456.788 442.757 456.577 443.087 456.511C443.417 456.445 443.814 456.546 444.278 456.814C444.608 457.005 444.897 457.241 445.145 457.523C445.399 457.809 445.612 458.134 445.783 458.497L445.783 455.615L447.079 456.363L447.079 464.283L445.821 463.557L445.821 462.798C445.65 462.985 445.437 463.082 445.183 463.089C444.929 463.097 444.627 463 444.278 462.798ZM444.602 461.753C444.868 461.907 445.091 461.962 445.269 461.918C445.446 461.874 445.58 461.749 445.669 461.544C445.758 461.331 445.802 461.045 445.802 460.686C445.802 460.327 445.758 459.989 445.669 459.674C445.58 459.359 445.446 459.08 445.269 458.838C445.091 458.589 444.868 458.387 444.602 458.233C444.329 458.075 444.103 458.018 443.925 458.062C443.748 458.099 443.614 458.224 443.525 458.436C443.443 458.653 443.401 458.941 443.401 459.3C443.401 459.659 443.443 459.995 443.525 460.306C443.614 460.614 443.748 460.893 443.925 461.142C444.103 461.392 444.329 461.595 444.602 461.753ZM452.128 467.198C451.817 467.019 451.56 466.83 451.357 466.632C451.153 466.427 450.991 466.179 450.871 465.889C450.756 465.603 450.699 465.262 450.699 464.866L450.699 461.786L449.842 461.291L449.842 460.158L450.699 460.653L450.699 458.893L451.995 459.641L451.995 461.401L453.233 462.116L453.233 463.249L451.995 462.534L451.995 465.46C451.995 465.644 452.03 465.8 452.1 465.928C452.17 466.049 452.29 466.159 452.462 466.258L453.233 466.703L453.233 467.836L452.128 467.198ZM456.296 469.737C455.775 469.436 455.321 469.045 454.934 468.565C454.553 468.081 454.26 467.557 454.057 466.992C453.86 466.424 453.762 465.854 453.762 465.282C453.762 464.71 453.86 464.253 454.057 463.912C454.26 463.575 454.553 463.388 454.934 463.351C455.321 463.318 455.775 463.452 456.296 463.753C456.823 464.057 457.277 464.447 457.658 464.924C458.046 465.404 458.338 465.929 458.535 466.497C458.731 467.065 458.83 467.636 458.83 468.208C458.83 468.78 458.731 469.236 458.535 469.577C458.338 469.911 458.046 470.098 457.658 470.138C457.277 470.175 456.823 470.041 456.296 469.737ZM456.296 468.505C456.575 468.666 456.804 468.725 456.982 468.681C457.166 468.64 457.299 468.516 457.382 468.307C457.471 468.094 457.515 467.808 457.515 467.449C457.515 467.089 457.471 466.752 457.382 466.437C457.299 466.125 457.166 465.846 456.982 465.601C456.804 465.351 456.575 465.146 456.296 464.985C456.023 464.827 455.794 464.768 455.61 464.809C455.432 464.845 455.299 464.97 455.21 465.183C455.121 465.395 455.076 465.681 455.076 466.041C455.076 466.4 455.121 466.737 455.21 467.053C455.299 467.361 455.432 467.639 455.61 467.889C455.794 468.142 456.023 468.347 456.296 468.505ZM461.933 472.991C461.413 472.691 460.959 472.3 460.571 471.82C460.19 471.336 459.898 470.812 459.695 470.247C459.498 469.679 459.399 469.108 459.399 468.536C459.399 467.964 459.498 467.508 459.695 467.167C459.898 466.83 460.19 466.643 460.571 466.606C460.959 466.573 461.413 466.707 461.933 467.007C462.461 467.312 462.915 467.702 463.296 468.179C463.683 468.659 463.975 469.184 464.172 469.752C464.369 470.32 464.467 470.89 464.467 471.462C464.467 472.034 464.369 472.491 464.172 472.832C463.975 473.166 463.683 473.353 463.296 473.393C462.915 473.43 462.461 473.296 461.933 472.991ZM461.933 471.759C462.213 471.921 462.442 471.979 462.619 471.935C462.804 471.895 462.937 471.77 463.019 471.561C463.108 471.349 463.153 471.063 463.153 470.703C463.153 470.344 463.108 470.007 463.019 469.691C462.937 469.38 462.804 469.101 462.619 468.855C462.442 468.606 462.213 468.401 461.933 468.239C461.66 468.082 461.432 468.023 461.248 468.063C461.07 468.1 460.936 468.225 460.847 468.437C460.759 468.65 460.714 468.936 460.714 469.295C460.714 469.655 460.759 469.992 460.847 470.307C460.936 470.615 461.07 470.894 461.248 471.143C461.432 471.396 461.66 471.602 461.933 471.759ZM465.247 466.852L466.542 467.6L466.542 475.52L465.247 474.772L465.247 466.852ZM469.517 477.37C468.812 476.963 468.259 476.482 467.859 475.929C467.465 475.379 467.249 474.744 467.211 474.026L468.469 474.752C468.501 475.122 468.605 475.432 468.783 475.681C468.967 475.934 469.228 476.158 469.564 476.352C469.837 476.51 470.057 476.581 470.222 476.567C470.387 476.545 470.469 476.435 470.469 476.237C470.469 476.097 470.444 475.973 470.393 475.863C470.342 475.753 470.234 475.617 470.069 475.456C469.91 475.291 469.663 475.082 469.326 474.829C468.818 474.433 468.418 474.07 468.126 473.74C467.834 473.41 467.624 473.094 467.497 472.794C467.376 472.497 467.316 472.183 467.316 471.853C467.316 471.31 467.507 470.995 467.888 470.907C468.269 470.819 468.78 470.96 469.421 471.331C470.133 471.741 470.676 472.231 471.05 472.799C471.425 473.36 471.619 473.949 471.632 474.565L470.431 473.872C470.425 473.523 470.33 473.23 470.145 472.992C469.961 472.753 469.72 472.548 469.421 472.376C469.174 472.233 468.971 472.17 468.812 472.189C468.659 472.211 468.583 472.317 468.583 472.508C468.583 472.647 468.615 472.779 468.678 472.904C468.748 473.025 468.866 473.166 469.031 473.327C469.202 473.485 469.453 473.688 469.783 473.938C470.285 474.323 470.679 474.678 470.965 475.005C471.25 475.324 471.454 475.635 471.574 475.94C471.695 476.237 471.755 476.55 471.755 476.88C471.755 477.445 471.549 477.766 471.136 477.843C470.73 477.916 470.19 477.758 469.517 477.37Z" fill="#5F52FF"/>
|
|
332
|
+
</g>
|
|
333
|
+
<defs>
|
|
334
|
+
<clipPath id="clip0_83_4466">
|
|
335
|
+
<rect width="1444" height="894" fill="white"/>
|
|
336
|
+
</clipPath>
|
|
337
|
+
</defs>
|
|
338
|
+
</svg>
|