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,512 @@
|
|
|
1
|
+
<svg width="1300" height="823" viewBox="0 0 1300 823" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2103_371)">
|
|
3
|
+
<path opacity="0.2" d="M-887 424L714.281 1348.5" stroke="#5F52FF" stroke-width="0.5"/>
|
|
4
|
+
<path opacity="0.2" d="M-874.189 416.604L727.092 1341.1" stroke="#5F52FF" stroke-width="0.5"/>
|
|
5
|
+
<path opacity="0.2" d="M-861.379 409.208L739.902 1333.71" stroke="#5F52FF" stroke-width="0.5"/>
|
|
6
|
+
<path opacity="0.2" d="M-848.569 401.812L752.712 1326.31" stroke="#5F52FF" stroke-width="0.5"/>
|
|
7
|
+
<path opacity="0.2" d="M-835.759 394.416L765.522 1318.92" stroke="#5F52FF" stroke-width="0.5"/>
|
|
8
|
+
<path opacity="0.2" d="M-822.949 387.02L778.332 1311.52" stroke="#5F52FF" stroke-width="0.5"/>
|
|
9
|
+
<path opacity="0.2" d="M-810.138 379.624L791.143 1304.12" stroke="#5F52FF" stroke-width="0.5"/>
|
|
10
|
+
<path opacity="0.2" d="M-797.328 372.228L803.953 1296.73" stroke="#5F52FF" stroke-width="0.5"/>
|
|
11
|
+
<path opacity="0.2" d="M-784.518 364.832L816.763 1289.33" stroke="#5F52FF" stroke-width="0.5"/>
|
|
12
|
+
<path opacity="0.2" d="M-771.708 357.436L829.573 1281.94" stroke="#5F52FF" stroke-width="0.5"/>
|
|
13
|
+
<path opacity="0.2" d="M-758.897 350.04L842.384 1274.54" stroke="#5F52FF" stroke-width="0.5"/>
|
|
14
|
+
<path opacity="0.2" d="M-746.087 342.644L855.194 1267.14" stroke="#5F52FF" stroke-width="0.5"/>
|
|
15
|
+
<path opacity="0.2" d="M-733.276 335.248L868.005 1259.75" stroke="#5F52FF" stroke-width="0.5"/>
|
|
16
|
+
<path opacity="0.2" d="M-720.467 327.852L880.814 1252.35" stroke="#5F52FF" stroke-width="0.5"/>
|
|
17
|
+
<path opacity="0.2" d="M-707.656 320.456L893.625 1244.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
18
|
+
<path opacity="0.2" d="M-694.846 313.06L906.435 1237.56" stroke="#5F52FF" stroke-width="0.5"/>
|
|
19
|
+
<path opacity="0.2" d="M-682.036 305.664L919.245 1230.16" stroke="#5F52FF" stroke-width="0.5"/>
|
|
20
|
+
<path opacity="0.2" d="M-669.226 298.268L932.055 1222.77" stroke="#5F52FF" stroke-width="0.5"/>
|
|
21
|
+
<path opacity="0.2" d="M-656.415 290.872L944.866 1215.37" stroke="#5F52FF" stroke-width="0.5"/>
|
|
22
|
+
<path opacity="0.2" d="M-643.605 283.476L957.676 1207.98" stroke="#5F52FF" stroke-width="0.5"/>
|
|
23
|
+
<path opacity="0.2" d="M-630.795 276.08L970.486 1200.58" stroke="#5F52FF" stroke-width="0.5"/>
|
|
24
|
+
<path opacity="0.2" d="M-617.984 268.684L983.297 1193.18" stroke="#5F52FF" stroke-width="0.5"/>
|
|
25
|
+
<path opacity="0.2" d="M-605.175 261.288L996.106 1185.79" stroke="#5F52FF" stroke-width="0.5"/>
|
|
26
|
+
<path opacity="0.2" d="M-592.364 253.892L1008.92 1178.39" stroke="#5F52FF" stroke-width="0.5"/>
|
|
27
|
+
<path opacity="0.2" d="M-579.554 246.496L1021.73 1171" stroke="#5F52FF" stroke-width="0.5"/>
|
|
28
|
+
<path opacity="0.2" d="M-566.743 239.1L1034.54 1163.6" stroke="#5F52FF" stroke-width="0.5"/>
|
|
29
|
+
<path opacity="0.2" d="M-553.934 231.704L1047.35 1156.2" stroke="#5F52FF" stroke-width="0.5"/>
|
|
30
|
+
<path opacity="0.2" d="M-541.123 224.308L1060.16 1148.81" stroke="#5F52FF" stroke-width="0.5"/>
|
|
31
|
+
<path opacity="0.2" d="M-528.312 216.912L1072.97 1141.41" stroke="#5F52FF" stroke-width="0.5"/>
|
|
32
|
+
<path opacity="0.2" d="M-515.503 209.516L1085.78 1134.02" stroke="#5F52FF" stroke-width="0.5"/>
|
|
33
|
+
<path opacity="0.2" d="M-502.692 202.12L1098.59 1126.62" stroke="#5F52FF" stroke-width="0.5"/>
|
|
34
|
+
<path opacity="0.2" d="M-489.882 194.724L1111.4 1119.22" stroke="#5F52FF" stroke-width="0.5"/>
|
|
35
|
+
<path opacity="0.2" d="M-477.072 187.328L1124.21 1111.83" stroke="#5F52FF" stroke-width="0.5"/>
|
|
36
|
+
<path opacity="0.2" d="M-464.262 179.932L1137.02 1104.43" stroke="#5F52FF" stroke-width="0.5"/>
|
|
37
|
+
<path opacity="0.2" d="M-451.451 172.536L1149.83 1097.04" stroke="#5F52FF" stroke-width="0.5"/>
|
|
38
|
+
<path opacity="0.2" d="M-438.642 165.14L1162.64 1089.64" stroke="#5F52FF" stroke-width="0.5"/>
|
|
39
|
+
<path opacity="0.2" d="M-425.831 157.744L1175.45 1082.24" stroke="#5F52FF" stroke-width="0.5"/>
|
|
40
|
+
<path opacity="0.2" d="M-413.021 150.348L1188.26 1074.85" stroke="#5F52FF" stroke-width="0.5"/>
|
|
41
|
+
<path opacity="0.2" d="M-400.21 142.952L1201.07 1067.45" stroke="#5F52FF" stroke-width="0.5"/>
|
|
42
|
+
<path opacity="0.2" d="M-387.4 135.556L1213.88 1060.06" stroke="#5F52FF" stroke-width="0.5"/>
|
|
43
|
+
<path opacity="0.2" d="M-374.59 128.16L1226.69 1052.66" stroke="#5F52FF" stroke-width="0.5"/>
|
|
44
|
+
<path opacity="0.2" d="M-361.779 120.764L1239.5 1045.26" stroke="#5F52FF" stroke-width="0.5"/>
|
|
45
|
+
<path opacity="0.2" d="M-348.97 113.368L1252.31 1037.87" stroke="#5F52FF" stroke-width="0.5"/>
|
|
46
|
+
<path opacity="0.2" d="M-336.159 105.972L1265.12 1030.47" stroke="#5F52FF" stroke-width="0.5"/>
|
|
47
|
+
<path opacity="0.2" d="M-323.349 98.5761L1277.93 1023.08" stroke="#5F52FF" stroke-width="0.5"/>
|
|
48
|
+
<path opacity="0.2" d="M-310.539 91.1801L1290.74 1015.68" stroke="#5F52FF" stroke-width="0.5"/>
|
|
49
|
+
<path opacity="0.2" d="M-297.729 83.7841L1303.55 1008.28" stroke="#5F52FF" stroke-width="0.5"/>
|
|
50
|
+
<path opacity="0.2" d="M-284.918 76.3881L1316.36 1000.89" stroke="#5F52FF" stroke-width="0.5"/>
|
|
51
|
+
<path opacity="0.2" d="M-272.107 68.992L1329.17 993.492" stroke="#5F52FF" stroke-width="0.5"/>
|
|
52
|
+
<path opacity="0.2" d="M-259.298 61.596L1341.98 986.096" stroke="#5F52FF" stroke-width="0.5"/>
|
|
53
|
+
<path opacity="0.2" d="M-246.487 54.2L1354.79 978.7" stroke="#5F52FF" stroke-width="0.5"/>
|
|
54
|
+
<path opacity="0.2" d="M-233.677 46.804L1367.6 971.304" stroke="#5F52FF" stroke-width="0.5"/>
|
|
55
|
+
<path opacity="0.2" d="M-220.867 39.408L1380.41 963.908" stroke="#5F52FF" stroke-width="0.5"/>
|
|
56
|
+
<path opacity="0.2" d="M-208.057 32.012L1393.22 956.512" stroke="#5F52FF" stroke-width="0.5"/>
|
|
57
|
+
<path opacity="0.2" d="M-195.246 24.616L1406.03 949.116" stroke="#5F52FF" stroke-width="0.5"/>
|
|
58
|
+
<path opacity="0.2" d="M-182.437 17.22L1418.84 941.72" stroke="#5F52FF" stroke-width="0.5"/>
|
|
59
|
+
<path opacity="0.2" d="M-169.626 9.82401L1431.66 934.324" stroke="#5F52FF" stroke-width="0.5"/>
|
|
60
|
+
<path opacity="0.2" d="M-156.815 2.42801L1444.47 926.928" stroke="#5F52FF" stroke-width="0.5"/>
|
|
61
|
+
<path opacity="0.2" d="M-144.006 -4.96799L1457.28 919.532" stroke="#5F52FF" stroke-width="0.5"/>
|
|
62
|
+
<path opacity="0.2" d="M-131.195 -12.364L1470.09 912.136" stroke="#5F52FF" stroke-width="0.5"/>
|
|
63
|
+
<path opacity="0.2" d="M-118.385 -19.76L1482.9 904.74" stroke="#5F52FF" stroke-width="0.5"/>
|
|
64
|
+
<path opacity="0.2" d="M-105.574 -27.156L1495.71 897.344" stroke="#5F52FF" stroke-width="0.5"/>
|
|
65
|
+
<path opacity="0.2" d="M-92.7646 -34.552L1508.52 889.948" stroke="#5F52FF" stroke-width="0.5"/>
|
|
66
|
+
<path opacity="0.2" d="M-79.9541 -41.948L1521.33 882.552" stroke="#5F52FF" stroke-width="0.5"/>
|
|
67
|
+
<path opacity="0.2" d="M-67.1436 -49.344L1534.14 875.156" stroke="#5F52FF" stroke-width="0.5"/>
|
|
68
|
+
<path opacity="0.2" d="M-54.334 -56.74L1546.95 867.76" stroke="#5F52FF" stroke-width="0.5"/>
|
|
69
|
+
<path opacity="0.2" d="M-41.5234 -64.136L1559.76 860.364" stroke="#5F52FF" stroke-width="0.5"/>
|
|
70
|
+
<path opacity="0.2" d="M-28.7129 -71.532L1572.57 852.968" stroke="#5F52FF" stroke-width="0.5"/>
|
|
71
|
+
<path opacity="0.2" d="M-15.9033 -78.9279L1585.38 845.572" stroke="#5F52FF" stroke-width="0.5"/>
|
|
72
|
+
<path opacity="0.2" d="M-3.09277 -86.3241L1598.19 838.176" stroke="#5F52FF" stroke-width="0.5"/>
|
|
73
|
+
<path opacity="0.2" d="M9.71777 -93.7199L1611 830.78" stroke="#5F52FF" stroke-width="0.5"/>
|
|
74
|
+
<path opacity="0.2" d="M22.5273 -101.116L1623.81 823.384" stroke="#5F52FF" stroke-width="0.5"/>
|
|
75
|
+
<path opacity="0.2" d="M35.3379 -108.512L1636.62 815.988" stroke="#5F52FF" stroke-width="0.5"/>
|
|
76
|
+
<path opacity="0.2" d="M48.1484 -115.908L1649.43 808.592" stroke="#5F52FF" stroke-width="0.5"/>
|
|
77
|
+
<path opacity="0.2" d="M60.958 -123.304L1662.24 801.196" stroke="#5F52FF" stroke-width="0.5"/>
|
|
78
|
+
<path opacity="0.2" d="M73.7686 -130.7L1675.05 793.8" stroke="#5F52FF" stroke-width="0.5"/>
|
|
79
|
+
<path opacity="0.2" d="M86.5791 -138.096L1687.86 786.404" stroke="#5F52FF" stroke-width="0.5"/>
|
|
80
|
+
<path opacity="0.2" d="M99.3887 -145.492L1700.67 779.008" stroke="#5F52FF" stroke-width="0.5"/>
|
|
81
|
+
<path opacity="0.2" d="M112.199 -152.888L1713.48 771.612" stroke="#5F52FF" stroke-width="0.5"/>
|
|
82
|
+
<path opacity="0.2" d="M125.01 -160.284L1726.29 764.216" stroke="#5F52FF" stroke-width="0.5"/>
|
|
83
|
+
<path opacity="0.2" d="M137.819 -167.68L1739.1 756.82" stroke="#5F52FF" stroke-width="0.5"/>
|
|
84
|
+
<path opacity="0.2" d="M150.63 -175.076L1751.91 749.424" stroke="#5F52FF" stroke-width="0.5"/>
|
|
85
|
+
<path opacity="0.2" d="M163.44 -182.472L1764.72 742.028" stroke="#5F52FF" stroke-width="0.5"/>
|
|
86
|
+
<path opacity="0.2" d="M176.25 -189.868L1777.53 734.632" stroke="#5F52FF" stroke-width="0.5"/>
|
|
87
|
+
<path opacity="0.2" d="M189.061 -197.264L1790.34 727.236" stroke="#5F52FF" stroke-width="0.5"/>
|
|
88
|
+
<path opacity="0.2" d="M201.871 -204.66L1803.15 719.84" stroke="#5F52FF" stroke-width="0.5"/>
|
|
89
|
+
<path opacity="0.2" d="M214.682 -212.056L1815.96 712.444" stroke="#5F52FF" stroke-width="0.5"/>
|
|
90
|
+
<path opacity="0.2" d="M227.491 -219.452L1828.77 705.048" stroke="#5F52FF" stroke-width="0.5"/>
|
|
91
|
+
<path opacity="0.2" d="M240.302 -226.848L1841.58 697.652" stroke="#5F52FF" stroke-width="0.5"/>
|
|
92
|
+
<path opacity="0.2" d="M253.112 -234.244L1854.39 690.256" stroke="#5F52FF" stroke-width="0.5"/>
|
|
93
|
+
<path opacity="0.2" d="M265.922 -241.64L1867.2 682.86" stroke="#5F52FF" stroke-width="0.5"/>
|
|
94
|
+
<path opacity="0.2" d="M278.732 -249.036L1880.01 675.464" stroke="#5F52FF" stroke-width="0.5"/>
|
|
95
|
+
<path opacity="0.2" d="M291.543 -256.432L1892.82 668.068" stroke="#5F52FF" stroke-width="0.5"/>
|
|
96
|
+
<path opacity="0.2" d="M304.353 -263.828L1905.63 660.672" stroke="#5F52FF" stroke-width="0.5"/>
|
|
97
|
+
<path opacity="0.2" d="M317.163 -271.224L1918.44 653.276" stroke="#5F52FF" stroke-width="0.5"/>
|
|
98
|
+
<path opacity="0.2" d="M329.974 -278.62L1931.25 645.88" stroke="#5F52FF" stroke-width="0.5"/>
|
|
99
|
+
<path opacity="0.2" d="M342.783 -286.016L1944.06 638.484" stroke="#5F52FF" stroke-width="0.5"/>
|
|
100
|
+
<path opacity="0.2" d="M355.594 -293.412L1956.87 631.088" stroke="#5F52FF" stroke-width="0.5"/>
|
|
101
|
+
<path opacity="0.2" d="M368.404 -300.808L1969.69 623.692" stroke="#5F52FF" stroke-width="0.5"/>
|
|
102
|
+
<path opacity="0.2" d="M381.214 -308.204L1982.49 616.296" stroke="#5F52FF" stroke-width="0.5"/>
|
|
103
|
+
<path opacity="0.2" d="M394.024 -315.6L1995.31 608.9" stroke="#5F52FF" stroke-width="0.5"/>
|
|
104
|
+
<path opacity="0.2" d="M406.835 -322.996L2008.12 601.504" stroke="#5F52FF" stroke-width="0.5"/>
|
|
105
|
+
<path opacity="0.2" d="M419.646 -330.392L2020.93 594.108" stroke="#5F52FF" stroke-width="0.5"/>
|
|
106
|
+
<path opacity="0.2" d="M432.455 -337.788L2033.74 586.712" stroke="#5F52FF" stroke-width="0.5"/>
|
|
107
|
+
<path opacity="0.2" d="M445.266 -345.184L2046.55 579.316" stroke="#5F52FF" stroke-width="0.5"/>
|
|
108
|
+
<path opacity="0.2" d="M458.076 -352.58L2059.36 571.92" stroke="#5F52FF" stroke-width="0.5"/>
|
|
109
|
+
<path opacity="0.2" d="M470.886 -359.976L2072.17 564.524" stroke="#5F52FF" stroke-width="0.5"/>
|
|
110
|
+
<path opacity="0.2" d="M483.696 -367.372L2084.98 557.128" stroke="#5F52FF" stroke-width="0.5"/>
|
|
111
|
+
<path opacity="0.2" d="M496.507 -374.768L2097.79 549.732" stroke="#5F52FF" stroke-width="0.5"/>
|
|
112
|
+
<path opacity="0.2" d="M509.316 -382.164L2110.6 542.336" stroke="#5F52FF" stroke-width="0.5"/>
|
|
113
|
+
<path opacity="0.2" d="M522.127 -389.56L2123.41 534.94" stroke="#5F52FF" stroke-width="0.5"/>
|
|
114
|
+
<path opacity="0.2" d="M534.938 -396.956L2136.22 527.544" stroke="#5F52FF" stroke-width="0.5"/>
|
|
115
|
+
<path opacity="0.2" d="M547.747 -404.352L2149.03 520.148" stroke="#5F52FF" stroke-width="0.5"/>
|
|
116
|
+
<path opacity="0.2" d="M560.558 -411.748L2161.84 512.752" stroke="#5F52FF" stroke-width="0.5"/>
|
|
117
|
+
<path opacity="0.2" d="M573.368 -419.144L2174.65 505.356" stroke="#5F52FF" stroke-width="0.5"/>
|
|
118
|
+
<path opacity="0.2" d="M586.178 -426.54L2187.46 497.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
119
|
+
<path opacity="0.2" d="M586.178 -426.54L-887.001 424" stroke="#5F52FF" stroke-width="0.5"/>
|
|
120
|
+
<path opacity="0.2" d="M598.988 -419.144L-874.19 431.396" stroke="#5F52FF" stroke-width="0.5"/>
|
|
121
|
+
<path opacity="0.2" d="M611.799 -411.748L-861.38 438.792" stroke="#5F52FF" stroke-width="0.5"/>
|
|
122
|
+
<path opacity="0.2" d="M624.608 -404.352L-848.57 446.188" stroke="#5F52FF" stroke-width="0.5"/>
|
|
123
|
+
<path opacity="0.2" d="M637.419 -396.956L-835.76 453.584" stroke="#5F52FF" stroke-width="0.5"/>
|
|
124
|
+
<path opacity="0.2" d="M650.229 -389.56L-822.949 460.98" stroke="#5F52FF" stroke-width="0.5"/>
|
|
125
|
+
<path opacity="0.2" d="M663.04 -382.164L-810.139 468.376" stroke="#5F52FF" stroke-width="0.5"/>
|
|
126
|
+
<path opacity="0.2" d="M675.85 -374.768L-797.329 475.772" stroke="#5F52FF" stroke-width="0.5"/>
|
|
127
|
+
<path opacity="0.2" d="M688.66 -367.372L-784.519 483.168" stroke="#5F52FF" stroke-width="0.5"/>
|
|
128
|
+
<path opacity="0.2" d="M701.471 -359.976L-771.708 490.564" stroke="#5F52FF" stroke-width="0.5"/>
|
|
129
|
+
<path opacity="0.2" d="M714.28 -352.58L-758.898 497.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
130
|
+
<path opacity="0.2" d="M727.091 -345.184L-746.088 505.356" stroke="#5F52FF" stroke-width="0.5"/>
|
|
131
|
+
<path opacity="0.2" d="M739.901 -337.788L-733.277 512.752" stroke="#5F52FF" stroke-width="0.5"/>
|
|
132
|
+
<path opacity="0.2" d="M752.711 -330.392L-720.468 520.148" stroke="#5F52FF" stroke-width="0.5"/>
|
|
133
|
+
<path opacity="0.2" d="M765.521 -322.996L-707.657 527.544" stroke="#5F52FF" stroke-width="0.5"/>
|
|
134
|
+
<path opacity="0.2" d="M778.332 -315.6L-694.847 534.94" stroke="#5F52FF" stroke-width="0.5"/>
|
|
135
|
+
<path opacity="0.2" d="M791.143 -308.204L-682.036 542.336" stroke="#5F52FF" stroke-width="0.5"/>
|
|
136
|
+
<path opacity="0.2" d="M803.952 -300.808L-669.227 549.732" stroke="#5F52FF" stroke-width="0.5"/>
|
|
137
|
+
<path opacity="0.2" d="M816.763 -293.412L-656.416 557.128" stroke="#5F52FF" stroke-width="0.5"/>
|
|
138
|
+
<path opacity="0.2" d="M829.573 -286.016L-643.605 564.524" stroke="#5F52FF" stroke-width="0.5"/>
|
|
139
|
+
<path opacity="0.2" d="M842.383 -278.62L-630.796 571.92" stroke="#5F52FF" stroke-width="0.5"/>
|
|
140
|
+
<path opacity="0.2" d="M855.193 -271.224L-617.985 579.316" stroke="#5F52FF" stroke-width="0.5"/>
|
|
141
|
+
<path opacity="0.2" d="M868.004 -263.828L-605.175 586.712" stroke="#5F52FF" stroke-width="0.5"/>
|
|
142
|
+
<path opacity="0.2" d="M880.813 -256.432L-592.365 594.108" stroke="#5F52FF" stroke-width="0.5"/>
|
|
143
|
+
<path opacity="0.2" d="M893.624 -249.036L-579.555 601.504" stroke="#5F52FF" stroke-width="0.5"/>
|
|
144
|
+
<path opacity="0.2" d="M906.435 -241.64L-566.744 608.9" stroke="#5F52FF" stroke-width="0.5"/>
|
|
145
|
+
<path opacity="0.2" d="M919.244 -234.244L-553.935 616.296" stroke="#5F52FF" stroke-width="0.5"/>
|
|
146
|
+
<path opacity="0.2" d="M932.055 -226.848L-541.124 623.692" stroke="#5F52FF" stroke-width="0.5"/>
|
|
147
|
+
<path opacity="0.2" d="M944.865 -219.452L-528.313 631.088" stroke="#5F52FF" stroke-width="0.5"/>
|
|
148
|
+
<path opacity="0.2" d="M957.675 -212.056L-515.504 638.484" stroke="#5F52FF" stroke-width="0.5"/>
|
|
149
|
+
<path opacity="0.2" d="M970.485 -204.66L-502.693 645.88" stroke="#5F52FF" stroke-width="0.5"/>
|
|
150
|
+
<path opacity="0.2" d="M983.296 -197.264L-489.883 653.276" stroke="#5F52FF" stroke-width="0.5"/>
|
|
151
|
+
<path opacity="0.2" d="M996.106 -189.868L-477.072 660.672" stroke="#5F52FF" stroke-width="0.5"/>
|
|
152
|
+
<path opacity="0.2" d="M1008.92 -182.472L-464.263 668.068" stroke="#5F52FF" stroke-width="0.5"/>
|
|
153
|
+
<path opacity="0.2" d="M1021.73 -175.076L-451.452 675.464" stroke="#5F52FF" stroke-width="0.5"/>
|
|
154
|
+
<path opacity="0.2" d="M1034.54 -167.68L-438.642 682.86" stroke="#5F52FF" stroke-width="0.5"/>
|
|
155
|
+
<path opacity="0.2" d="M1047.35 -160.284L-425.832 690.256" stroke="#5F52FF" stroke-width="0.5"/>
|
|
156
|
+
<path opacity="0.2" d="M1060.16 -152.888L-413.021 697.652" stroke="#5F52FF" stroke-width="0.5"/>
|
|
157
|
+
<path opacity="0.2" d="M1072.97 -145.492L-400.211 705.048" stroke="#5F52FF" stroke-width="0.5"/>
|
|
158
|
+
<path opacity="0.2" d="M1085.78 -138.096L-387.401 712.444" stroke="#5F52FF" stroke-width="0.5"/>
|
|
159
|
+
<path opacity="0.2" d="M1098.59 -130.7L-374.591 719.84" stroke="#5F52FF" stroke-width="0.5"/>
|
|
160
|
+
<path opacity="0.2" d="M1111.4 -123.304L-361.78 727.236" stroke="#5F52FF" stroke-width="0.5"/>
|
|
161
|
+
<path opacity="0.2" d="M1124.21 -115.908L-348.97 734.632" stroke="#5F52FF" stroke-width="0.5"/>
|
|
162
|
+
<path opacity="0.2" d="M1137.02 -108.512L-336.16 742.028" stroke="#5F52FF" stroke-width="0.5"/>
|
|
163
|
+
<path opacity="0.2" d="M1149.83 -101.116L-323.35 749.424" stroke="#5F52FF" stroke-width="0.5"/>
|
|
164
|
+
<path opacity="0.2" d="M1162.64 -93.7198L-310.539 756.82" stroke="#5F52FF" stroke-width="0.5"/>
|
|
165
|
+
<path opacity="0.2" d="M1175.45 -86.3238L-297.729 764.216" stroke="#5F52FF" stroke-width="0.5"/>
|
|
166
|
+
<path opacity="0.2" d="M1188.26 -78.9278L-284.919 771.612" stroke="#5F52FF" stroke-width="0.5"/>
|
|
167
|
+
<path opacity="0.2" d="M1201.07 -71.5318L-272.108 779.008" stroke="#5F52FF" stroke-width="0.5"/>
|
|
168
|
+
<path opacity="0.2" d="M1213.88 -64.1358L-259.299 786.404" stroke="#5F52FF" stroke-width="0.5"/>
|
|
169
|
+
<path opacity="0.2" d="M1226.69 -56.7398L-246.488 793.8" stroke="#5F52FF" stroke-width="0.5"/>
|
|
170
|
+
<path opacity="0.2" d="M1239.5 -49.3438L-233.678 801.196" stroke="#5F52FF" stroke-width="0.5"/>
|
|
171
|
+
<path opacity="0.2" d="M1252.31 -41.9478L-220.868 808.592" stroke="#5F52FF" stroke-width="0.5"/>
|
|
172
|
+
<path opacity="0.2" d="M1265.12 -34.5518L-208.058 815.988" stroke="#5F52FF" stroke-width="0.5"/>
|
|
173
|
+
<path opacity="0.2" d="M1277.93 -27.1558L-195.247 823.384" stroke="#5F52FF" stroke-width="0.5"/>
|
|
174
|
+
<path opacity="0.2" d="M1290.74 -19.7598L-182.436 830.78" stroke="#5F52FF" stroke-width="0.5"/>
|
|
175
|
+
<path opacity="0.2" d="M1303.55 -12.3638L-169.627 838.176" stroke="#5F52FF" stroke-width="0.5"/>
|
|
176
|
+
<path opacity="0.2" d="M1316.36 -4.96783L-156.816 845.572" stroke="#5F52FF" stroke-width="0.5"/>
|
|
177
|
+
<path opacity="0.2" d="M1329.17 2.42816L-144.006 852.968" stroke="#5F52FF" stroke-width="0.5"/>
|
|
178
|
+
<path opacity="0.2" d="M1341.98 9.82419L-131.196 860.364" stroke="#5F52FF" stroke-width="0.5"/>
|
|
179
|
+
<path opacity="0.2" d="M1354.79 17.2202L-118.386 867.76" stroke="#5F52FF" stroke-width="0.5"/>
|
|
180
|
+
<path opacity="0.2" d="M1367.6 24.6162L-105.575 875.156" stroke="#5F52FF" stroke-width="0.5"/>
|
|
181
|
+
<path opacity="0.2" d="M1380.41 32.0122L-92.7656 882.552" stroke="#5F52FF" stroke-width="0.5"/>
|
|
182
|
+
<path opacity="0.2" d="M1393.22 39.4082L-79.955 889.948" stroke="#5F52FF" stroke-width="0.5"/>
|
|
183
|
+
<path opacity="0.2" d="M1406.03 46.8042L-67.1445 897.344" stroke="#5F52FF" stroke-width="0.5"/>
|
|
184
|
+
<path opacity="0.2" d="M1418.84 54.2002L-54.3349 904.74" stroke="#5F52FF" stroke-width="0.5"/>
|
|
185
|
+
<path opacity="0.2" d="M1431.65 61.5962L-41.5244 912.136" stroke="#5F52FF" stroke-width="0.5"/>
|
|
186
|
+
<path opacity="0.2" d="M1444.46 68.9922L-28.7138 919.532" stroke="#5F52FF" stroke-width="0.5"/>
|
|
187
|
+
<path opacity="0.2" d="M1457.28 76.3882L-15.9033 926.928" stroke="#5F52FF" stroke-width="0.5"/>
|
|
188
|
+
<path opacity="0.2" d="M1470.08 83.7842L-3.09371 934.324" stroke="#5F52FF" stroke-width="0.5"/>
|
|
189
|
+
<path opacity="0.2" d="M1482.9 91.1802L9.71684 941.72" stroke="#5F52FF" stroke-width="0.5"/>
|
|
190
|
+
<path opacity="0.2" d="M1495.71 98.5762L22.5274 949.116" stroke="#5F52FF" stroke-width="0.5"/>
|
|
191
|
+
<path opacity="0.2" d="M1508.52 105.972L35.337 956.512" stroke="#5F52FF" stroke-width="0.5"/>
|
|
192
|
+
<path opacity="0.2" d="M1521.33 113.368L48.1475 963.908" stroke="#5F52FF" stroke-width="0.5"/>
|
|
193
|
+
<path opacity="0.2" d="M1534.14 120.764L60.958 971.304" stroke="#5F52FF" stroke-width="0.5"/>
|
|
194
|
+
<path opacity="0.2" d="M1546.95 128.16L73.7676 978.7" stroke="#5F52FF" stroke-width="0.5"/>
|
|
195
|
+
<path opacity="0.2" d="M1559.76 135.556L86.5782 986.096" stroke="#5F52FF" stroke-width="0.5"/>
|
|
196
|
+
<path opacity="0.2" d="M1572.57 142.952L99.3887 993.492" stroke="#5F52FF" stroke-width="0.5"/>
|
|
197
|
+
<path opacity="0.2" d="M1572.57 142.956L99.4649 993.456" stroke="#5F52FF" stroke-width="0.5"/>
|
|
198
|
+
<path opacity="0.2" d="M1585.56 150.456L112.455 1000.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
199
|
+
<path opacity="0.2" d="M1598.55 157.956L125.445 1008.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
200
|
+
<path opacity="0.2" d="M1610.68 164.956L137.569 1015.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
201
|
+
<path opacity="0.2" d="M1623.67 172.456L150.561 1022.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
202
|
+
<path opacity="0.2" d="M1636.66 179.956L163.551 1030.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
203
|
+
<path opacity="0.2" d="M1649.65 187.456L176.541 1037.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
204
|
+
<path opacity="0.2" d="M1662.64 194.956L189.531 1045.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
205
|
+
<path opacity="0.2" d="M1674.76 201.956L201.655 1052.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
206
|
+
<path opacity="0.2" d="M1687.75 209.456L214.646 1059.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
207
|
+
<path opacity="0.2" d="M1700.75 216.956L227.637 1067.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
208
|
+
<path opacity="0.2" d="M1713.74 224.456L240.627 1074.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
209
|
+
<path opacity="0.2" d="M1725.86 231.456L252.751 1081.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
210
|
+
<path opacity="0.2" d="M1738.85 238.956L265.741 1089.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
211
|
+
<path opacity="0.2" d="M1751.84 246.456L278.732 1096.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
212
|
+
<path opacity="0.2" d="M1764.83 253.956L291.723 1104.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
213
|
+
<path opacity="0.2" d="M1777.82 261.456L304.713 1111.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
214
|
+
<path opacity="0.2" d="M1789.95 268.456L316.837 1118.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
215
|
+
<path opacity="0.2" d="M1802.94 275.956L329.827 1126.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
216
|
+
<path opacity="0.2" d="M1815.93 283.456L342.817 1133.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
217
|
+
<path opacity="0.2" d="M1828.92 290.956L355.809 1141.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
218
|
+
<path opacity="0.2" d="M1841.91 298.456L368.799 1148.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
219
|
+
<path opacity="0.2" d="M1854.03 305.456L380.923 1155.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
220
|
+
<path opacity="0.2" d="M1867.02 312.956L393.913 1163.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
221
|
+
<path opacity="0.2" d="M1880.01 320.456L406.903 1170.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
222
|
+
<path opacity="0.2" d="M1893 327.956L419.894 1178.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
223
|
+
<path opacity="0.2" d="M1905.99 335.456L432.885 1185.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
224
|
+
<path opacity="0.2" d="M1918.12 342.456L445.009 1192.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
225
|
+
<path opacity="0.2" d="M1931.11 349.956L457.999 1200.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
226
|
+
<path opacity="0.2" d="M1944.1 357.456L470.989 1207.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
227
|
+
<path opacity="0.2" d="M1957.09 364.956L483.98 1215.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
228
|
+
<path opacity="0.2" d="M1970.08 372.456L496.971 1222.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
229
|
+
<path opacity="0.2" d="M1982.2 379.456L509.095 1229.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
230
|
+
<path opacity="0.2" d="M1995.19 386.956L522.085 1237.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
231
|
+
<path opacity="0.2" d="M2008.18 394.456L535.075 1244.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
232
|
+
<path opacity="0.2" d="M2021.17 401.956L548.065 1252.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
233
|
+
<path opacity="0.2" d="M2033.3 408.956L560.19 1259.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
234
|
+
<path opacity="0.2" d="M2046.29 416.456L573.181 1266.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
235
|
+
<path opacity="0.2" d="M2059.28 423.956L586.171 1274.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
236
|
+
<path opacity="0.2" d="M2072.27 431.456L599.161 1281.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
237
|
+
<path opacity="0.2" d="M2085.26 438.956L612.151 1289.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
238
|
+
<path opacity="0.2" d="M2097.39 445.956L624.276 1296.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
239
|
+
<path opacity="0.2" d="M2110.38 453.456L637.267 1303.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
240
|
+
<path opacity="0.2" d="M2123.37 460.956L650.257 1311.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
241
|
+
<path opacity="0.2" d="M2136.36 468.456L663.247 1318.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
242
|
+
<path opacity="0.2" d="M2149.35 475.956L676.237 1326.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
243
|
+
<path opacity="0.2" d="M2161.47 482.956L688.362 1333.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
244
|
+
<path opacity="0.2" d="M2174.46 490.456L701.353 1340.96" stroke="#5F52FF" stroke-width="0.5"/>
|
|
245
|
+
<path opacity="0.2" d="M2187.45 497.956L714.343 1348.46" stroke="#5F52FF" stroke-width="0.5"/>
|
|
246
|
+
<path d="M445.137 542.635L309.86 620.737L207.219 561.478" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
247
|
+
<path d="M446.455 526.57L311.178 604.672L208 545.102" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
248
|
+
<path d="M1175.26 542.5L900.732 384" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
249
|
+
<path d="M834.535 346.5L719.354 280" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
250
|
+
<path d="M819.521 352.5L676.627 270" stroke="#28FFB4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
251
|
+
<path d="M1176 309V471" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
252
|
+
<path d="M1183 309V471" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
253
|
+
<path d="M1169 309V471" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
254
|
+
<path d="M1157.72 656.277C1156.99 655.859 1156.37 655.32 1155.85 654.66C1155.33 653.996 1154.94 653.276 1154.68 652.498C1154.42 651.725 1154.29 650.96 1154.29 650.205C1154.29 649.442 1154.42 648.828 1154.68 648.362C1154.94 647.893 1155.33 647.627 1155.85 647.565C1156.37 647.499 1156.99 647.675 1157.72 648.093C1158.27 648.416 1158.77 648.828 1159.21 649.331C1159.65 649.833 1160 650.385 1160.27 650.986C1160.54 651.587 1160.71 652.194 1160.79 652.806L1159.38 651.992C1159.32 651.655 1159.21 651.329 1159.06 651.014C1158.91 650.702 1158.72 650.416 1158.49 650.155C1158.26 649.899 1158 649.688 1157.72 649.523C1157.27 649.266 1156.9 649.169 1156.6 649.231C1156.3 649.294 1156.08 649.486 1155.94 649.809C1155.8 650.124 1155.73 650.535 1155.73 651.041C1155.73 651.54 1155.8 652.031 1155.94 652.515C1156.08 652.992 1156.3 653.437 1156.6 653.851C1156.9 654.259 1157.27 654.59 1157.72 654.847C1158.03 655.027 1158.3 655.111 1158.53 655.1C1158.77 655.089 1158.96 654.997 1159.11 654.825C1159.26 654.656 1159.36 654.422 1159.41 654.121L1160.81 654.93C1160.75 655.487 1160.58 655.927 1160.32 656.25C1160.06 656.576 1159.7 656.745 1159.25 656.755C1158.8 656.77 1158.29 656.611 1157.72 656.277ZM1163.92 659.858C1163.4 659.557 1162.94 659.167 1162.56 658.687C1162.17 658.203 1161.88 657.678 1161.68 657.114C1161.48 656.545 1161.38 655.975 1161.38 655.403C1161.38 654.831 1161.48 654.375 1161.68 654.034C1161.88 653.696 1162.17 653.509 1162.56 653.473C1162.94 653.44 1163.4 653.573 1163.92 653.874C1164.45 654.178 1164.9 654.569 1165.28 655.046C1165.67 655.526 1165.96 656.05 1166.16 656.619C1166.35 657.187 1166.45 657.757 1166.45 658.329C1166.45 658.901 1166.35 659.358 1166.16 659.699C1165.96 660.032 1165.67 660.219 1165.28 660.26C1164.9 660.296 1164.45 660.162 1163.92 659.858ZM1163.92 658.626C1164.2 658.787 1164.43 658.846 1164.6 658.802C1164.79 658.762 1164.92 658.637 1165 658.428C1165.09 658.215 1165.14 657.929 1165.14 657.57C1165.14 657.211 1165.09 656.873 1165 656.558C1164.92 656.246 1164.79 655.968 1164.6 655.722C1164.43 655.473 1164.2 655.267 1163.92 655.106C1163.64 654.948 1163.42 654.89 1163.23 654.93C1163.05 654.967 1162.92 655.091 1162.83 655.304C1162.74 655.517 1162.7 655.803 1162.7 656.162C1162.7 656.521 1162.74 656.859 1162.83 657.174C1162.92 657.482 1163.05 657.761 1163.23 658.01C1163.42 658.263 1163.64 658.468 1163.92 658.626ZM1167.23 655.919L1168.49 656.645L1168.49 657.459C1168.65 657.261 1168.86 657.147 1169.1 657.118C1169.34 657.089 1169.63 657.171 1169.97 657.366C1170.31 657.564 1170.6 657.826 1170.85 658.152C1171.1 658.478 1171.29 658.852 1171.42 659.274C1171.61 659.058 1171.84 658.933 1172.11 658.9C1172.39 658.863 1172.71 658.948 1173.06 659.153C1173.4 659.351 1173.7 659.613 1173.95 659.94C1174.2 660.27 1174.39 660.645 1174.53 661.067C1174.66 661.489 1174.73 661.934 1174.73 662.404L1174.73 665.968L1173.43 665.22L1173.43 661.832C1173.43 661.48 1173.37 661.159 1173.23 660.869C1173.1 660.579 1172.9 660.356 1172.62 660.198C1172.35 660.04 1172.11 660.015 1171.92 660.121C1171.73 660.231 1171.63 660.539 1171.63 661.045L1171.63 664.18L1170.34 663.432L1170.34 660.044C1170.34 659.692 1170.27 659.369 1170.13 659.076C1169.99 658.786 1169.79 658.565 1169.53 658.411C1169.25 658.249 1169.01 658.222 1168.81 658.328C1168.62 658.438 1168.53 658.746 1168.53 659.252L1168.53 662.387L1167.23 661.639L1167.23 655.919ZM1175.72 660.817L1176.97 661.543L1176.97 662.357C1177.14 662.159 1177.34 662.046 1177.58 662.016C1177.82 661.987 1178.11 662.07 1178.45 662.264C1178.79 662.462 1179.09 662.724 1179.34 663.05C1179.58 663.377 1179.77 663.751 1179.91 664.172C1180.09 663.956 1180.32 663.831 1180.59 663.798C1180.87 663.762 1181.19 663.846 1181.55 664.051C1181.89 664.249 1182.18 664.512 1182.43 664.838C1182.69 665.168 1182.88 665.544 1183.01 665.965C1183.15 666.387 1183.21 666.833 1183.21 667.302L1183.21 670.866L1181.92 670.118L1181.92 666.73C1181.92 666.378 1181.85 666.057 1181.72 665.767C1181.58 665.478 1181.38 665.254 1181.11 665.096C1180.83 664.939 1180.6 664.913 1180.4 665.019C1180.21 665.129 1180.12 665.437 1180.12 665.943L1180.12 669.078L1178.82 668.33L1178.82 664.942C1178.82 664.59 1178.75 664.268 1178.61 663.974C1178.48 663.685 1178.28 663.463 1178.01 663.309C1177.73 663.148 1177.49 663.12 1177.3 663.226C1177.11 663.336 1177.01 663.644 1177.01 664.15L1177.01 667.285L1175.72 666.537L1175.72 660.817ZM1186.52 672.91C1186 672.609 1185.55 672.219 1185.16 671.738C1184.78 671.254 1184.49 670.73 1184.29 670.165C1184.09 669.597 1183.99 669.027 1183.99 668.455C1183.99 667.883 1184.09 667.426 1184.29 667.085C1184.49 666.748 1184.78 666.561 1185.16 666.524C1185.55 666.491 1186 666.625 1186.52 666.926C1187.05 667.23 1187.51 667.621 1187.89 668.097C1188.27 668.578 1188.57 669.102 1188.76 669.67C1188.96 670.239 1189.06 670.809 1189.06 671.381C1189.06 671.953 1188.96 672.409 1188.76 672.75C1188.57 673.084 1188.27 673.271 1187.89 673.311C1187.51 673.348 1187.05 673.214 1186.52 672.91ZM1186.52 671.678C1186.8 671.839 1187.03 671.898 1187.21 671.854C1187.39 671.814 1187.53 671.689 1187.61 671.48C1187.7 671.267 1187.74 670.981 1187.74 670.622C1187.74 670.263 1187.7 669.925 1187.61 669.61C1187.53 669.298 1187.39 669.02 1187.21 668.774C1187.03 668.525 1186.8 668.319 1186.52 668.158C1186.25 668 1186.02 667.942 1185.84 667.982C1185.66 668.019 1185.53 668.143 1185.44 668.356C1185.35 668.569 1185.3 668.855 1185.3 669.214C1185.3 669.573 1185.35 669.911 1185.44 670.226C1185.53 670.534 1185.66 670.813 1185.84 671.062C1186.02 671.315 1186.25 671.52 1186.52 671.678ZM1189.84 668.971L1191.09 669.697L1191.09 670.478C1191.28 670.305 1191.5 670.214 1191.76 670.203C1192.02 670.184 1192.32 670.272 1192.66 670.467C1193.03 670.683 1193.35 670.958 1193.61 671.292C1193.88 671.622 1194.08 671.998 1194.21 672.419C1194.35 672.845 1194.42 673.296 1194.42 673.772L1194.42 677.336L1193.13 676.594L1193.13 673.206C1193.13 672.846 1193.06 672.522 1192.91 672.232C1192.77 671.935 1192.54 671.695 1192.22 671.512C1192.04 671.409 1191.87 671.358 1191.7 671.358C1191.55 671.354 1191.41 671.426 1191.3 671.572C1191.19 671.723 1191.13 671.966 1191.13 672.304L1191.13 675.439L1189.84 674.691L1189.84 668.971ZM1157.18 666.969C1156.59 666.628 1156.08 666.225 1155.64 665.759C1155.2 665.286 1154.86 664.769 1154.61 664.208C1154.37 663.651 1154.24 663.073 1154.24 662.475L1155.61 663.267C1155.62 663.825 1155.78 664.301 1156.07 664.697C1156.36 665.086 1156.75 665.42 1157.23 665.699C1157.63 665.929 1157.95 666.023 1158.19 665.979C1158.43 665.935 1158.55 665.744 1158.55 665.407C1158.55 665.216 1158.51 665.033 1158.42 664.857C1158.34 664.685 1158.18 664.477 1157.93 664.235C1157.7 663.99 1157.35 663.685 1156.89 663.322C1156.3 662.868 1155.83 662.437 1155.47 662.03C1155.11 661.619 1154.84 661.201 1154.67 660.776C1154.5 660.354 1154.41 659.905 1154.41 659.429C1154.41 658.989 1154.51 658.66 1154.72 658.444C1154.94 658.231 1155.24 658.141 1155.63 658.174C1156.02 658.211 1156.48 658.38 1157 658.68C1157.9 659.197 1158.58 659.828 1159.06 660.572C1159.53 661.317 1159.79 662.114 1159.81 662.965L1158.47 662.189C1158.44 661.713 1158.31 661.295 1158.07 660.936C1157.83 660.572 1157.48 660.253 1157 659.978C1156.65 659.773 1156.36 659.689 1156.14 659.725C1155.93 659.766 1155.83 659.922 1155.83 660.193C1155.83 660.391 1155.87 660.578 1155.94 660.754C1156.03 660.934 1156.18 661.139 1156.4 661.37C1156.63 661.605 1156.96 661.894 1157.39 662.239C1158.06 662.756 1158.58 663.229 1158.95 663.658C1159.33 664.091 1159.6 664.505 1159.75 664.901C1159.91 665.301 1159.99 665.72 1159.99 666.16C1159.99 666.674 1159.87 667.044 1159.63 667.272C1159.4 667.495 1159.06 667.58 1158.64 667.525C1158.22 667.473 1157.73 667.288 1157.18 666.969ZM1162.98 670.315C1162.47 670.022 1162.02 669.637 1161.64 669.16C1161.27 668.68 1160.98 668.159 1160.79 667.598C1160.59 667.03 1160.49 666.46 1160.49 665.888C1160.49 665.316 1160.59 664.859 1160.79 664.518C1160.98 664.177 1161.27 663.986 1161.64 663.946C1162.02 663.909 1162.47 664.038 1162.98 664.331C1163.49 664.628 1163.94 665.013 1164.31 665.486C1164.69 665.952 1164.97 666.478 1165.16 667.065C1165.36 667.648 1165.45 668.254 1165.45 668.885L1165.45 669.215L1161.78 667.092C1161.81 667.396 1161.88 667.681 1161.98 667.945C1162.08 668.205 1162.22 668.441 1162.39 668.654C1162.56 668.863 1162.75 669.032 1162.98 669.16C1163.26 669.321 1163.49 669.393 1163.67 669.375C1163.86 669.353 1164.01 669.254 1164.11 669.078L1165.37 669.804C1165.2 670.288 1164.91 670.581 1164.49 670.684C1164.08 670.783 1163.57 670.66 1162.98 670.315ZM1164.16 667.433C1164.1 667 1163.96 666.615 1163.76 666.278C1163.56 665.933 1163.29 665.669 1162.98 665.486C1162.65 665.299 1162.39 665.261 1162.19 665.371C1161.98 665.473 1161.85 665.704 1161.79 666.064L1164.16 667.433ZM1166.24 666.344L1167.49 667.07L1167.49 667.851C1167.68 667.679 1167.9 667.587 1168.16 667.576C1168.42 667.558 1168.72 667.646 1169.06 667.84C1169.43 668.057 1169.75 668.332 1170.01 668.665C1170.27 668.995 1170.47 669.371 1170.61 669.793C1170.75 670.218 1170.82 670.669 1170.82 671.146L1170.82 674.71L1169.53 673.967L1169.53 670.579C1169.53 670.22 1169.46 669.895 1169.31 669.606C1169.17 669.309 1168.93 669.069 1168.62 668.885C1168.44 668.783 1168.27 668.731 1168.1 668.731C1167.94 668.728 1167.81 668.799 1167.69 668.946C1167.59 669.096 1167.53 669.34 1167.53 669.677L1167.53 672.812L1166.24 672.064L1166.24 666.344ZM1173.79 676.558C1173.08 676.151 1172.53 675.67 1172.13 675.117C1171.74 674.567 1171.52 673.932 1171.48 673.214L1172.74 673.94C1172.77 674.31 1172.88 674.62 1173.06 674.869C1173.24 675.122 1173.5 675.346 1173.84 675.54C1174.11 675.698 1174.33 675.769 1174.49 675.755C1174.66 675.733 1174.74 675.623 1174.74 675.425C1174.74 675.285 1174.72 675.161 1174.67 675.051C1174.62 674.941 1174.51 674.805 1174.34 674.644C1174.18 674.479 1173.94 674.27 1173.6 674.017C1173.09 673.621 1172.69 673.258 1172.4 672.928C1172.11 672.598 1171.9 672.282 1171.77 671.982C1171.65 671.685 1171.59 671.371 1171.59 671.041C1171.59 670.498 1171.78 670.183 1172.16 670.095C1172.54 670.007 1173.05 670.148 1173.69 670.519C1174.41 670.929 1174.95 671.419 1175.32 671.987C1175.7 672.548 1175.89 673.137 1175.9 673.753L1174.7 673.06C1174.7 672.711 1174.6 672.418 1174.42 672.18C1174.23 671.941 1173.99 671.736 1173.69 671.564C1173.45 671.421 1173.24 671.358 1173.08 671.377C1172.93 671.399 1172.86 671.505 1172.86 671.696C1172.86 671.835 1172.89 671.967 1172.95 672.092C1173.02 672.213 1173.14 672.354 1173.3 672.515C1173.48 672.673 1173.73 672.876 1174.06 673.126C1174.56 673.511 1174.95 673.866 1175.24 674.193C1175.52 674.512 1175.73 674.823 1175.85 675.128C1175.97 675.425 1176.03 675.738 1176.03 676.068C1176.03 676.633 1175.82 676.954 1175.41 677.031C1175 677.104 1174.46 676.946 1173.79 676.558ZM1178.97 679.548C1178.46 679.255 1178.02 678.87 1177.64 678.393C1177.26 677.913 1176.97 677.392 1176.78 676.831C1176.58 676.263 1176.48 675.692 1176.48 675.12C1176.48 674.548 1176.58 674.092 1176.78 673.751C1176.97 673.41 1177.26 673.219 1177.64 673.179C1178.02 673.142 1178.46 673.271 1178.97 673.564C1179.48 673.861 1179.93 674.246 1180.3 674.719C1180.68 675.185 1180.96 675.711 1181.15 676.297C1181.35 676.88 1181.45 677.487 1181.45 678.118L1181.45 678.448L1177.77 676.325C1177.8 676.629 1177.87 676.913 1177.97 677.177C1178.08 677.438 1178.21 677.674 1178.38 677.887C1178.55 678.096 1178.75 678.265 1178.97 678.393C1179.25 678.554 1179.48 678.626 1179.66 678.607C1179.86 678.585 1180 678.486 1180.1 678.31L1181.36 679.036C1181.2 679.52 1180.9 679.814 1180.48 679.916C1180.07 680.015 1179.57 679.893 1178.97 679.548ZM1180.15 676.666C1180.09 676.233 1179.95 675.848 1179.75 675.511C1179.55 675.166 1179.29 674.902 1178.97 674.719C1178.65 674.532 1178.38 674.493 1178.18 674.603C1177.98 674.706 1177.84 674.937 1177.78 675.296L1180.15 676.666Z" fill="#5F52FF"/>
|
|
255
|
+
<path d="M819.188 594.075L822.303 595.874C823.116 596.343 823.725 596.908 824.132 597.568C824.545 598.224 824.751 598.911 824.751 599.63C824.751 600.026 824.659 600.336 824.475 600.56C824.297 600.787 824.036 600.915 823.693 600.945C823.96 601.238 824.163 601.546 824.303 601.869C824.449 602.195 824.545 602.551 824.589 602.936L824.875 605.279L823.446 604.454L823.217 602.452C823.185 602.155 823.122 601.891 823.027 601.66C822.938 601.432 822.817 601.234 822.665 601.066C822.512 600.89 822.322 600.736 822.093 600.604L820.578 599.729L820.578 602.798L819.188 601.995L819.188 594.075ZM822.103 599.344C822.509 599.579 822.811 599.658 823.008 599.581C823.211 599.507 823.312 599.284 823.312 598.91C823.312 598.536 823.211 598.195 823.008 597.887C822.811 597.582 822.509 597.313 822.103 597.078L820.578 596.198L820.578 598.464L822.103 599.344ZM827.863 607.136C827.355 606.842 826.91 606.457 826.529 605.981C826.155 605.5 825.869 604.98 825.672 604.419C825.475 603.85 825.377 603.28 825.377 602.708C825.377 602.136 825.475 601.68 825.672 601.339C825.869 600.998 826.155 600.807 826.529 600.767C826.91 600.73 827.355 600.858 827.863 601.152C828.377 601.449 828.822 601.834 829.197 602.307C829.571 602.772 829.854 603.299 830.045 603.885C830.241 604.468 830.34 605.075 830.34 605.706L830.34 606.036L826.663 603.913C826.694 604.217 826.761 604.501 826.863 604.765C826.971 605.026 827.107 605.262 827.272 605.475C827.444 605.684 827.641 605.852 827.863 605.981C828.142 606.142 828.374 606.214 828.558 606.195C828.749 606.173 828.895 606.074 828.997 605.898L830.254 606.624C830.089 607.108 829.797 607.402 829.378 607.504C828.965 607.603 828.46 607.48 827.863 607.136ZM829.044 604.254C828.981 603.821 828.847 603.436 828.644 603.099C828.441 602.754 828.181 602.49 827.863 602.307C827.539 602.12 827.276 602.081 827.072 602.191C826.869 602.294 826.736 602.525 826.672 602.884L829.044 604.254ZM833.398 610.332C832.89 610.038 832.449 609.655 832.074 609.182C831.706 608.705 831.423 608.187 831.226 607.626C831.029 607.057 830.931 606.487 830.931 605.915C830.931 605.343 831.029 604.887 831.226 604.546C831.423 604.205 831.706 604.012 832.074 603.968C832.449 603.928 832.89 604.054 833.398 604.348C834.078 604.74 834.618 605.25 835.018 605.877C835.418 606.504 835.656 607.176 835.732 607.895L834.437 607.147C834.38 606.813 834.259 606.509 834.075 606.234C833.897 605.955 833.671 605.737 833.398 605.58C833.144 605.433 832.932 605.383 832.76 605.431C832.589 605.471 832.458 605.598 832.369 605.811C832.287 606.027 832.246 606.315 832.246 606.674C832.246 607.033 832.287 607.369 832.369 607.681C832.458 607.989 832.589 608.265 832.76 608.511C832.932 608.757 833.144 608.953 833.398 609.1C833.684 609.265 833.916 609.307 834.094 609.226C834.278 609.149 834.392 608.955 834.437 608.643L835.732 609.391C835.656 610.044 835.415 610.462 835.008 610.645C834.602 610.821 834.065 610.717 833.398 610.332ZM841.016 614.598L839.758 613.872L839.758 613.091C839.574 613.263 839.352 613.358 839.091 613.377C838.831 613.388 838.533 613.296 838.196 613.102C837.821 612.885 837.5 612.612 837.234 612.282C836.973 611.948 836.773 611.569 836.634 611.144C836.5 610.722 836.434 610.273 836.434 609.796L836.434 606.232L837.72 606.975L837.72 610.363C837.72 610.722 837.793 611.05 837.939 611.347C838.085 611.637 838.317 611.873 838.634 612.057C838.812 612.159 838.98 612.212 839.139 612.216C839.304 612.216 839.441 612.141 839.549 611.991C839.663 611.844 839.72 611.602 839.72 611.265L839.72 608.13L841.016 608.878L841.016 614.598ZM842.006 609.449L843.264 610.175L843.264 611.165C843.422 610.883 843.626 610.733 843.873 610.714C844.121 610.689 844.41 610.771 844.74 610.962L845.14 611.193L845.14 612.568L844.683 612.304C844.391 612.135 844.143 612.047 843.94 612.04C843.737 612.025 843.578 612.113 843.464 612.304C843.356 612.491 843.302 612.797 843.302 613.222L843.302 615.917L842.006 615.169L842.006 609.449ZM847.848 618.674C847.143 618.267 846.591 617.787 846.191 617.233C845.797 616.683 845.581 616.049 845.543 615.33L846.8 616.056C846.832 616.427 846.937 616.736 847.115 616.986C847.299 617.239 847.559 617.462 847.896 617.657C848.169 617.814 848.388 617.886 848.553 617.871C848.718 617.849 848.801 617.739 848.801 617.541C848.801 617.402 848.775 617.277 848.725 617.167C848.674 617.057 848.566 616.922 848.401 616.76C848.242 616.595 847.994 616.386 847.658 616.133C847.15 615.737 846.75 615.374 846.457 615.044C846.165 614.714 845.956 614.399 845.829 614.098C845.708 613.801 845.648 613.488 845.648 613.158C845.648 612.615 845.838 612.3 846.219 612.212C846.6 612.124 847.112 612.265 847.753 612.635C848.464 613.046 849.007 613.535 849.382 614.104C849.757 614.665 849.95 615.253 849.963 615.869L848.763 615.176C848.756 614.828 848.661 614.535 848.477 614.296C848.293 614.058 848.051 613.853 847.753 613.68C847.505 613.537 847.302 613.475 847.143 613.493C846.991 613.515 846.915 613.622 846.915 613.812C846.915 613.952 846.946 614.084 847.01 614.208C847.08 614.329 847.197 614.47 847.362 614.632C847.534 614.789 847.785 614.993 848.115 615.242C848.617 615.627 849.01 615.983 849.296 616.309C849.582 616.628 849.785 616.94 849.906 617.244C850.027 617.541 850.087 617.855 850.087 618.185C850.087 618.749 849.881 619.07 849.468 619.147C849.061 619.221 848.521 619.063 847.848 618.674ZM850.741 614.493L852.037 615.241L852.037 620.961L850.741 620.213L850.741 614.493ZM850.741 612.293L852.037 613.041L852.037 614.372L850.741 613.624L850.741 612.293ZM852.573 615.55L853.973 616.359L855.193 621.364L856.393 617.756L857.784 618.559L855.926 623.206L854.44 622.348L852.573 615.55ZM860.6 626.037C860.092 625.743 859.648 625.358 859.267 624.882C858.892 624.401 858.606 623.881 858.409 623.32C858.212 622.751 858.114 622.181 858.114 621.609C858.114 621.037 858.212 620.581 858.409 620.24C858.606 619.899 858.892 619.708 859.267 619.668C859.648 619.631 860.092 619.759 860.6 620.053C861.115 620.35 861.559 620.735 861.934 621.208C862.309 621.673 862.591 622.2 862.782 622.786C862.979 623.369 863.077 623.976 863.077 624.607L863.077 624.937L859.4 622.814C859.432 623.118 859.498 623.402 859.6 623.666C859.708 623.927 859.845 624.163 860.01 624.376C860.181 624.585 860.378 624.753 860.6 624.882C860.88 625.043 861.112 625.115 861.296 625.096C861.486 625.074 861.632 624.975 861.734 624.799L862.991 625.525C862.826 626.009 862.534 626.303 862.115 626.405C861.702 626.504 861.197 626.381 860.6 626.037ZM861.782 623.155C861.718 622.722 861.585 622.337 861.381 622C861.178 621.655 860.918 621.391 860.6 621.208C860.276 621.021 860.013 620.982 859.81 621.092C859.606 621.195 859.473 621.426 859.41 621.785L861.782 623.155ZM833.561 613.373L838.657 616.316L838.657 617.757L834.952 615.617L834.952 617.355L838.381 619.335L838.381 620.71L834.952 618.73L834.952 620.655L838.638 622.784L838.638 624.225L833.561 621.293L833.561 613.373ZM841.354 625.793C841.042 625.613 840.785 625.424 840.582 625.226C840.379 625.021 840.217 624.773 840.096 624.484C839.982 624.198 839.925 623.857 839.925 623.461L839.925 620.381L839.067 619.886L839.067 618.753L839.925 619.248L839.925 617.488L841.22 618.236L841.22 619.996L842.459 620.711L842.459 621.844L841.22 621.129L841.22 624.055C841.22 624.238 841.255 624.394 841.325 624.522C841.395 624.643 841.516 624.753 841.687 624.852L842.459 625.298L842.459 626.431L841.354 625.793ZM843.197 618.937L844.492 619.685L844.492 622.611C844.677 622.453 844.896 622.371 845.15 622.363C845.404 622.356 845.693 622.446 846.017 622.633C846.391 622.849 846.709 623.124 846.969 623.458C847.236 623.788 847.436 624.164 847.569 624.585C847.709 625.011 847.779 625.462 847.779 625.938L847.779 629.502L846.493 628.76L846.493 625.372C846.493 625.012 846.42 624.688 846.274 624.398C846.128 624.101 845.896 623.861 845.578 623.678C845.401 623.575 845.229 623.524 845.064 623.524C844.905 623.52 844.769 623.592 844.654 623.738C844.546 623.889 844.492 624.132 844.492 624.47L844.492 627.605L843.197 626.857L843.197 618.937ZM848.76 624.349L850.055 625.097L850.055 630.817L848.76 630.069L848.76 624.349ZM848.76 622.149L850.055 622.897L850.055 624.228L848.76 623.48L848.76 622.149ZM853.316 632.831C852.808 632.538 852.367 632.155 851.992 631.682C851.624 631.205 851.341 630.686 851.144 630.125C850.947 629.557 850.849 628.987 850.849 628.415C850.849 627.843 850.947 627.386 851.144 627.045C851.341 626.704 851.624 626.512 851.992 626.468C852.367 626.427 852.808 626.554 853.316 626.847C853.996 627.239 854.535 627.749 854.936 628.376C855.336 629.003 855.574 629.676 855.65 630.395L854.354 629.647C854.297 629.313 854.177 629.009 853.992 628.734C853.815 628.455 853.589 628.237 853.316 628.079C853.062 627.932 852.849 627.883 852.678 627.931C852.506 627.971 852.376 628.097 852.287 628.31C852.205 628.526 852.163 628.814 852.163 629.174C852.163 629.533 852.205 629.868 852.287 630.18C852.376 630.488 852.506 630.765 852.678 631.011C852.849 631.256 853.062 631.452 853.316 631.599C853.602 631.764 853.834 631.806 854.011 631.726C854.196 631.649 854.31 631.454 854.354 631.143L855.65 631.891C855.574 632.543 855.332 632.961 854.926 633.145C854.52 633.321 853.983 633.216 853.316 632.831ZM857.904 635.48C857.358 635.165 856.92 634.761 856.589 634.27C856.259 633.771 856.094 633.247 856.094 632.697C856.094 632.36 856.161 632.116 856.294 631.966C856.434 631.812 856.643 631.742 856.923 631.757C857.209 631.775 857.577 631.87 858.028 632.043L859.438 632.571L859.438 632.274C859.438 632.017 859.371 631.788 859.238 631.586C859.104 631.384 858.885 631.196 858.58 631.02C858.295 630.855 858.063 630.79 857.885 630.827C857.714 630.867 857.625 631.025 857.618 631.3L856.332 630.558C856.339 629.916 856.548 629.549 856.961 629.458C857.38 629.362 857.917 629.503 858.571 629.881C859.276 630.288 859.806 630.745 860.162 631.251C860.524 631.76 860.705 632.286 860.705 632.829L860.705 636.965L859.476 636.256L859.476 635.618C859.273 635.772 859.041 635.836 858.78 635.81C858.526 635.781 858.234 635.671 857.904 635.48ZM858.228 634.589C858.444 634.714 858.641 634.783 858.819 634.798C859.003 634.816 859.152 634.763 859.266 634.639C859.381 634.514 859.438 634.309 859.438 634.023L859.438 633.539L858.276 633.143C857.971 633.033 857.752 632.994 857.618 633.027C857.485 633.053 857.418 633.179 857.418 633.407C857.418 633.627 857.485 633.841 857.618 634.05C857.758 634.255 857.961 634.435 858.228 634.589ZM861.57 629.545L862.866 630.293L862.866 638.213L861.57 637.465L861.57 629.545ZM824.412 627.143C823.821 626.802 823.307 626.399 822.869 625.933C822.43 625.46 822.087 624.943 821.84 624.382C821.598 623.825 821.475 623.247 821.468 622.65L822.84 623.442C822.853 623.999 823.005 624.476 823.297 624.872C823.589 625.26 823.977 625.594 824.46 625.873C824.86 626.104 825.18 626.197 825.422 626.153C825.663 626.109 825.784 625.919 825.784 625.581C825.784 625.391 825.739 625.207 825.65 625.031C825.568 624.859 825.406 624.652 825.164 624.41C824.929 624.164 824.58 623.86 824.117 623.497C823.532 623.042 823.059 622.611 822.697 622.204C822.342 621.794 822.075 621.376 821.897 620.95C821.725 620.529 821.64 620.079 821.64 619.603C821.64 619.163 821.745 618.835 821.954 618.618C822.17 618.406 822.472 618.316 822.859 618.349C823.253 618.385 823.71 618.554 824.231 618.855C825.126 619.372 825.812 620.002 826.289 620.747C826.765 621.491 827.016 622.289 827.041 623.139L825.698 622.364C825.673 621.887 825.539 621.469 825.298 621.11C825.063 620.747 824.707 620.428 824.231 620.153C823.875 619.947 823.589 619.863 823.374 619.9C823.164 619.94 823.059 620.096 823.059 620.367C823.059 620.565 823.097 620.752 823.173 620.928C823.256 621.108 823.408 621.313 823.631 621.544C823.859 621.779 824.19 622.069 824.621 622.413C825.288 622.93 825.809 623.403 826.184 623.832C826.565 624.265 826.832 624.679 826.984 625.075C827.143 625.475 827.222 625.895 827.222 626.335C827.222 626.848 827.101 627.218 826.86 627.446C826.625 627.669 826.295 627.754 825.869 627.699C825.45 627.647 824.964 627.462 824.412 627.143ZM830.207 630.489C829.699 630.196 829.255 629.811 828.874 629.334C828.499 628.854 828.213 628.333 828.016 627.772C827.819 627.204 827.721 626.634 827.721 626.062C827.721 625.49 827.819 625.033 828.016 624.692C828.213 624.351 828.499 624.161 828.874 624.12C829.255 624.084 829.699 624.212 830.207 624.505C830.722 624.802 831.166 625.187 831.541 625.66C831.916 626.126 832.198 626.652 832.389 627.239C832.586 627.822 832.684 628.429 832.684 629.059L832.684 629.389L829.007 627.266C829.039 627.571 829.106 627.855 829.207 628.119C829.315 628.379 829.452 628.616 829.617 628.828C829.788 629.037 829.985 629.206 830.207 629.334C830.487 629.496 830.719 629.567 830.903 629.549C831.093 629.527 831.239 629.428 831.341 629.252L832.598 629.978C832.433 630.462 832.141 630.755 831.722 630.858C831.309 630.957 830.804 630.834 830.207 630.489ZM831.389 627.607C831.325 627.175 831.192 626.79 830.989 626.452C830.785 626.108 830.525 625.844 830.207 625.66C829.883 625.473 829.62 625.435 829.417 625.545C829.213 625.648 829.08 625.879 829.017 626.238L831.389 627.607ZM833.466 624.319L834.761 625.067L834.761 632.987L833.466 632.239L833.466 624.319ZM838.031 635.006C837.523 634.713 837.079 634.328 836.698 633.851C836.323 633.371 836.037 632.85 835.84 632.289C835.643 631.721 835.545 631.151 835.545 630.579C835.545 630.007 835.643 629.55 835.84 629.209C836.037 628.868 836.323 628.678 836.698 628.637C837.079 628.601 837.523 628.729 838.031 629.022C838.546 629.319 838.99 629.704 839.365 630.177C839.74 630.643 840.022 631.169 840.213 631.756C840.41 632.339 840.508 632.946 840.508 633.576L840.508 633.906L836.831 631.783C836.863 632.088 836.929 632.372 837.031 632.636C837.139 632.896 837.275 633.133 837.441 633.345C837.612 633.554 837.809 633.723 838.031 633.851C838.311 634.013 838.542 634.084 838.727 634.066C838.917 634.044 839.063 633.945 839.165 633.769L840.422 634.495C840.257 634.979 839.965 635.272 839.546 635.375C839.133 635.474 838.628 635.351 838.031 635.006ZM839.212 632.124C839.149 631.692 839.016 631.307 838.812 630.969C838.609 630.625 838.349 630.361 838.031 630.177C837.707 629.99 837.444 629.952 837.241 630.062C837.037 630.165 836.904 630.396 836.84 630.755L839.212 632.124ZM843.566 638.202C843.058 637.909 842.617 637.526 842.242 637.053C841.874 636.576 841.591 636.057 841.395 635.496C841.198 634.928 841.099 634.358 841.099 633.786C841.099 633.214 841.198 632.757 841.395 632.416C841.591 632.075 841.874 631.883 842.242 631.839C842.617 631.798 843.058 631.925 843.566 632.218C844.246 632.611 844.786 633.12 845.186 633.747C845.586 634.374 845.824 635.047 845.9 635.766L844.605 635.018C844.548 634.684 844.427 634.38 844.243 634.105C844.065 633.826 843.84 633.608 843.566 633.45C843.312 633.304 843.1 633.254 842.928 633.302C842.757 633.342 842.627 633.469 842.538 633.681C842.455 633.898 842.414 634.185 842.414 634.545C842.414 634.904 842.455 635.24 842.538 635.551C842.627 635.859 842.757 636.136 842.928 636.382C843.1 636.627 843.312 636.824 843.566 636.97C843.852 637.135 844.084 637.177 844.262 637.097C844.446 637.02 844.56 636.825 844.605 636.514L845.9 637.262C845.824 637.914 845.583 638.332 845.176 638.516C844.77 638.692 844.233 638.587 843.566 638.202ZM848.536 640.939C848.224 640.759 847.967 640.571 847.764 640.373C847.561 640.167 847.399 639.92 847.278 639.63C847.164 639.344 847.107 639.003 847.107 638.607L847.107 635.527L846.249 635.032L846.249 633.899L847.107 634.394L847.107 632.634L848.402 633.382L848.402 635.142L849.641 635.857L849.641 636.99L848.402 636.275L848.402 639.201C848.402 639.384 848.437 639.54 848.507 639.669C848.577 639.79 848.698 639.9 848.869 639.999L849.641 640.444L849.641 641.577L848.536 640.939ZM850.369 636.278L851.665 637.026L851.665 642.746L850.369 641.998L850.369 636.278ZM850.369 634.078L851.665 634.826L851.665 636.157L850.369 635.409L850.369 634.078ZM854.973 644.788C854.452 644.487 853.998 644.097 853.611 643.616C853.23 643.132 852.938 642.608 852.734 642.043C852.538 641.475 852.439 640.905 852.439 640.333C852.439 639.761 852.538 639.304 852.734 638.963C852.938 638.626 853.23 638.439 853.611 638.402C853.998 638.369 854.452 638.503 854.973 638.804C855.5 639.108 855.954 639.499 856.335 639.975C856.723 640.456 857.015 640.98 857.212 641.548C857.409 642.117 857.507 642.687 857.507 643.259C857.507 643.831 857.409 644.287 857.212 644.628C857.015 644.962 856.723 645.149 856.335 645.189C855.954 645.226 855.5 645.092 854.973 644.788ZM854.973 643.556C855.253 643.717 855.481 643.776 855.659 643.732C855.843 643.691 855.977 643.567 856.059 643.358C856.148 643.145 856.192 642.859 856.192 642.5C856.192 642.14 856.148 641.803 856.059 641.488C855.977 641.176 855.843 640.897 855.659 640.652C855.481 640.402 855.253 640.197 854.973 640.036C854.7 639.878 854.471 639.819 854.287 639.86C854.109 639.896 853.976 640.021 853.887 640.234C853.798 640.446 853.754 640.732 853.754 641.092C853.754 641.451 853.798 641.788 853.887 642.104C853.976 642.412 854.109 642.69 854.287 642.94C854.471 643.193 854.7 643.398 854.973 643.556ZM858.286 640.849L859.544 641.575L859.544 642.356C859.728 642.183 859.95 642.092 860.211 642.081C860.471 642.062 860.769 642.15 861.106 642.345C861.481 642.561 861.798 642.836 862.059 643.17C862.325 643.5 862.526 643.876 862.659 644.297C862.799 644.723 862.868 645.174 862.868 645.65L862.868 649.214L861.582 648.472L861.582 645.084C861.582 644.724 861.509 644.4 861.363 644.11C861.217 643.813 860.985 643.573 860.668 643.39C860.49 643.287 860.319 643.236 860.153 643.236C859.995 643.232 859.858 643.304 859.744 643.45C859.636 643.601 859.582 643.844 859.582 644.182L859.582 647.317L858.286 646.569L858.286 640.849Z" fill="#5F52FF"/>
|
|
256
|
+
<path d="M738.525 725.167C737.858 724.782 737.28 724.265 736.791 723.616C736.302 722.967 735.927 722.259 735.667 721.493C735.413 720.723 735.286 719.96 735.286 719.205C735.286 718.442 735.416 717.828 735.676 717.362C735.943 716.893 736.334 716.627 736.848 716.565C737.369 716.499 737.991 716.675 738.715 717.093C739.306 717.434 739.827 717.856 740.278 718.358C740.728 718.86 741.094 719.408 741.373 720.002C741.653 720.589 741.834 721.185 741.916 721.79L740.497 720.97C740.395 720.479 740.189 720.012 739.877 719.568C739.566 719.124 739.179 718.769 738.715 718.501C738.271 718.244 737.899 718.151 737.601 718.22C737.302 718.283 737.083 718.475 736.943 718.798C736.804 719.121 736.734 719.535 736.734 720.041C736.734 720.54 736.804 721.031 736.943 721.515C737.083 721.999 737.302 722.448 737.601 722.862C737.899 723.27 738.271 723.601 738.715 723.858C739.211 724.144 739.611 724.225 739.916 724.1C740.22 723.968 740.433 723.665 740.554 723.192L738.429 721.966L738.429 720.668L742.002 722.73L742.002 727.043L740.973 726.449L740.973 725.074C740.744 725.426 740.427 725.616 740.02 725.646C739.62 725.671 739.122 725.512 738.525 725.167ZM747.548 730.244L746.29 729.518L746.29 728.737C746.106 728.91 745.884 729.005 745.624 729.023C745.363 729.034 745.065 728.943 744.728 728.748C744.353 728.532 744.033 728.259 743.766 727.929C743.506 727.595 743.305 727.216 743.166 726.79C743.032 726.369 742.966 725.92 742.966 725.443L742.966 721.879L744.252 722.621L744.252 726.009C744.252 726.369 744.325 726.697 744.471 726.994C744.617 727.284 744.849 727.52 745.166 727.703C745.344 727.806 745.512 727.859 745.671 727.863C745.836 727.863 745.973 727.788 746.081 727.637C746.195 727.491 746.252 727.249 746.252 726.911L746.252 723.776L747.548 724.524L747.548 730.244ZM750.091 731.845C749.545 731.529 749.107 731.126 748.776 730.635C748.446 730.136 748.281 729.612 748.281 729.062C748.281 728.724 748.348 728.481 748.481 728.33C748.621 728.176 748.83 728.107 749.11 728.121C749.396 728.14 749.764 728.235 750.215 728.407L751.625 728.935L751.625 728.638C751.625 728.382 751.558 728.152 751.425 727.951C751.291 727.749 751.072 727.56 750.767 727.384C750.482 727.219 750.25 727.155 750.072 727.192C749.9 727.232 749.812 727.39 749.805 727.665L748.519 726.922C748.525 726.281 748.735 725.914 749.148 725.822C749.567 725.727 750.104 725.868 750.758 726.246C751.463 726.653 751.993 727.109 752.349 727.615C752.711 728.125 752.892 728.651 752.892 729.194L752.892 733.33L751.663 732.62L751.663 731.982C751.46 732.136 751.228 732.2 750.967 732.175C750.713 732.145 750.421 732.035 750.091 731.845ZM750.415 730.954C750.631 731.078 750.828 731.148 751.005 731.163C751.19 731.181 751.339 731.128 751.453 731.003C751.568 730.879 751.625 730.673 751.625 730.387L751.625 729.903L750.462 729.507C750.158 729.397 749.939 729.359 749.805 729.392C749.672 729.417 749.605 729.544 749.605 729.771C749.605 729.991 749.672 730.206 749.805 730.415C749.945 730.62 750.148 730.8 750.415 730.954ZM753.757 728.109L755.015 728.835L755.015 729.825C755.173 729.543 755.377 729.393 755.624 729.374C755.872 729.349 756.161 729.431 756.491 729.622L756.891 729.853L756.891 731.228L756.434 730.964C756.142 730.795 755.894 730.707 755.691 730.7C755.488 730.685 755.329 730.773 755.215 730.964C755.107 731.151 755.053 731.457 755.053 731.882L755.053 734.577L753.757 733.829L753.757 728.109ZM759.609 737.34C759.145 737.072 758.748 736.715 758.418 736.267C758.088 735.813 757.837 735.312 757.666 734.766C757.494 734.212 757.408 733.649 757.408 733.077C757.408 732.498 757.494 732.034 757.666 731.686C757.837 731.33 758.088 731.119 758.418 731.053C758.748 730.987 759.145 731.088 759.609 731.356C759.939 731.547 760.228 731.783 760.476 732.065C760.73 732.351 760.943 732.676 761.114 733.039L761.114 730.157L762.41 730.905L762.41 738.825L761.152 738.099L761.152 737.34C760.981 737.527 760.768 737.624 760.514 737.631C760.26 737.639 759.958 737.542 759.609 737.34ZM759.933 736.295C760.2 736.449 760.422 736.504 760.6 736.46C760.777 736.416 760.911 736.291 761 736.086C761.089 735.873 761.133 735.587 761.133 735.228C761.133 734.869 761.089 734.531 761 734.216C760.911 733.901 760.777 733.622 760.6 733.38C760.422 733.131 760.2 732.929 759.933 732.775C759.66 732.617 759.434 732.56 759.256 732.604C759.079 732.641 758.945 732.766 758.856 732.978C758.774 733.195 758.732 733.483 758.732 733.842C758.732 734.201 758.774 734.537 758.856 734.848C758.945 735.156 759.079 735.435 759.256 735.684C759.434 735.934 759.66 736.137 759.933 736.295ZM763.395 733.674L764.653 734.4L764.653 735.39C764.811 735.108 765.015 734.957 765.262 734.939C765.51 734.913 765.799 734.996 766.129 735.186L766.529 735.417L766.529 736.792L766.072 736.528C765.78 736.36 765.532 736.272 765.329 736.264C765.126 736.25 764.967 736.338 764.853 736.528C764.745 736.715 764.691 737.022 764.691 737.447L764.691 740.142L763.395 739.394L763.395 733.674ZM768.809 742.651C768.262 742.336 767.824 741.933 767.494 741.441C767.164 740.943 766.999 740.418 766.999 739.868C766.999 739.531 767.065 739.287 767.199 739.137C767.338 738.983 767.548 738.913 767.827 738.928C768.113 738.946 768.482 739.042 768.932 739.214L770.342 739.742L770.342 739.445C770.342 739.188 770.276 738.959 770.142 738.757C770.009 738.556 769.79 738.367 769.485 738.191C769.199 738.026 768.967 737.962 768.79 737.998C768.618 738.039 768.529 738.196 768.523 738.471L767.237 737.729C767.243 737.087 767.453 736.721 767.866 736.629C768.285 736.534 768.821 736.675 769.475 737.052C770.18 737.459 770.711 737.916 771.066 738.422C771.428 738.932 771.609 739.458 771.609 740L771.609 744.136L770.38 743.427L770.38 742.789C770.177 742.943 769.945 743.007 769.685 742.981C769.431 742.952 769.139 742.842 768.809 742.651ZM769.133 741.76C769.348 741.885 769.545 741.955 769.723 741.969C769.907 741.988 770.057 741.935 770.171 741.81C770.285 741.685 770.342 741.48 770.342 741.194L770.342 740.71L769.18 740.314C768.875 740.204 768.656 740.165 768.523 740.198C768.389 740.224 768.323 740.351 768.323 740.578C768.323 740.798 768.389 741.012 768.523 741.221C768.663 741.427 768.866 741.606 769.133 741.76ZM772.465 738.911L773.761 739.659L773.761 745.379L772.465 744.631L772.465 738.911ZM772.465 736.711L773.761 737.459L773.761 738.79L772.465 738.042L772.465 736.711ZM774.745 738.027L776.04 738.775L776.04 746.695L774.745 745.947L774.745 738.027Z" fill="#5F52FF"/>
|
|
257
|
+
<path d="M975.305 484.852L973.143 483.603L973.143 482.162L978.878 485.473L978.878 486.914L976.715 485.666L976.715 492.145L975.305 491.331L975.305 484.852ZM981.067 494.79C980.521 494.474 980.083 494.071 979.753 493.58C979.422 493.081 979.257 492.557 979.257 492.007C979.257 491.669 979.324 491.425 979.457 491.275C979.597 491.121 979.807 491.051 980.086 491.066C980.372 491.084 980.74 491.18 981.191 491.352L982.601 491.88L982.601 491.583C982.601 491.326 982.534 491.097 982.401 490.896C982.268 490.694 982.048 490.505 981.744 490.329C981.458 490.164 981.226 490.1 981.048 490.137C980.877 490.177 980.788 490.335 980.781 490.61L979.495 489.867C979.502 489.225 979.711 488.859 980.124 488.767C980.543 488.672 981.08 488.813 981.734 489.191C982.439 489.598 982.969 490.054 983.325 490.56C983.687 491.07 983.868 491.596 983.868 492.139L983.868 496.275L982.639 495.565L982.639 494.927C982.436 495.081 982.204 495.145 981.944 495.12C981.69 495.09 981.397 494.98 981.067 494.79ZM981.391 493.899C981.607 494.023 981.804 494.093 981.982 494.108C982.166 494.126 982.315 494.073 982.429 493.948C982.544 493.823 982.601 493.618 982.601 493.332L982.601 492.848L981.439 492.452C981.134 492.342 980.915 492.304 980.781 492.337C980.648 492.362 980.581 492.489 980.581 492.716C980.581 492.936 980.648 493.151 980.781 493.36C980.921 493.565 981.124 493.745 981.391 493.899ZM986.715 498.05C986.01 497.643 985.457 497.163 985.057 496.609C984.664 496.059 984.448 495.425 984.41 494.706L985.667 495.432C985.699 495.803 985.804 496.112 985.981 496.362C986.166 496.615 986.426 496.838 986.762 497.033C987.036 497.19 987.255 497.262 987.42 497.247C987.585 497.225 987.667 497.115 987.667 496.917C987.667 496.778 987.642 496.653 987.591 496.543C987.54 496.433 987.433 496.298 987.267 496.136C987.109 495.971 986.861 495.762 986.524 495.509C986.016 495.113 985.616 494.75 985.324 494.42C985.032 494.09 984.822 493.775 984.695 493.474C984.575 493.177 984.514 492.864 984.514 492.534C984.514 491.991 984.705 491.676 985.086 491.588C985.467 491.5 985.978 491.641 986.62 492.011C987.331 492.422 987.874 492.911 988.249 493.48C988.623 494.041 988.817 494.629 988.83 495.245L987.629 494.552C987.623 494.204 987.528 493.911 987.344 493.672C987.159 493.434 986.918 493.229 986.62 493.056C986.372 492.913 986.169 492.851 986.01 492.869C985.857 492.891 985.781 492.998 985.781 493.188C985.781 493.328 985.813 493.46 985.877 493.584C985.946 493.705 986.064 493.846 986.229 494.008C986.4 494.165 986.651 494.369 986.982 494.618C987.483 495.003 987.877 495.359 988.163 495.685C988.449 496.004 988.652 496.316 988.773 496.62C988.893 496.917 988.954 497.231 988.954 497.561C988.954 498.125 988.747 498.446 988.334 498.523C987.928 498.597 987.388 498.439 986.715 498.05ZM989.617 491.674L990.913 492.422L990.913 496.932L992.847 495.739L994.381 496.624L992.504 497.719L994.504 502.416L992.99 501.541L991.608 498.247L990.913 498.67L990.913 500.342L989.617 499.594L989.617 491.674Z" fill="#5F52FF"/>
|
|
258
|
+
<path d="M841.373 489.21L844.297 487.521C844.844 487.206 845.406 486.995 845.984 486.889C846.555 486.779 847.105 486.766 847.632 486.85C848.165 486.931 848.648 487.096 849.08 487.345C849.512 487.595 849.8 487.875 849.947 488.187C850.093 488.491 850.074 488.81 849.889 489.144C849.699 489.474 849.331 489.797 848.784 490.112L847.251 490.997L849.623 492.367L848.232 493.17L841.373 489.21ZM847.508 489.463C847.914 489.228 848.13 489.001 848.156 488.781C848.181 488.561 848.022 488.352 847.679 488.154C847.343 487.96 846.984 487.87 846.603 487.884C846.222 487.899 845.828 488.024 845.422 488.258L843.964 489.1L846.05 490.304L847.508 489.463ZM857.283 488.076C856.762 488.377 856.197 488.575 855.587 488.67C854.977 488.758 854.377 488.749 853.787 488.643C853.196 488.529 852.653 488.329 852.158 488.043C851.662 487.757 851.316 487.444 851.119 487.103C850.929 486.758 850.913 486.412 851.072 486.063C851.237 485.711 851.58 485.385 852.101 485.084C852.628 484.78 853.193 484.582 853.796 484.49C854.406 484.395 855.006 484.404 855.597 484.518C856.187 484.632 856.73 484.831 857.226 485.117C857.721 485.403 858.067 485.717 858.264 486.058C858.455 486.395 858.47 486.742 858.312 487.097C858.153 487.446 857.81 487.772 857.283 488.076ZM856.216 487.46C856.495 487.299 856.66 487.13 856.711 486.954C856.768 486.775 856.727 486.597 856.587 486.421C856.448 486.238 856.222 486.056 855.911 485.876C855.6 485.697 855.285 485.567 854.968 485.486C854.657 485.402 854.349 485.378 854.044 485.414C853.739 485.444 853.447 485.539 853.167 485.7C852.894 485.858 852.729 486.027 852.672 486.206C852.615 486.379 852.656 486.557 852.796 486.74C852.936 486.923 853.161 487.105 853.472 487.284C853.784 487.464 854.098 487.594 854.415 487.675C854.727 487.752 855.035 487.776 855.339 487.746C855.651 487.713 855.943 487.618 856.216 487.46ZM855.909 483.018L857.167 482.292L857.843 482.682C857.786 482.436 857.818 482.198 857.938 481.967C858.053 481.732 858.278 481.518 858.615 481.324C858.989 481.107 859.386 480.97 859.805 480.911C860.225 480.845 860.65 480.86 861.082 480.955C861.52 481.047 861.946 481.212 862.358 481.45L865.445 483.232L864.159 483.975L861.225 482.281C860.914 482.101 860.596 482.002 860.272 481.984C859.942 481.962 859.618 482.042 859.3 482.226C859.123 482.328 858.992 482.451 858.91 482.594C858.827 482.73 858.821 482.884 858.891 483.056C858.967 483.225 859.151 483.393 859.443 483.562L862.158 485.13L860.863 485.878L855.909 483.018ZM868.922 481.357C868.458 481.624 867.95 481.789 867.397 481.852C866.839 481.91 866.28 481.877 865.721 481.753C865.156 481.624 864.625 481.417 864.13 481.131C863.628 480.842 863.269 480.535 863.053 480.213C862.831 479.886 862.774 479.564 862.882 479.245C862.99 478.926 863.276 478.632 863.739 478.365C864.07 478.174 864.419 478.042 864.787 477.969C865.162 477.892 865.549 477.87 865.949 477.903L863.454 476.462L864.749 475.714L871.608 479.674L870.351 480.4L869.693 480.02C869.769 480.262 869.747 480.495 869.627 480.719C869.506 480.942 869.271 481.155 868.922 481.357ZM868.179 480.554C868.445 480.4 868.604 480.235 868.655 480.059C868.706 479.883 868.664 479.705 868.531 479.525C868.391 479.342 868.166 479.16 867.855 478.981C867.544 478.801 867.229 478.671 866.912 478.59C866.594 478.51 866.286 478.486 865.988 478.519C865.683 478.548 865.397 478.64 865.13 478.794C864.857 478.951 864.695 479.118 864.644 479.294C864.587 479.467 864.628 479.644 864.768 479.828C864.914 480.007 865.143 480.187 865.454 480.367C865.765 480.546 866.076 480.678 866.388 480.763C866.699 480.84 867.007 480.864 867.312 480.834C867.617 480.805 867.906 480.711 868.179 480.554ZM875.366 477.636C874.858 477.93 874.302 478.122 873.699 478.214C873.095 478.298 872.501 478.285 871.917 478.175C871.327 478.062 870.784 477.862 870.288 477.576C869.793 477.29 869.447 476.976 869.25 476.635C869.053 476.294 869.031 475.951 869.183 475.607C869.342 475.258 869.675 474.938 870.183 474.644C870.698 474.347 871.253 474.155 871.85 474.067C872.441 473.975 873.038 473.993 873.641 474.122C874.245 474.243 874.819 474.461 875.366 474.776L875.651 474.941L871.974 477.064C872.254 477.189 872.533 477.273 872.813 477.317C873.092 477.354 873.365 477.354 873.632 477.317C873.899 477.273 874.143 477.187 874.365 477.059C874.645 476.897 874.823 476.732 874.899 476.564C874.975 476.388 874.962 476.212 874.861 476.036L876.118 475.31C876.455 475.695 876.563 476.094 876.442 476.509C876.321 476.916 875.963 477.292 875.366 477.636ZM873.46 475.172C873.054 475.011 872.654 474.934 872.26 474.941C871.86 474.945 871.501 475.038 871.184 475.222C870.86 475.409 870.695 475.618 870.688 475.849C870.676 476.076 870.809 476.307 871.088 476.542L873.46 475.172ZM873.937 472.609L875.195 471.883L876.052 472.378C875.887 472.099 875.858 471.848 875.966 471.624C876.068 471.397 876.284 471.188 876.614 470.997L877.014 470.766L878.205 471.454L877.748 471.718C877.456 471.887 877.256 472.057 877.148 472.229C877.033 472.398 877.03 472.58 877.138 472.774C877.246 472.961 877.484 473.161 877.853 473.373L880.186 474.721L878.891 475.469L873.937 472.609Z" fill="#465358"/>
|
|
259
|
+
<path d="M485.373 526.71L486.764 525.907L492.375 529.146L495.623 527.271L496.871 527.991L492.232 530.67L485.373 526.71ZM500.305 526.141C499.797 526.434 499.241 526.627 498.638 526.719C498.034 526.803 497.441 526.79 496.856 526.68C496.266 526.566 495.723 526.367 495.227 526.081C494.732 525.795 494.386 525.481 494.189 525.14C493.992 524.799 493.97 524.456 494.122 524.112C494.281 523.763 494.615 523.442 495.123 523.149C495.637 522.852 496.193 522.66 496.79 522.572C497.38 522.48 497.977 522.498 498.581 522.627C499.184 522.748 499.759 522.966 500.305 523.281L500.591 523.446L496.914 525.569C497.193 525.694 497.472 525.778 497.752 525.822C498.031 525.859 498.304 525.859 498.571 525.822C498.838 525.778 499.082 525.692 499.305 525.564C499.584 525.402 499.762 525.237 499.838 525.069C499.914 524.893 499.902 524.717 499.8 524.541L501.057 523.815C501.394 524.2 501.502 524.599 501.381 525.014C501.261 525.421 500.902 525.796 500.305 526.141ZM498.4 523.677C497.993 523.516 497.593 523.439 497.199 523.446C496.799 523.45 496.44 523.543 496.123 523.727C495.799 523.914 495.634 524.123 495.628 524.354C495.615 524.581 495.748 524.812 496.028 525.047L498.4 523.677ZM505.497 523.143C504.951 523.459 504.383 523.636 503.792 523.677C503.195 523.713 502.658 523.594 502.182 523.319C501.89 523.151 501.712 522.971 501.649 522.78C501.585 522.582 501.63 522.366 501.782 522.131C501.941 521.893 502.208 521.622 502.582 521.317L503.744 520.36L503.487 520.212C503.265 520.083 503.033 520.027 502.792 520.041C502.55 520.056 502.277 520.151 501.973 520.327C501.687 520.492 501.515 520.661 501.458 520.833C501.407 521.002 501.499 521.158 501.734 521.301L500.448 522.043C499.896 521.717 499.683 521.352 499.81 520.949C499.937 520.538 500.328 520.144 500.982 519.766C501.687 519.359 502.347 519.128 502.963 519.073C503.586 519.015 504.132 519.121 504.602 519.392L508.184 521.46L506.955 522.17L506.402 521.851C506.434 522.104 506.374 522.337 506.221 522.549C506.069 522.755 505.827 522.953 505.497 523.143ZM504.888 522.417C505.103 522.293 505.262 522.157 505.364 522.01C505.472 521.86 505.5 521.704 505.45 521.543C505.399 521.381 505.25 521.229 505.002 521.086L504.583 520.844L503.659 521.653C503.411 521.862 503.268 522.032 503.23 522.164C503.186 522.293 503.262 522.414 503.459 522.527C503.649 522.637 503.868 522.687 504.116 522.676C504.364 522.657 504.621 522.571 504.888 522.417ZM504.477 517.881L505.734 517.155L506.591 517.65C506.426 517.371 506.398 517.12 506.506 516.896C506.607 516.669 506.823 516.46 507.153 516.269L507.554 516.038L508.744 516.726L508.287 516.99C507.995 517.158 507.795 517.329 507.687 517.501C507.573 517.67 507.569 517.851 507.677 518.046C507.785 518.233 508.023 518.432 508.392 518.645L510.726 519.993L509.43 520.741L504.477 517.881ZM508.718 515.432L509.976 514.706L510.652 515.096C510.595 514.85 510.627 514.612 510.747 514.381C510.862 514.146 511.087 513.932 511.424 513.738C511.798 513.521 512.195 513.384 512.615 513.325C513.034 513.259 513.459 513.274 513.891 513.369C514.329 513.461 514.755 513.626 515.168 513.864L518.254 515.646L516.968 516.389L514.034 514.695C513.723 514.515 513.405 514.416 513.081 514.398C512.751 514.376 512.427 514.456 512.11 514.64C511.932 514.742 511.802 514.865 511.719 515.008C511.637 515.144 511.63 515.298 511.7 515.47C511.776 515.639 511.96 515.807 512.253 515.976L514.968 517.544L513.672 518.292L508.718 515.432Z" fill="#465358"/>
|
|
260
|
+
<path d="M441.373 516.71L443.983 515.203C444.752 514.759 445.542 514.475 446.355 514.35C447.168 514.218 447.959 514.228 448.727 514.378C449.496 514.528 450.213 514.796 450.88 515.181C451.541 515.562 452.001 515.975 452.261 516.418C452.522 516.862 452.541 517.32 452.319 517.793C452.103 518.263 451.61 518.719 450.842 519.163L448.232 520.67L441.373 516.71ZM449.642 518.47C450.105 518.202 450.391 517.927 450.499 517.645C450.607 517.355 450.566 517.075 450.375 516.803C450.178 516.528 449.864 516.266 449.432 516.017C448.994 515.764 448.54 515.582 448.07 515.472C447.594 515.359 447.108 515.335 446.612 515.401C446.123 515.463 445.647 515.628 445.183 515.896L443.964 516.6L448.422 519.174L449.642 518.47ZM457.859 515.244C457.35 515.537 456.795 515.73 456.191 515.822C455.588 515.906 454.994 515.893 454.41 515.783C453.819 515.669 453.276 515.47 452.781 515.184C452.286 514.898 451.94 514.584 451.743 514.243C451.546 513.902 451.524 513.559 451.676 513.215C451.835 512.866 452.168 512.545 452.676 512.252C453.191 511.955 453.746 511.763 454.343 511.675C454.934 511.583 455.531 511.601 456.134 511.73C456.738 511.851 457.312 512.069 457.859 512.384L458.144 512.549L454.467 514.672C454.747 514.797 455.026 514.881 455.305 514.925C455.585 514.962 455.858 514.962 456.125 514.925C456.391 514.881 456.636 514.795 456.858 514.667C457.138 514.505 457.316 514.34 457.392 514.172C457.468 513.996 457.455 513.82 457.354 513.644L458.611 512.918C458.948 513.303 459.056 513.702 458.935 514.117C458.814 514.524 458.455 514.899 457.859 515.244ZM455.953 512.78C455.547 512.619 455.147 512.542 454.753 512.549C454.353 512.553 453.994 512.646 453.676 512.83C453.353 513.017 453.187 513.226 453.181 513.457C453.168 513.684 453.302 513.915 453.581 514.15L455.953 512.78ZM457.916 510.492L457.059 510.987L456.078 510.42L456.935 509.925L456.325 509.573C455.989 509.379 455.782 509.194 455.706 509.018C455.636 508.838 455.668 508.669 455.801 508.512C455.928 508.35 456.147 508.18 456.459 508L457.564 507.362L458.545 507.929L457.773 508.374C457.602 508.473 457.516 508.563 457.516 508.644C457.516 508.724 457.595 508.811 457.754 508.902L458.231 509.177L459.469 508.462L460.45 509.029L459.212 509.744L463.184 512.037L461.889 512.785L457.916 510.492ZM467.933 509.428C467.425 509.721 466.869 509.913 466.266 510.005C465.662 510.089 465.069 510.077 464.484 509.967C463.894 509.853 463.351 509.653 462.855 509.367C462.36 509.081 462.014 508.768 461.817 508.427C461.62 508.086 461.598 507.743 461.75 507.398C461.909 507.05 462.243 506.729 462.751 506.436C463.265 506.139 463.821 505.946 464.418 505.858C465.008 505.766 465.605 505.785 466.209 505.913C466.812 506.034 467.387 506.252 467.933 506.568L468.219 506.733L464.542 508.856C464.821 508.98 465.1 509.065 465.38 509.109C465.659 509.145 465.932 509.145 466.199 509.109C466.466 509.065 466.71 508.978 466.933 508.85C467.212 508.689 467.39 508.524 467.466 508.355C467.542 508.179 467.53 508.003 467.428 507.827L468.685 507.101C469.022 507.486 469.13 507.886 469.009 508.3C468.889 508.707 468.53 509.083 467.933 509.428ZM466.028 506.964C465.621 506.802 465.221 506.725 464.827 506.733C464.427 506.736 464.068 506.83 463.751 507.013C463.427 507.2 463.262 507.409 463.256 507.64C463.243 507.867 463.376 508.098 463.656 508.333L466.028 506.964ZM466.505 504.4L467.762 503.674L468.619 504.169C468.454 503.891 468.426 503.639 468.534 503.416C468.635 503.188 468.851 502.979 469.181 502.789L469.581 502.558L470.772 503.245L470.315 503.509C470.023 503.678 469.823 503.848 469.715 504.021C469.601 504.189 469.597 504.371 469.705 504.565C469.813 504.752 470.051 504.952 470.42 505.165L472.754 506.512L471.458 507.26L466.505 504.4Z" fill="#465358"/>
|
|
261
|
+
<path d="M400.373 489.21L402.983 487.703C403.752 487.259 404.542 486.975 405.355 486.85C406.168 486.718 406.959 486.728 407.727 486.878C408.496 487.028 409.213 487.296 409.88 487.681C410.541 488.062 411.001 488.475 411.261 488.918C411.522 489.362 411.541 489.82 411.319 490.293C411.103 490.763 410.61 491.219 409.842 491.663L407.232 493.17L400.373 489.21ZM408.642 490.97C409.105 490.702 409.391 490.427 409.499 490.145C409.607 489.855 409.566 489.575 409.375 489.303C409.178 489.028 408.864 488.766 408.432 488.517C407.994 488.264 407.54 488.082 407.07 487.972C406.594 487.859 406.108 487.835 405.612 487.901C405.123 487.963 404.647 488.128 404.183 488.396L402.964 489.1L407.422 491.674L408.642 490.97ZM416.859 487.744C416.35 488.037 415.795 488.23 415.191 488.322C414.588 488.406 413.994 488.393 413.41 488.283C412.819 488.169 412.276 487.97 411.781 487.684C411.286 487.398 410.94 487.084 410.743 486.743C410.546 486.402 410.524 486.059 410.676 485.715C410.835 485.366 411.168 485.045 411.676 484.752C412.191 484.455 412.746 484.263 413.343 484.175C413.934 484.083 414.531 484.101 415.134 484.23C415.738 484.351 416.312 484.569 416.859 484.884L417.144 485.049L413.467 487.172C413.747 487.297 414.026 487.381 414.305 487.425C414.585 487.462 414.858 487.462 415.125 487.425C415.391 487.381 415.636 487.295 415.858 487.167C416.138 487.005 416.316 486.84 416.392 486.672C416.468 486.496 416.455 486.32 416.354 486.144L417.611 485.418C417.948 485.803 418.056 486.202 417.935 486.617C417.814 487.024 417.455 487.399 416.859 487.744ZM414.953 485.28C414.547 485.119 414.147 485.042 413.753 485.049C413.353 485.053 412.994 485.146 412.676 485.33C412.353 485.517 412.187 485.726 412.181 485.957C412.168 486.184 412.302 486.415 412.581 486.65L414.953 485.28ZM416.916 482.992L416.059 483.487L415.078 482.92L415.935 482.425L415.325 482.073C414.989 481.879 414.782 481.694 414.706 481.518C414.636 481.338 414.668 481.169 414.801 481.012C414.928 480.85 415.147 480.68 415.459 480.5L416.564 479.862L417.545 480.429L416.773 480.874C416.602 480.973 416.516 481.063 416.516 481.144C416.516 481.224 416.595 481.311 416.754 481.402L417.231 481.677L418.469 480.962L419.45 481.529L418.212 482.244L422.184 484.537L420.889 485.285L416.916 482.992ZM426.933 481.928C426.425 482.221 425.869 482.413 425.266 482.505C424.662 482.589 424.069 482.577 423.484 482.467C422.894 482.353 422.351 482.153 421.855 481.867C421.36 481.581 421.014 481.268 420.817 480.927C420.62 480.586 420.598 480.243 420.75 479.898C420.909 479.55 421.243 479.229 421.751 478.936C422.265 478.639 422.821 478.446 423.418 478.358C424.008 478.266 424.605 478.285 425.209 478.413C425.812 478.534 426.387 478.752 426.933 479.068L427.219 479.233L423.542 481.356C423.821 481.48 424.1 481.565 424.38 481.609C424.659 481.645 424.932 481.645 425.199 481.609C425.466 481.565 425.71 481.478 425.933 481.35C426.212 481.189 426.39 481.024 426.466 480.855C426.542 480.679 426.53 480.503 426.428 480.327L427.685 479.601C428.022 479.986 428.13 480.386 428.009 480.8C427.889 481.207 427.53 481.583 426.933 481.928ZM425.028 479.464C424.621 479.302 424.221 479.225 423.827 479.233C423.427 479.236 423.068 479.33 422.751 479.513C422.427 479.7 422.262 479.909 422.256 480.14C422.243 480.367 422.376 480.598 422.656 480.833L425.028 479.464ZM425.505 476.9L426.762 476.174L427.619 476.669C427.454 476.391 427.426 476.139 427.534 475.916C427.635 475.688 427.851 475.479 428.181 475.289L428.581 475.058L429.772 475.745L429.315 476.009C429.023 476.178 428.823 476.348 428.715 476.521C428.601 476.689 428.597 476.871 428.705 477.065C428.813 477.252 429.051 477.452 429.42 477.665L431.754 479.012L430.458 479.76L425.505 476.9ZM429.746 474.451L431.004 473.725L431.861 474.22C431.696 473.942 431.667 473.69 431.775 473.467C431.877 473.239 432.093 473.03 432.423 472.84L432.823 472.609L434.014 473.296L433.557 473.56C433.265 473.729 433.065 473.899 432.957 474.072C432.842 474.24 432.839 474.422 432.947 474.616C433.055 474.803 433.293 475.003 433.662 475.216L435.996 476.563L434.7 477.311L429.746 474.451ZM440.609 474.032C440.063 474.347 439.494 474.525 438.904 474.565C438.307 474.602 437.77 474.483 437.294 474.208C437.002 474.039 436.824 473.859 436.76 473.669C436.697 473.471 436.741 473.254 436.894 473.02C437.052 472.781 437.319 472.51 437.694 472.206L438.856 471.249L438.599 471.1C438.377 470.972 438.145 470.915 437.903 470.93C437.662 470.944 437.389 471.04 437.084 471.216C436.798 471.381 436.627 471.549 436.57 471.722C436.519 471.89 436.611 472.046 436.846 472.189L435.56 472.932C435.007 472.605 434.795 472.241 434.922 471.837C435.049 471.427 435.439 471.032 436.093 470.655C436.798 470.248 437.459 470.017 438.075 469.962C438.697 469.903 439.243 470.009 439.713 470.281L443.295 472.349L442.066 473.058L441.514 472.739C441.546 472.992 441.485 473.225 441.333 473.438C441.18 473.643 440.939 473.841 440.609 474.032ZM439.999 473.306C440.215 473.181 440.374 473.045 440.475 472.899C440.583 472.748 440.612 472.593 440.561 472.431C440.51 472.27 440.361 472.118 440.113 471.975L439.694 471.733L438.77 472.541C438.523 472.75 438.38 472.921 438.342 473.053C438.297 473.181 438.373 473.302 438.57 473.416C438.761 473.526 438.98 473.575 439.228 473.564C439.475 473.546 439.732 473.46 439.999 473.306ZM437.683 467.669L438.978 466.921L445.837 470.881L444.542 471.629L437.683 467.669ZM452.114 467.389C451.606 467.683 451.05 467.875 450.447 467.967C449.844 468.051 449.25 468.038 448.665 467.928C448.075 467.815 447.532 467.615 447.036 467.329C446.541 467.043 446.195 466.729 445.998 466.388C445.801 466.047 445.779 465.704 445.931 465.36C446.09 465.011 446.424 464.691 446.932 464.397C447.446 464.1 448.002 463.908 448.599 463.82C449.189 463.728 449.786 463.746 450.39 463.875C450.993 463.996 451.568 464.214 452.114 464.529L452.4 464.694L448.723 466.817C449.002 466.942 449.281 467.026 449.561 467.07C449.84 467.107 450.113 467.107 450.38 467.07C450.647 467.026 450.891 466.94 451.114 466.812C451.393 466.65 451.571 466.485 451.647 466.317C451.723 466.141 451.711 465.965 451.609 465.789L452.867 465.063C453.203 465.448 453.311 465.847 453.19 466.262C453.07 466.669 452.711 467.045 452.114 467.389ZM450.209 464.925C449.802 464.764 449.402 464.687 449.008 464.694C448.608 464.698 448.249 464.791 447.932 464.975C447.608 465.162 447.443 465.371 447.437 465.602C447.424 465.829 447.557 466.06 447.837 466.295L450.209 464.925ZM450.238 462.621L451.638 461.812L456.582 463.259L454.058 460.415L455.449 459.612L458.545 463.545L457.059 464.403L450.238 462.621ZM463.714 460.692C463.206 460.985 462.65 461.178 462.047 461.269C461.444 461.354 460.85 461.341 460.266 461.231C459.675 461.117 459.132 460.917 458.637 460.631C458.141 460.345 457.795 460.032 457.598 459.691C457.401 459.35 457.379 459.007 457.531 458.662C457.69 458.314 458.024 457.993 458.532 457.7C459.046 457.403 459.602 457.21 460.199 457.122C460.789 457.031 461.386 457.049 461.99 457.177C462.593 457.298 463.168 457.517 463.714 457.832L464 457.997L460.323 460.12C460.602 460.245 460.882 460.329 461.161 460.373C461.44 460.41 461.714 460.41 461.98 460.373C462.247 460.329 462.491 460.243 462.714 460.114C462.993 459.953 463.171 459.788 463.247 459.619C463.323 459.443 463.311 459.267 463.209 459.091L464.467 458.365C464.803 458.75 464.911 459.15 464.791 459.564C464.67 459.971 464.311 460.347 463.714 460.692ZM461.809 458.228C461.402 458.067 461.002 457.99 460.608 457.997C460.208 458.001 459.85 458.094 459.532 458.277C459.208 458.464 459.043 458.673 459.037 458.904C459.024 459.132 459.157 459.363 459.437 459.597L461.809 458.228ZM462.286 455.665L463.543 454.939L464.219 455.329C464.162 455.084 464.194 454.845 464.315 454.614C464.429 454.38 464.654 454.165 464.991 453.971C465.366 453.754 465.763 453.617 466.182 453.558C466.601 453.492 467.027 453.507 467.458 453.602C467.897 453.694 468.322 453.859 468.735 454.097L471.821 455.879L470.535 456.622L467.601 454.928C467.29 454.748 466.973 454.649 466.649 454.631C466.318 454.609 465.995 454.689 465.677 454.873C465.499 454.975 465.369 455.098 465.286 455.241C465.204 455.377 465.197 455.531 465.267 455.703C465.344 455.872 465.528 456.041 465.82 456.209L468.535 457.777L467.239 458.525L462.286 455.665ZM475.127 453.971C474.815 454.151 474.523 454.279 474.25 454.356C473.971 454.429 473.676 454.446 473.364 454.405C473.059 454.361 472.736 454.24 472.393 454.042L469.725 452.502L468.868 452.997L467.887 452.431L468.744 451.936L467.22 451.056L468.515 450.308L470.04 451.188L471.278 450.473L472.259 451.039L471.021 451.754L473.555 453.217C473.714 453.309 473.866 453.357 474.012 453.36C474.152 453.36 474.307 453.311 474.479 453.212L475.251 452.766L476.232 453.333L475.127 453.971ZM479.447 451.609C478.742 452.016 478.05 452.254 477.37 452.324C476.697 452.39 476.039 452.26 475.398 451.933L476.655 451.207C476.992 451.365 477.313 451.429 477.618 451.4C477.929 451.367 478.253 451.253 478.589 451.059C478.862 450.901 479.034 450.747 479.104 450.597C479.167 450.443 479.113 450.316 478.942 450.217C478.821 450.148 478.7 450.107 478.58 450.096C478.459 450.085 478.288 450.111 478.065 450.173C477.843 450.228 477.538 450.338 477.151 450.503C476.554 450.745 476.039 450.91 475.608 450.998C475.176 451.086 474.798 451.11 474.474 451.07C474.156 451.026 473.855 450.921 473.569 450.756C473.099 450.485 472.921 450.162 473.036 449.788C473.15 449.414 473.528 449.042 474.169 448.672C474.88 448.261 475.576 448.036 476.255 447.995C476.929 447.951 477.535 448.078 478.075 448.375L476.875 449.068C476.57 448.899 476.268 448.835 475.97 448.875C475.671 448.916 475.373 449.022 475.074 449.194C474.826 449.337 474.671 449.482 474.607 449.629C474.55 449.772 474.604 449.891 474.769 449.986C474.89 450.056 475.02 450.094 475.16 450.102C475.3 450.102 475.481 450.071 475.703 450.008C475.925 449.939 476.227 449.823 476.608 449.662C477.192 449.42 477.697 449.257 478.123 449.172C478.542 449.084 478.913 449.064 479.237 449.112C479.555 449.156 479.856 449.26 480.142 449.425C480.631 449.708 480.806 450.047 480.666 450.443C480.526 450.831 480.12 451.22 479.447 451.609Z" fill="#465358"/>
|
|
262
|
+
<path d="M319.488 535.989L321.117 535.048L330.624 537.479L329.147 538.332L327.156 537.798L324.251 539.476L325.165 540.631L323.736 541.456L319.488 535.989ZM325.566 537.353L321.631 536.291L323.479 538.557L325.566 537.353ZM336.161 534.283L334.904 535.009L334.227 534.618C334.285 534.864 334.256 535.104 334.142 535.339C334.021 535.57 333.792 535.782 333.456 535.977C333.081 536.193 332.684 536.334 332.265 536.4C331.846 536.459 331.417 536.442 330.979 536.351C330.547 536.255 330.125 536.088 329.712 535.85L326.625 534.068L327.911 533.326L330.846 535.02C331.157 535.199 331.477 535.3 331.808 535.322C332.132 535.34 332.452 535.258 332.77 535.075C332.948 534.972 333.078 534.853 333.16 534.717C333.243 534.574 333.246 534.418 333.17 534.25C333.1 534.077 332.919 533.907 332.627 533.738L329.912 532.171L331.208 531.423L336.161 534.283ZM339.638 532.407C339.174 532.675 338.666 532.84 338.114 532.902C337.555 532.961 336.996 532.928 336.437 532.803C335.872 532.675 335.342 532.468 334.846 532.182C334.344 531.892 333.986 531.586 333.77 531.263C333.547 530.937 333.49 530.614 333.598 530.295C333.706 529.976 333.992 529.683 334.456 529.415C334.786 529.225 335.135 529.093 335.504 529.019C335.878 528.942 336.266 528.92 336.666 528.953L334.17 527.512L335.465 526.764L342.324 530.724L341.067 531.45L340.41 531.071C340.486 531.313 340.464 531.546 340.343 531.769C340.222 531.993 339.987 532.206 339.638 532.407ZM338.895 531.604C339.162 531.45 339.32 531.285 339.371 531.109C339.422 530.933 339.381 530.755 339.247 530.576C339.108 530.392 338.882 530.211 338.571 530.031C338.26 529.852 337.945 529.721 337.628 529.641C337.31 529.56 337.002 529.536 336.704 529.569C336.399 529.599 336.113 529.69 335.846 529.844C335.573 530.002 335.411 530.169 335.361 530.345C335.303 530.517 335.345 530.695 335.484 530.878C335.631 531.058 335.859 531.238 336.17 531.417C336.482 531.597 336.793 531.729 337.104 531.813C337.415 531.89 337.723 531.914 338.028 531.885C338.333 531.855 338.622 531.762 338.895 531.604ZM338.728 527.081L340.023 526.333L344.977 529.193L343.681 529.941L338.728 527.081ZM336.822 525.981L338.118 525.233L339.271 525.898L337.975 526.646L336.822 525.981ZM348.276 527.288C347.964 527.468 347.672 527.596 347.399 527.673C347.12 527.747 346.824 527.763 346.513 527.723C346.208 527.679 345.885 527.558 345.542 527.36L342.874 525.82L342.017 526.315L341.036 525.748L341.893 525.253L340.369 524.373L341.664 523.625L343.189 524.505L344.427 523.79L345.408 524.357L344.17 525.072L346.704 526.535C346.863 526.626 347.015 526.674 347.161 526.678C347.301 526.678 347.456 526.628 347.628 526.529L348.399 526.084L349.381 526.65L348.276 527.288ZM355.402 523.306C354.894 523.599 354.339 523.791 353.735 523.883C353.132 523.967 352.538 523.955 351.954 523.845C351.363 523.731 350.82 523.531 350.325 523.245C349.83 522.959 349.483 522.646 349.287 522.305C349.09 521.964 349.067 521.621 349.22 521.276C349.379 520.928 349.712 520.607 350.22 520.314C350.735 520.017 351.29 519.824 351.887 519.736C352.478 519.644 353.075 519.663 353.678 519.791C354.281 519.912 354.856 520.13 355.402 520.446L355.688 520.611L352.011 522.734C352.29 522.858 352.57 522.943 352.849 522.987C353.129 523.023 353.402 523.023 353.669 522.987C353.935 522.943 354.18 522.856 354.402 522.728C354.682 522.567 354.859 522.402 354.936 522.233C355.012 522.057 354.999 521.881 354.898 521.705L356.155 520.979C356.492 521.364 356.6 521.764 356.479 522.178C356.358 522.585 355.999 522.961 355.402 523.306ZM353.497 520.842C353.091 520.68 352.691 520.603 352.297 520.611C351.897 520.614 351.538 520.708 351.22 520.891C350.896 521.078 350.731 521.287 350.725 521.518C350.712 521.745 350.846 521.976 351.125 522.211L353.497 520.842ZM353.526 518.537L354.927 517.728L359.871 519.175L357.346 516.331L358.737 515.528L361.833 519.461L360.347 520.319L353.526 518.537ZM367.003 516.608C366.494 516.902 365.939 517.094 365.335 517.186C364.732 517.27 364.138 517.257 363.554 517.147C362.963 517.034 362.42 516.834 361.925 516.548C361.43 516.262 361.084 515.948 360.887 515.607C360.69 515.266 360.668 514.923 360.82 514.579C360.979 514.23 361.312 513.91 361.82 513.616C362.335 513.319 362.89 513.127 363.487 513.039C364.078 512.947 364.675 512.965 365.278 513.094C365.882 513.215 366.456 513.433 367.003 513.748L367.288 513.913L363.611 516.036C363.891 516.161 364.17 516.245 364.449 516.289C364.729 516.326 365.002 516.326 365.269 516.289C365.535 516.245 365.78 516.159 366.002 516.031C366.282 515.869 366.46 515.704 366.536 515.536C366.612 515.36 366.599 515.184 366.498 515.008L367.755 514.282C368.092 514.667 368.2 515.066 368.079 515.481C367.958 515.888 367.6 516.264 367.003 516.608ZM365.097 514.144C364.691 513.983 364.291 513.906 363.897 513.913C363.497 513.917 363.138 514.01 362.82 514.194C362.497 514.381 362.331 514.59 362.325 514.821C362.312 515.048 362.446 515.279 362.725 515.514L365.097 514.144ZM365.574 511.581L366.832 510.855L367.508 511.246C367.451 511 367.483 510.762 367.603 510.531C367.718 510.296 367.943 510.081 368.28 509.887C368.654 509.671 369.051 509.533 369.47 509.475C369.89 509.409 370.315 509.423 370.747 509.519C371.185 509.61 371.611 509.775 372.023 510.014L375.11 511.796L373.824 512.538L370.89 510.844C370.579 510.664 370.261 510.565 369.937 510.547C369.607 510.525 369.283 510.606 368.965 510.789C368.788 510.892 368.657 511.015 368.575 511.158C368.492 511.293 368.486 511.447 368.556 511.62C368.632 511.788 368.816 511.957 369.108 512.126L371.823 513.693L370.528 514.441L365.574 511.581ZM378.415 509.887C378.104 510.067 377.812 510.195 377.539 510.272C377.259 510.346 376.964 510.362 376.653 510.322C376.348 510.278 376.024 510.157 375.681 509.959L373.014 508.419L372.156 508.914L371.175 508.347L372.033 507.852L370.508 506.972L371.804 506.224L373.328 507.104L374.567 506.389L375.548 506.956L374.309 507.671L376.843 509.134C377.002 509.225 377.155 509.273 377.301 509.277C377.44 509.277 377.596 509.227 377.767 509.128L378.539 508.683L379.52 509.249L378.415 509.887ZM382.735 507.525C382.03 507.932 381.338 508.17 380.658 508.24C379.985 508.306 379.328 508.176 378.686 507.85L379.944 507.124C380.281 507.281 380.601 507.345 380.906 507.316C381.217 507.283 381.541 507.169 381.878 506.975C382.151 506.817 382.322 506.663 382.392 506.513C382.456 506.359 382.402 506.233 382.23 506.134C382.11 506.064 381.989 506.024 381.868 506.013C381.748 506.002 381.576 506.027 381.354 506.09C381.132 506.145 380.827 506.255 380.439 506.42C379.842 506.662 379.328 506.827 378.896 506.915C378.464 507.003 378.086 507.026 377.762 506.986C377.445 506.942 377.143 506.838 376.857 506.673C376.387 506.401 376.21 506.079 376.324 505.705C376.438 505.331 376.816 504.958 377.458 504.588C378.169 504.177 378.864 503.952 379.544 503.912C380.217 503.868 380.824 503.994 381.363 504.291L380.163 504.984C379.858 504.815 379.557 504.751 379.258 504.792C378.96 504.832 378.661 504.938 378.363 505.111C378.115 505.254 377.959 505.398 377.896 505.545C377.839 505.688 377.893 505.807 378.058 505.903C378.178 505.972 378.309 506.011 378.448 506.018C378.588 506.018 378.769 505.987 378.991 505.925C379.214 505.855 379.515 505.739 379.896 505.578C380.481 505.336 380.986 505.173 381.411 505.089C381.83 505.001 382.202 504.98 382.526 505.028C382.843 505.072 383.145 505.177 383.431 505.342C383.92 505.624 384.094 505.963 383.955 506.359C383.815 506.748 383.408 507.136 382.735 507.525Z" fill="#465358"/>
|
|
263
|
+
<path d="M427.488 559.489L429.117 558.548L438.624 560.979L437.147 561.832L435.156 561.298L432.251 562.976L433.165 564.131L431.736 564.956L427.488 559.489ZM433.566 560.853L429.631 559.791L431.479 562.057L433.566 560.853ZM441.97 559.18C441.462 559.473 440.91 559.664 440.313 559.752C439.716 559.832 439.125 559.818 438.541 559.708C437.95 559.594 437.407 559.394 436.912 559.108C436.416 558.822 436.07 558.509 435.873 558.168C435.676 557.827 435.651 557.486 435.797 557.145C435.95 556.8 436.28 556.481 436.788 556.188C437.467 555.795 438.179 555.583 438.922 555.55C439.665 555.517 440.367 555.647 441.027 555.94L439.731 556.688C439.414 556.571 439.09 556.523 438.76 556.545C438.43 556.56 438.128 556.646 437.855 556.804C437.601 556.95 437.452 557.11 437.407 557.282C437.356 557.451 437.401 557.627 437.54 557.81C437.686 557.99 437.915 558.169 438.226 558.349C438.538 558.529 438.849 558.661 439.16 558.745C439.471 558.822 439.776 558.848 440.074 558.822C440.373 558.796 440.649 558.71 440.903 558.564C441.189 558.399 441.341 558.219 441.36 558.025C441.386 557.827 441.275 557.63 441.027 557.436L442.323 556.688C442.85 557.08 443.091 557.498 443.047 557.942C442.996 558.382 442.637 558.795 441.97 559.18ZM447.206 556.025C446.895 556.204 446.603 556.333 446.33 556.41C446.05 556.483 445.755 556.5 445.444 556.459C445.139 556.415 444.815 556.294 444.472 556.096L441.805 554.556L440.947 555.051L439.966 554.485L440.823 553.99L439.299 553.11L440.595 552.362L442.119 553.242L443.357 552.527L444.339 553.093L443.1 553.808L445.634 555.271C445.793 555.363 445.945 555.411 446.091 555.414C446.231 555.414 446.387 555.365 446.558 555.266L447.33 554.82L448.311 555.387L447.206 556.025Z" fill="#465358"/>
|
|
264
|
+
<path d="M816.373 475.21L817.907 474.324L825.794 475.413L820.907 472.592L822.251 471.816L829.11 475.776L827.576 476.662L819.688 475.573L824.575 478.394L823.232 479.17L816.373 475.21ZM832.952 473.69C832.443 473.984 831.888 474.176 831.284 474.268C830.681 474.352 830.087 474.339 829.503 474.229C828.912 474.116 828.369 473.916 827.874 473.63C827.379 473.344 827.033 473.03 826.836 472.689C826.639 472.348 826.617 472.005 826.769 471.661C826.928 471.312 827.261 470.992 827.769 470.698C828.284 470.401 828.839 470.209 829.436 470.121C830.027 470.029 830.624 470.047 831.227 470.176C831.831 470.297 832.405 470.515 832.952 470.83L833.237 470.995L829.56 473.118C829.84 473.243 830.119 473.327 830.398 473.371C830.678 473.408 830.951 473.408 831.218 473.371C831.484 473.327 831.729 473.241 831.951 473.113C832.231 472.951 832.409 472.786 832.485 472.618C832.561 472.442 832.548 472.266 832.447 472.09L833.704 471.364C834.041 471.749 834.149 472.148 834.028 472.563C833.907 472.97 833.549 473.346 832.952 473.69ZM831.046 471.226C830.64 471.065 830.24 470.988 829.846 470.995C829.446 470.999 829.087 471.092 828.77 471.276C828.446 471.463 828.28 471.672 828.274 471.903C828.261 472.13 828.395 472.361 828.674 472.596L831.046 471.226ZM831.075 468.922L832.476 468.113L836.944 469.461L834.495 466.947L835.724 466.238L840.078 467.651L837.744 465.072L839.144 464.263L842.374 468.119L841.021 468.9L836.734 467.525L839.106 470.005L837.753 470.786L831.075 468.922ZM843.727 460.858L841.565 462.107L840.317 461.386L846.051 458.075L847.299 458.796L845.137 460.044L850.748 463.284L849.338 464.098L843.727 460.858ZM847.069 457.487L848.365 456.739L850.899 458.202C850.854 457.964 850.892 457.733 851.013 457.509C851.134 457.286 851.356 457.08 851.68 456.893C852.055 456.677 852.452 456.54 852.871 456.481C853.29 456.415 853.715 456.43 854.147 456.525C854.585 456.617 855.011 456.782 855.424 457.02L858.51 458.802L857.224 459.544L854.29 457.85C853.979 457.671 853.661 457.572 853.337 457.553C853.007 457.531 852.683 457.612 852.366 457.795C852.188 457.898 852.058 458.021 851.975 458.164C851.893 458.3 851.886 458.454 851.956 458.626C852.032 458.795 852.217 458.963 852.509 459.132L855.224 460.699L853.928 461.447L847.069 457.487ZM862.32 456.734C861.8 457.035 861.234 457.233 860.625 457.328C860.015 457.416 859.415 457.407 858.824 457.301C858.234 457.187 857.691 456.987 857.195 456.701C856.7 456.415 856.354 456.102 856.157 455.761C855.966 455.416 855.95 455.07 856.109 454.721C856.274 454.369 856.617 454.043 857.138 453.742C857.665 453.438 858.23 453.24 858.834 453.148C859.443 453.053 860.044 453.062 860.634 453.176C861.225 453.289 861.768 453.489 862.263 453.775C862.759 454.061 863.105 454.375 863.302 454.716C863.492 455.053 863.508 455.4 863.349 455.755C863.19 456.104 862.848 456.43 862.32 456.734ZM861.253 456.118C861.533 455.957 861.698 455.788 861.749 455.612C861.806 455.433 861.765 455.255 861.625 455.079C861.485 454.895 861.26 454.714 860.949 454.534C860.637 454.355 860.323 454.224 860.006 454.144C859.694 454.059 859.386 454.036 859.081 454.072C858.777 454.102 858.484 454.197 858.205 454.358C857.932 454.516 857.767 454.685 857.71 454.864C857.653 455.037 857.694 455.214 857.834 455.398C857.973 455.581 858.199 455.763 858.51 455.942C858.821 456.122 859.135 456.252 859.453 456.333C859.764 456.41 860.072 456.434 860.377 456.404C860.688 456.371 860.98 456.276 861.253 456.118ZM870.482 451.89L869.225 452.616L868.549 452.225C868.606 452.471 868.577 452.711 868.463 452.946C868.342 453.177 868.114 453.389 867.777 453.584C867.402 453.8 867.005 453.941 866.586 454.007C866.167 454.066 865.738 454.049 865.3 453.958C864.868 453.862 864.446 453.696 864.033 453.457L860.947 451.675L862.233 450.933L865.167 452.627C865.478 452.806 865.799 452.907 866.129 452.929C866.453 452.948 866.774 452.865 867.091 452.682C867.269 452.579 867.399 452.46 867.482 452.324C867.564 452.181 867.567 452.025 867.491 451.857C867.421 451.684 867.24 451.514 866.948 451.345L864.233 449.778L865.529 449.03L870.482 451.89ZM876.122 450.966C875.423 451.369 874.724 451.593 874.026 451.637C873.327 451.681 872.686 451.556 872.102 451.263L873.378 450.526C873.67 450.658 873.966 450.708 874.264 450.675C874.569 450.638 874.871 450.533 875.169 450.361C875.518 450.159 875.718 449.945 875.769 449.718C875.833 449.49 875.649 449.252 875.217 449.003L874.617 448.656C874.667 448.883 874.626 449.105 874.493 449.322C874.359 449.531 874.127 449.73 873.797 449.921C873.334 450.189 872.829 450.356 872.283 450.422C871.736 450.488 871.19 450.462 870.644 450.345C870.092 450.224 869.574 450.024 869.091 449.745C868.602 449.463 868.256 449.164 868.053 448.849C867.843 448.53 867.796 448.212 867.91 447.897C868.024 447.582 868.313 447.29 868.777 447.023C869.12 446.825 869.482 446.689 869.863 446.616C870.25 446.539 870.65 446.52 871.063 446.561L870.434 446.198L871.692 445.472L876.512 448.255C876.989 448.53 877.274 448.823 877.37 449.135C877.471 449.45 877.411 449.763 877.189 450.075C876.966 450.387 876.611 450.684 876.122 450.966ZM873.102 449.146C873.369 448.992 873.531 448.828 873.588 448.656C873.638 448.48 873.6 448.304 873.473 448.128C873.34 447.948 873.121 447.771 872.816 447.595C872.511 447.419 872.203 447.292 871.892 447.215C871.581 447.138 871.276 447.116 870.977 447.149C870.673 447.178 870.387 447.27 870.12 447.424C869.847 447.582 869.685 447.749 869.634 447.925C869.577 448.097 869.615 448.273 869.749 448.453C869.888 448.629 870.111 448.805 870.415 448.981C870.72 449.157 871.025 449.285 871.33 449.366C871.635 449.439 871.94 449.461 872.244 449.432C872.543 449.399 872.829 449.303 873.102 449.146ZM871.153 443.583L872.449 442.835L874.983 444.298C874.938 444.059 874.976 443.828 875.097 443.605C875.218 443.381 875.44 443.176 875.764 442.989C876.139 442.772 876.536 442.635 876.955 442.576C877.374 442.51 877.799 442.525 878.231 442.62C878.669 442.712 879.095 442.877 879.508 443.115L882.594 444.897L881.308 445.64L878.374 443.946C878.063 443.766 877.745 443.667 877.421 443.649C877.091 443.627 876.767 443.707 876.45 443.891C876.272 443.993 876.142 444.116 876.059 444.259C875.977 444.395 875.97 444.549 876.04 444.721C876.116 444.89 876.301 445.058 876.593 445.227L879.308 446.795L878.012 447.543L871.153 443.583ZM885.899 442.989C885.588 443.168 885.296 443.297 885.023 443.374C884.744 443.447 884.448 443.464 884.137 443.423C883.832 443.379 883.508 443.258 883.165 443.06L880.498 441.52L879.641 442.015L878.66 441.449L879.517 440.954L877.993 440.074L879.288 439.326L880.812 440.206L882.051 439.491L883.032 440.057L881.794 440.772L884.328 442.235C884.486 442.327 884.639 442.375 884.785 442.378C884.925 442.378 885.08 442.329 885.252 442.23L886.023 441.784L887.005 442.351L885.899 442.989Z" fill="#465358"/>
|
|
265
|
+
<path d="M1045.57 523.41L1050.67 526.352L1050.67 527.793L1046.96 525.654L1046.96 527.392L1050.39 529.372L1050.39 530.747L1046.96 528.767L1046.96 530.692L1050.65 532.821L1050.65 534.262L1045.57 531.33L1045.57 523.41ZM1053.36 535.829C1053.05 535.65 1052.8 535.461 1052.59 535.263C1052.39 535.057 1052.23 534.81 1052.11 534.52C1051.99 534.234 1051.94 533.893 1051.94 533.497L1051.94 530.417L1051.08 529.922L1051.08 528.789L1051.94 529.284L1051.94 527.524L1053.23 528.272L1053.23 530.032L1054.47 530.747L1054.47 531.88L1053.23 531.165L1053.23 534.091C1053.23 534.275 1053.27 534.43 1053.34 534.559C1053.41 534.68 1053.53 534.79 1053.7 534.889L1054.47 535.334L1054.47 536.467L1053.36 535.829ZM1055.21 528.973L1056.5 529.721L1056.5 532.647C1056.69 532.49 1056.91 532.407 1057.16 532.4C1057.41 532.393 1057.7 532.482 1058.03 532.669C1058.4 532.886 1058.72 533.161 1058.98 533.494C1059.25 533.824 1059.45 534.2 1059.58 534.622C1059.72 535.047 1059.79 535.498 1059.79 535.975L1059.79 539.539L1058.5 538.796L1058.5 535.408C1058.5 535.049 1058.43 534.725 1058.28 534.435C1058.14 534.138 1057.91 533.898 1057.59 533.714C1057.41 533.612 1057.24 533.56 1057.07 533.56C1056.92 533.557 1056.78 533.628 1056.67 533.775C1056.56 533.925 1056.5 534.169 1056.5 534.506L1056.5 537.641L1055.21 536.893L1055.21 528.973ZM1060.77 534.385L1062.07 535.133L1062.07 540.853L1060.77 540.105L1060.77 534.385ZM1060.77 532.185L1062.07 532.933L1062.07 534.264L1060.77 533.516L1060.77 532.185ZM1065.33 542.868C1064.82 542.574 1064.38 542.191 1064 541.718C1063.63 541.242 1063.35 540.723 1063.15 540.162C1062.96 539.593 1062.86 539.023 1062.86 538.451C1062.86 537.879 1062.96 537.423 1063.15 537.082C1063.35 536.741 1063.63 536.548 1064 536.504C1064.38 536.464 1064.82 536.59 1065.33 536.884C1066.01 537.276 1066.55 537.786 1066.95 538.413C1067.35 539.04 1067.58 539.713 1067.66 540.431L1066.37 539.683C1066.31 539.35 1066.19 539.045 1066 538.77C1065.83 538.492 1065.6 538.273 1065.33 538.116C1065.07 537.969 1064.86 537.92 1064.69 537.967C1064.52 538.008 1064.39 538.134 1064.3 538.347C1064.22 538.563 1064.17 538.851 1064.17 539.21C1064.17 539.57 1064.22 539.905 1064.3 540.217C1064.39 540.525 1064.52 540.802 1064.69 541.047C1064.86 541.293 1065.07 541.489 1065.33 541.636C1065.61 541.801 1065.84 541.843 1066.02 541.762C1066.21 541.685 1066.32 541.491 1066.37 541.179L1067.66 541.927C1067.58 542.58 1067.34 542.998 1066.94 543.181C1066.53 543.357 1065.99 543.253 1065.33 542.868ZM1070.34 545.764C1069.64 545.357 1069.09 544.877 1068.69 544.323C1068.29 543.773 1068.08 543.139 1068.04 542.42L1069.3 543.146C1069.33 543.516 1069.43 543.826 1069.61 544.076C1069.79 544.329 1070.05 544.552 1070.39 544.747C1070.66 544.904 1070.88 544.976 1071.05 544.961C1071.21 544.939 1071.3 544.829 1071.3 544.631C1071.3 544.492 1071.27 544.367 1071.22 544.257C1071.17 544.147 1071.06 544.011 1070.9 543.85C1070.74 543.685 1070.49 543.476 1070.15 543.223C1069.65 542.827 1069.24 542.464 1068.95 542.134C1068.66 541.804 1068.45 541.489 1068.32 541.188C1068.2 540.891 1068.14 540.578 1068.14 540.248C1068.14 539.705 1068.33 539.39 1068.71 539.302C1069.1 539.214 1069.61 539.355 1070.25 539.725C1070.96 540.136 1071.5 540.625 1071.88 541.194C1072.25 541.755 1072.45 542.343 1072.46 542.959L1071.26 542.266C1071.25 541.918 1071.16 541.624 1070.97 541.386C1070.79 541.148 1070.55 540.942 1070.25 540.77C1070 540.627 1069.8 540.565 1069.64 540.583C1069.49 540.605 1069.41 540.711 1069.41 540.902C1069.41 541.041 1069.44 541.173 1069.51 541.298C1069.58 541.419 1069.69 541.56 1069.86 541.722C1070.03 541.879 1070.28 542.083 1070.61 542.332C1071.11 542.717 1071.51 543.073 1071.79 543.399C1072.08 543.718 1072.28 544.03 1072.4 544.334C1072.52 544.631 1072.58 544.945 1072.58 545.275C1072.58 545.839 1072.38 546.16 1071.96 546.237C1071.56 546.31 1071.02 546.153 1070.34 545.764Z" fill="#5F52FF"/>
|
|
266
|
+
<path d="M950.563 660.612C949.82 660.183 949.248 659.614 948.848 658.906C948.454 658.195 948.257 657.425 948.257 656.596L948.257 656.156L949.6 656.932L949.6 657.372C949.6 657.797 949.677 658.164 949.829 658.472C949.981 658.78 950.226 659.031 950.563 659.226C950.899 659.42 951.144 659.451 951.296 659.319C951.449 659.187 951.525 658.908 951.525 658.483L951.525 653.115L952.916 653.918L952.916 659.286C952.916 660.107 952.709 660.641 952.296 660.887C951.89 661.136 951.312 661.044 950.563 660.612ZM956.216 663.875C955.695 663.575 955.241 663.184 954.853 662.704C954.472 662.22 954.18 661.695 953.977 661.131C953.78 660.562 953.682 659.992 953.682 659.42C953.682 658.848 953.78 658.392 953.977 658.051C954.18 657.713 954.472 657.526 954.853 657.49C955.241 657.457 955.695 657.591 956.216 657.891C956.743 658.196 957.197 658.586 957.578 659.063C957.965 659.543 958.257 660.067 958.454 660.636C958.651 661.204 958.75 661.774 958.75 662.346C958.75 662.918 958.651 663.375 958.454 663.716C958.257 664.049 957.965 664.236 957.578 664.277C957.197 664.313 956.743 664.18 956.216 663.875ZM956.216 662.643C956.495 662.805 956.724 662.863 956.901 662.819C957.086 662.779 957.219 662.654 957.302 662.445C957.39 662.233 957.435 661.947 957.435 661.587C957.435 661.228 957.39 660.891 957.302 660.575C957.219 660.264 957.086 659.985 956.901 659.739C956.724 659.49 956.495 659.285 956.216 659.123C955.942 658.966 955.714 658.907 955.53 658.947C955.352 658.984 955.218 659.109 955.13 659.321C955.041 659.534 954.996 659.82 954.996 660.179C954.996 660.539 955.041 660.876 955.13 661.191C955.218 661.499 955.352 661.778 955.53 662.027C955.714 662.28 955.942 662.486 956.216 662.643ZM962.329 667.405C961.98 667.203 961.678 666.952 961.424 666.652C961.17 666.351 960.958 666.008 960.786 665.623L960.786 666.382L959.529 665.656L959.529 657.736L960.824 658.484L960.824 661.366C960.996 661.201 961.205 661.12 961.453 661.124C961.707 661.131 961.999 661.23 962.329 661.421C962.793 661.689 963.19 662.046 963.52 662.494C963.85 662.941 964.101 663.441 964.273 663.995C964.444 664.541 964.53 665.104 964.53 665.684C964.53 666.256 964.444 666.719 964.273 667.075C964.101 667.423 963.85 667.634 963.52 667.708C963.19 667.774 962.793 667.673 962.329 667.405ZM962.006 665.986C962.279 666.144 962.504 666.201 962.682 666.157C962.86 666.113 962.99 665.986 963.073 665.777C963.161 665.564 963.206 665.278 963.206 664.919C963.206 664.56 963.161 664.222 963.073 663.907C962.99 663.595 962.86 663.319 962.682 663.077C962.504 662.827 962.279 662.624 962.006 662.466C961.739 662.312 961.517 662.257 961.339 662.301C961.161 662.338 961.028 662.462 960.939 662.675C960.85 662.888 960.805 663.174 960.805 663.533C960.805 663.892 960.85 664.23 960.939 664.545C961.028 664.853 961.161 665.132 961.339 665.381C961.517 665.63 961.739 665.832 962.006 665.986ZM948.572 662.41L951.496 664.098C952.042 664.414 952.506 664.795 952.887 665.242C953.268 665.682 953.554 666.152 953.744 666.651C953.941 667.153 954.04 667.653 954.04 668.152C954.04 668.651 953.941 669.041 953.744 669.324C953.554 669.602 953.268 669.745 952.887 669.752C952.506 669.752 952.042 669.595 951.496 669.279L949.962 668.394L949.962 671.133L948.572 670.33L948.572 662.41ZM951.42 667.849C951.826 668.084 952.131 668.157 952.334 668.069C952.538 667.981 952.639 667.739 952.639 667.343C952.639 666.955 952.538 666.599 952.334 666.276C952.131 665.954 951.826 665.675 951.42 665.44L949.962 664.599L949.962 667.008L951.42 667.849ZM954.803 668.208L956.06 668.934L956.06 669.924C956.219 669.641 956.422 669.491 956.67 669.473C956.918 669.447 957.207 669.529 957.537 669.72L957.937 669.951L957.937 671.326L957.48 671.062C957.188 670.893 956.94 670.805 956.737 670.798C956.533 670.783 956.375 670.871 956.26 671.062C956.152 671.249 956.098 671.555 956.098 671.981L956.098 674.676L954.803 673.928L954.803 668.208ZM960.988 677.631C960.467 677.33 960.013 676.939 959.626 676.459C959.245 675.975 958.953 675.451 958.749 674.886C958.552 674.318 958.454 673.748 958.454 673.176C958.454 672.604 958.552 672.147 958.749 671.806C958.953 671.469 959.245 671.282 959.626 671.245C960.013 671.212 960.467 671.346 960.988 671.647C961.515 671.951 961.969 672.341 962.35 672.818C962.738 673.298 963.03 673.823 963.227 674.391C963.424 674.959 963.522 675.53 963.522 676.102C963.522 676.674 963.424 677.13 963.227 677.471C963.03 677.805 962.738 677.992 962.35 678.032C961.969 678.069 961.515 677.935 960.988 677.631ZM960.988 676.399C961.267 676.56 961.496 676.619 961.674 676.575C961.858 676.534 961.991 676.41 962.074 676.201C962.163 675.988 962.207 675.702 962.207 675.343C962.207 674.983 962.163 674.646 962.074 674.331C961.991 674.019 961.858 673.74 961.674 673.495C961.496 673.245 961.267 673.04 960.988 672.879C960.715 672.721 960.486 672.662 960.302 672.703C960.124 672.739 959.991 672.864 959.902 673.077C959.813 673.289 959.769 673.575 959.769 673.935C959.769 674.294 959.813 674.631 959.902 674.947C959.991 675.255 960.124 675.533 960.302 675.783C960.486 676.036 960.715 676.241 960.988 676.399ZM964.806 675.116L963.949 674.621L963.949 673.488L964.806 673.983L964.806 673.279C964.806 672.89 964.863 672.619 964.978 672.465C965.098 672.315 965.26 672.258 965.463 672.294C965.667 672.324 965.924 672.428 966.235 672.608L967.34 673.246L967.34 674.379L966.568 673.933C966.397 673.834 966.276 673.805 966.206 673.845C966.137 673.886 966.102 673.998 966.102 674.181L966.102 674.731L967.34 675.446L967.34 676.579L966.102 675.864L966.102 680.451L964.806 679.703L964.806 675.116ZM968.069 675.867L969.364 676.615L969.364 682.335L968.069 681.587L968.069 675.867ZM968.069 673.667L969.364 674.415L969.364 675.746L968.069 674.998L968.069 673.667ZM970.348 674.983L971.644 675.731L971.644 683.651L970.348 682.903L970.348 674.983ZM974.913 685.67C974.405 685.377 973.961 684.992 973.58 684.515C973.205 684.035 972.919 683.514 972.722 682.953C972.526 682.385 972.427 681.815 972.427 681.243C972.427 680.671 972.526 680.214 972.722 679.873C972.919 679.532 973.205 679.342 973.58 679.301C973.961 679.265 974.405 679.393 974.913 679.686C975.428 679.983 975.872 680.368 976.247 680.841C976.622 681.307 976.904 681.833 977.095 682.42C977.292 683.003 977.39 683.61 977.39 684.24L977.39 684.57L973.713 682.447C973.745 682.752 973.812 683.036 973.913 683.3C974.021 683.56 974.158 683.797 974.323 684.009C974.494 684.218 974.691 684.387 974.913 684.515C975.193 684.677 975.425 684.748 975.609 684.73C975.799 684.708 975.945 684.609 976.047 684.433L977.305 685.159C977.139 685.643 976.847 685.936 976.428 686.039C976.015 686.138 975.51 686.015 974.913 685.67ZM976.095 682.788C976.031 682.356 975.898 681.971 975.695 681.633C975.491 681.289 975.231 681.025 974.913 680.841C974.59 680.654 974.326 680.616 974.123 680.726C973.92 680.829 973.786 681.06 973.723 681.419L976.095 682.788Z" fill="#5F52FF"/>
|
|
267
|
+
<path d="M601.706 527.272C600.988 526.857 600.369 526.32 599.848 525.66C599.334 524.996 598.943 524.276 598.676 523.498C598.416 522.725 598.286 521.96 598.286 521.205C598.286 520.442 598.416 519.828 598.676 519.362C598.943 518.893 599.334 518.627 599.848 518.565C600.369 518.499 600.988 518.673 601.706 519.087C602.43 519.505 603.049 520.046 603.563 520.71C604.084 521.37 604.475 522.087 604.735 522.86C605.002 523.638 605.135 524.404 605.135 525.159C605.135 525.915 605.002 526.527 604.735 526.997C604.475 527.47 604.084 527.739 603.563 527.805C603.049 527.867 602.43 527.69 601.706 527.272ZM601.706 525.842C602.157 526.102 602.528 526.199 602.82 526.133C603.119 526.063 603.338 525.871 603.478 525.556C603.617 525.233 603.687 524.822 603.687 524.323C603.687 523.817 603.617 523.326 603.478 522.85C603.338 522.365 603.119 521.92 602.82 521.513C602.528 521.11 602.157 520.778 601.706 520.517C601.268 520.264 600.899 520.169 600.601 520.231C600.302 520.294 600.083 520.486 599.943 520.809C599.804 521.132 599.734 521.542 599.734 522.041C599.734 522.54 599.804 523.031 599.943 523.515C600.083 523.992 600.302 524.437 600.601 524.851C600.899 525.259 601.268 525.589 601.706 525.842ZM608.72 525.337C609.184 525.605 609.58 525.962 609.911 526.41C610.241 526.857 610.492 527.357 610.663 527.911C610.835 528.457 610.92 529.02 610.92 529.6C610.92 530.172 610.835 530.635 610.663 530.991C610.492 531.339 610.241 531.55 609.911 531.624C609.58 531.69 609.184 531.589 608.72 531.321C608.39 531.13 608.098 530.892 607.843 530.606C607.596 530.316 607.386 529.99 607.215 529.627L607.215 532.52L605.919 531.772L605.919 523.852L607.177 524.578L607.177 525.337C607.348 525.15 607.561 525.053 607.815 525.046C608.069 525.038 608.371 525.135 608.72 525.337ZM608.396 526.382C608.129 526.228 607.907 526.173 607.729 526.217C607.551 526.254 607.418 526.378 607.329 526.591C607.24 526.804 607.196 527.09 607.196 527.449C607.196 527.808 607.24 528.146 607.329 528.461C607.418 528.769 607.551 529.048 607.729 529.297C607.907 529.546 608.129 529.748 608.396 529.902C608.669 530.06 608.895 530.117 609.072 530.073C609.25 530.029 609.38 529.902 609.463 529.693C609.552 529.48 609.596 529.194 609.596 528.835C609.596 528.476 609.552 528.138 609.463 527.823C609.38 527.511 609.25 527.235 609.072 526.993C608.895 526.743 608.669 526.54 608.396 526.382ZM613.63 534.024C613.319 533.844 613.062 533.656 612.859 533.458C612.655 533.252 612.493 533.005 612.373 532.715C612.258 532.429 612.201 532.088 612.201 531.692L612.201 528.612L611.344 528.117L611.344 526.984L612.201 527.479L612.201 525.719L613.497 526.467L613.497 528.227L614.735 528.942L614.735 530.075L613.497 529.36L613.497 532.286C613.497 532.469 613.532 532.625 613.602 532.754C613.671 532.875 613.792 532.985 613.964 533.084L614.735 533.529L614.735 534.662L613.63 534.024ZM615.464 529.363L616.759 530.111L616.759 535.831L615.464 535.083L615.464 529.363ZM615.464 527.163L616.759 527.911L616.759 529.242L615.464 528.494L615.464 527.163ZM620.068 537.873C619.547 537.572 619.093 537.182 618.705 536.701C618.324 536.217 618.032 535.693 617.829 535.128C617.632 534.56 617.534 533.99 617.534 533.418C617.534 532.846 617.632 532.389 617.829 532.048C618.032 531.711 618.324 531.524 618.705 531.487C619.093 531.454 619.547 531.588 620.068 531.889C620.595 532.193 621.049 532.584 621.43 533.06C621.817 533.541 622.109 534.065 622.306 534.633C622.503 535.202 622.602 535.772 622.602 536.344C622.602 536.916 622.503 537.372 622.306 537.713C622.109 538.047 621.817 538.234 621.43 538.274C621.049 538.311 620.595 538.177 620.068 537.873ZM620.068 536.641C620.347 536.802 620.576 536.861 620.754 536.817C620.938 536.776 621.071 536.652 621.154 536.443C621.243 536.23 621.287 535.944 621.287 535.585C621.287 535.225 621.243 534.888 621.154 534.573C621.071 534.261 620.938 533.982 620.754 533.737C620.576 533.487 620.347 533.282 620.068 533.121C619.795 532.963 619.566 532.904 619.382 532.945C619.204 532.981 619.071 533.106 618.982 533.319C618.893 533.531 618.848 533.817 618.848 534.177C618.848 534.536 618.893 534.873 618.982 535.189C619.071 535.497 619.204 535.775 619.382 536.025C619.566 536.278 619.795 536.483 620.068 536.641ZM623.381 533.934L624.638 534.66L624.638 535.441C624.823 535.268 625.045 535.177 625.305 535.166C625.566 535.147 625.864 535.235 626.201 535.43C626.575 535.646 626.893 535.921 627.153 536.255C627.42 536.585 627.62 536.961 627.753 537.382C627.893 537.808 627.963 538.259 627.963 538.735L627.963 542.299L626.677 541.557L626.677 538.169C626.677 537.809 626.604 537.485 626.458 537.195C626.312 536.898 626.08 536.658 625.762 536.475C625.585 536.372 625.413 536.321 625.248 536.321C625.089 536.317 624.953 536.389 624.838 536.535C624.73 536.686 624.676 536.929 624.676 537.267L624.676 540.402L623.381 539.654L623.381 533.934ZM598.572 528.41L599.962 529.213L599.962 532.348L603.011 534.108L603.011 530.973L604.402 531.776L604.402 539.696L603.011 538.893L603.011 535.56L599.962 533.8L599.962 537.133L598.572 536.33L598.572 528.41ZM607.025 541.343C606.479 541.027 606.041 540.624 605.711 540.133C605.381 539.634 605.215 539.11 605.215 538.56C605.215 538.222 605.282 537.979 605.415 537.828C605.555 537.674 605.765 537.605 606.044 537.619C606.33 537.638 606.698 537.733 607.149 537.905L608.559 538.433L608.559 538.136C608.559 537.88 608.492 537.65 608.359 537.449C608.226 537.247 608.007 537.058 607.702 536.882C607.416 536.717 607.184 536.653 607.006 536.69C606.835 536.73 606.746 536.888 606.74 537.163L605.454 536.42C605.46 535.779 605.669 535.412 606.082 535.32C606.501 535.225 607.038 535.366 607.692 535.744C608.397 536.151 608.927 536.607 609.283 537.113C609.645 537.623 609.826 538.149 609.826 538.692L609.826 542.828L608.597 542.118L608.597 541.48C608.394 541.634 608.162 541.698 607.902 541.673C607.648 541.643 607.356 541.533 607.025 541.343ZM607.349 540.452C607.565 540.576 607.762 540.646 607.94 540.661C608.124 540.679 608.273 540.626 608.388 540.501C608.502 540.377 608.559 540.171 608.559 539.885L608.559 539.401L607.397 539.005C607.092 538.895 606.873 538.857 606.74 538.89C606.606 538.915 606.54 539.042 606.54 539.269C606.54 539.489 606.606 539.704 606.74 539.913C606.879 540.118 607.083 540.298 607.349 540.452ZM610.692 537.608L611.949 538.334L611.949 539.115C612.133 538.942 612.356 538.851 612.616 538.84C612.876 538.821 613.175 538.909 613.511 539.104C613.886 539.32 614.204 539.595 614.464 539.929C614.731 540.259 614.931 540.634 615.064 541.056C615.204 541.481 615.274 541.932 615.274 542.409L615.274 545.973L613.988 545.231L613.988 541.843C613.988 541.483 613.915 541.159 613.769 540.869C613.623 540.572 613.391 540.332 613.073 540.149C612.895 540.046 612.724 539.995 612.559 539.995C612.4 539.991 612.263 540.062 612.149 540.209C612.041 540.359 611.987 540.603 611.987 540.941L611.987 544.076L610.692 543.328L610.692 537.608ZM618.255 547.826C617.791 547.559 617.395 547.201 617.064 546.754C616.734 546.299 616.483 545.799 616.312 545.252C616.14 544.699 616.055 544.136 616.055 543.564C616.055 542.984 616.14 542.521 616.312 542.172C616.483 541.817 616.734 541.606 617.064 541.54C617.395 541.474 617.791 541.575 618.255 541.842C618.585 542.033 618.874 542.269 619.122 542.552C619.376 542.838 619.589 543.162 619.76 543.525L619.76 540.643L621.056 541.391L621.056 549.311L619.798 548.585L619.798 547.826C619.627 548.013 619.414 548.11 619.16 548.118C618.906 548.125 618.604 548.028 618.255 547.826ZM618.579 546.781C618.846 546.935 619.068 546.99 619.246 546.946C619.424 546.902 619.557 546.778 619.646 546.572C619.735 546.36 619.779 546.074 619.779 545.714C619.779 545.355 619.735 545.018 619.646 544.702C619.557 544.387 619.424 544.108 619.246 543.866C619.068 543.617 618.846 543.415 618.579 543.261C618.306 543.104 618.08 543.047 617.903 543.091C617.725 543.127 617.591 543.252 617.503 543.465C617.42 543.681 617.379 543.969 617.379 544.328C617.379 544.688 617.42 545.023 617.503 545.335C617.591 545.643 617.725 545.921 617.903 546.171C618.08 546.42 618.306 546.624 618.579 546.781ZM622.041 541.96L623.337 542.708L623.337 550.628L622.041 549.88L622.041 541.96ZM626.607 552.648C626.099 552.355 625.654 551.97 625.273 551.493C624.898 551.013 624.612 550.492 624.416 549.931C624.219 549.363 624.12 548.793 624.12 548.221C624.12 547.649 624.219 547.192 624.416 546.851C624.612 546.51 624.898 546.319 625.273 546.279C625.654 546.242 626.099 546.371 626.607 546.664C627.121 546.961 627.566 547.346 627.94 547.819C628.315 548.285 628.598 548.811 628.788 549.398C628.985 549.981 629.083 550.587 629.083 551.218L629.083 551.548L625.406 549.425C625.438 549.729 625.505 550.014 625.606 550.278C625.714 550.538 625.851 550.774 626.016 550.987C626.187 551.196 626.384 551.365 626.607 551.493C626.886 551.654 627.118 551.726 627.302 551.708C627.493 551.686 627.639 551.587 627.74 551.411L628.998 552.137C628.833 552.621 628.54 552.914 628.121 553.017C627.708 553.116 627.204 552.993 626.607 552.648ZM627.788 549.766C627.724 549.333 627.591 548.948 627.388 548.611C627.185 548.266 626.924 548.002 626.607 547.819C626.283 547.632 626.019 547.594 625.816 547.704C625.613 547.806 625.479 548.037 625.416 548.397L627.788 549.766ZM629.865 548.677L631.123 549.403L631.123 550.393C631.281 550.111 631.485 549.961 631.732 549.942C631.98 549.917 632.269 549.999 632.599 550.19L632.999 550.421L632.999 551.796L632.542 551.532C632.25 551.363 632.002 551.275 631.799 551.268C631.596 551.253 631.437 551.341 631.323 551.532C631.215 551.719 631.161 552.025 631.161 552.45L631.161 555.145L629.865 554.397L629.865 548.677ZM635.707 557.902C635.002 557.495 634.45 557.015 634.05 556.461C633.656 555.911 633.44 555.277 633.402 554.558L634.659 555.284C634.691 555.655 634.796 555.964 634.974 556.214C635.158 556.467 635.418 556.69 635.755 556.885C636.028 557.042 636.247 557.114 636.412 557.099C636.577 557.077 636.66 556.967 636.66 556.769C636.66 556.63 636.635 556.505 636.584 556.395C636.533 556.285 636.425 556.15 636.26 555.988C636.101 555.823 635.853 555.614 635.517 555.361C635.009 554.965 634.609 554.602 634.316 554.272C634.024 553.942 633.815 553.627 633.688 553.326C633.567 553.029 633.507 552.716 633.507 552.386C633.507 551.843 633.697 551.528 634.078 551.44C634.459 551.352 634.971 551.493 635.612 551.863C636.323 552.274 636.866 552.763 637.241 553.332C637.616 553.893 637.809 554.481 637.822 555.097L636.622 554.404C636.615 554.056 636.52 553.763 636.336 553.524C636.152 553.286 635.911 553.081 635.612 552.908C635.364 552.765 635.161 552.703 635.002 552.721C634.85 552.743 634.774 552.85 634.774 553.04C634.774 553.18 634.805 553.312 634.869 553.436C634.939 553.557 635.056 553.698 635.221 553.86C635.393 554.017 635.644 554.221 635.974 554.47C636.476 554.855 636.87 555.211 637.155 555.537C637.441 555.856 637.644 556.168 637.765 556.472C637.886 556.769 637.946 557.083 637.946 557.413C637.946 557.977 637.74 558.298 637.327 558.375C636.92 558.449 636.381 558.291 635.707 557.902Z" fill="#5F52FF"/>
|
|
268
|
+
<path d="M986.008 512.905L1093.23 451L1148.66 483.005" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
269
|
+
<path d="M989.706 525.274L1093.23 465.504L1148.66 497.509" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
270
|
+
<path d="M991.298 538.86L1093.23 480.009L1148.66 512.013" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
271
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1111.23 543.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
272
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1111.23 528.778)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
273
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1111.23 513.778)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
274
|
+
<rect x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1111.23 498.778)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
275
|
+
<path d="M1175 505.996V533.496" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
276
|
+
<rect x="1.73205" width="43.616" height="43.616" transform="matrix(0.866025 -0.5 0.866025 0.5 1135.66 484.674)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
277
|
+
<path d="M1046 572.879L1143.64 516.504" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
278
|
+
<path d="M1046 587.879L1143.64 531.504" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
279
|
+
<path d="M1046 602.879L1143.64 546.504" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
280
|
+
<path d="M1207.49 516.504L1259.54 546.557L1133.53 619.313" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
281
|
+
<path d="M512.385 376.102L609.876 432.388L446.782 526.551" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
282
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 931.116 468.567)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
283
|
+
<rect x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 937.116 498.05)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
284
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 944 511)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
285
|
+
<path d="M966.5 516L993.5 507" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
286
|
+
<path d="M932.5 471.5L938 500.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
287
|
+
<path d="M932.5 542L938 533" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
288
|
+
<path d="M966 548.5L993.5 577.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
289
|
+
<path d="M962.937 620.282L874.512 569.23L955.628 522.398" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
290
|
+
<path d="M591.448 598.497L469.691 528.2L796.28 339.644" stroke="#28FFB4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
291
|
+
<path d="M278.757 409.853L157 339.556L701.951 24.9282" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
292
|
+
<path d="M1207.49 530.504L1260.12 560.89L1135.7 632.725" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
293
|
+
<path d="M1208 544.801L1260.75 575.256L1137 646.704" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
294
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 1086.12 557.567)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
295
|
+
<rect x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 1092.12 587.05)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
296
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 1099 600)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
297
|
+
<path d="M1121.5 605L1148.5 596" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
298
|
+
<path d="M1087.5 560.5L1093 589.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
299
|
+
<path d="M1087.5 631L1093 622" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
300
|
+
<path d="M1121 637.5L1148.5 666.5" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
301
|
+
<path d="M1110.5 609.55L1027.49 657.478L963.326 620.435" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
302
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 1009.12 513.567)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
303
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 1034 557)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
304
|
+
<path d="M937 629.5L1045.25 567" stroke="#C7BA41" stroke-linecap="round" stroke-linejoin="round"/>
|
|
305
|
+
<rect width="44.8221" height="104.742" transform="matrix(0.866025 -0.5 0.866025 0.5 841.699 668.612)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
306
|
+
<rect x="0.866025" width="43.8221" height="103.742" transform="matrix(0.866025 -0.5 0.866025 0.5 841.815 669.045)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
307
|
+
<path d="M792 706.5L900.253 644" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
308
|
+
<path d="M624 609L1154.01 303" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
309
|
+
<path d="M620 604L1150.01 298" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
310
|
+
<path d="M795 711.5L903.253 649" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
311
|
+
<path d="M795 718.5L903.253 656" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
312
|
+
<path d="M765.253 706.5L637.081 632.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
313
|
+
<path d="M762.253 718.5L630.617 642.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
314
|
+
<path d="M587.636 625L444.742 542.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
315
|
+
<path d="M604.448 620L432.975 521" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
316
|
+
<path d="M1007.47 201L701.766 24.5" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
317
|
+
<path d="M762.253 711.5L628.019 634" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
318
|
+
<path d="M1145.25 281.5L1060.38 232.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
319
|
+
<path d="M1194.31 196.852L1192.14 195.603L1192.14 194.162L1197.88 197.473L1197.88 198.914L1195.72 197.666L1195.72 204.145L1194.31 203.331L1194.31 196.852ZM1198.51 197.841L1199.81 198.589L1199.81 201.515C1199.99 201.357 1200.21 201.275 1200.47 201.268C1200.72 201.26 1201.01 201.35 1201.33 201.537C1201.71 201.753 1202.03 202.028 1202.29 202.362C1202.55 202.692 1202.75 203.068 1202.89 203.49C1203.03 203.915 1203.1 204.366 1203.1 204.843L1203.1 208.407L1201.81 207.664L1201.81 204.276C1201.81 203.917 1201.74 203.592 1201.59 203.303C1201.45 203.006 1201.21 202.765 1200.9 202.582C1200.72 202.479 1200.55 202.428 1200.38 202.428C1200.22 202.424 1200.09 202.496 1199.97 202.643C1199.86 202.793 1199.81 203.037 1199.81 203.374L1199.81 206.509L1198.51 205.761L1198.51 197.841ZM1206.41 210.452C1205.89 210.152 1205.44 209.761 1205.05 209.281C1204.67 208.797 1204.38 208.273 1204.17 207.708C1203.98 207.14 1203.88 206.569 1203.88 205.997C1203.88 205.425 1203.98 204.969 1204.17 204.628C1204.38 204.291 1204.67 204.104 1205.05 204.067C1205.44 204.034 1205.89 204.168 1206.41 204.468C1206.94 204.773 1207.39 205.163 1207.77 205.64C1208.16 206.12 1208.45 206.645 1208.65 207.213C1208.85 207.781 1208.95 208.351 1208.95 208.923C1208.95 209.495 1208.85 209.952 1208.65 210.293C1208.45 210.627 1208.16 210.814 1207.77 210.854C1207.39 210.891 1206.94 210.757 1206.41 210.452ZM1206.41 209.22C1206.69 209.382 1206.92 209.44 1207.1 209.396C1207.28 209.356 1207.41 209.231 1207.5 209.022C1207.59 208.81 1207.63 208.524 1207.63 208.164C1207.63 207.805 1207.59 207.468 1207.5 207.152C1207.41 206.841 1207.28 206.562 1207.1 206.316C1206.92 206.067 1206.69 205.862 1206.41 205.7C1206.14 205.543 1205.91 205.484 1205.73 205.524C1205.55 205.561 1205.41 205.686 1205.33 205.898C1205.24 206.111 1205.19 206.397 1205.19 206.756C1205.19 207.116 1205.24 207.453 1205.33 207.768C1205.41 208.076 1205.55 208.355 1205.73 208.604C1205.91 208.857 1206.14 209.063 1206.41 209.22ZM1214.31 214.879L1213.05 214.153L1213.05 213.372C1212.87 213.544 1212.64 213.639 1212.38 213.658C1212.12 213.669 1211.82 213.577 1211.49 213.383C1211.11 213.166 1210.79 212.893 1210.52 212.563C1210.26 212.23 1210.06 211.85 1209.92 211.425C1209.79 211.003 1209.72 210.554 1209.72 210.077L1209.72 206.513L1211.01 207.256L1211.01 210.644C1211.01 211.003 1211.08 211.331 1211.23 211.628C1211.38 211.918 1211.61 212.154 1211.93 212.338C1212.1 212.44 1212.27 212.494 1212.43 212.497C1212.6 212.497 1212.73 212.422 1212.84 212.272C1212.95 212.125 1213.01 211.883 1213.01 211.546L1213.01 208.411L1214.31 209.159L1214.31 214.879ZM1217.55 219.081C1216.85 218.677 1216.3 218.184 1215.92 217.601C1215.53 217.018 1215.32 216.4 1215.28 215.748L1216.55 216.485C1216.59 216.804 1216.69 217.084 1216.87 217.326C1217.05 217.572 1217.29 217.781 1217.59 217.953C1217.94 218.155 1218.23 218.221 1218.45 218.151C1218.68 218.092 1218.79 217.814 1218.79 217.315L1218.79 216.622C1218.62 216.78 1218.41 216.855 1218.15 216.848C1217.91 216.837 1217.62 216.736 1217.29 216.545C1216.82 216.277 1216.43 215.924 1216.1 215.484C1215.77 215.044 1215.52 214.558 1215.34 214.026C1215.17 213.487 1215.09 212.939 1215.09 212.382C1215.09 211.817 1215.17 211.368 1215.34 211.034C1215.52 210.693 1215.77 210.493 1216.1 210.435C1216.43 210.376 1216.82 210.48 1217.29 210.748C1217.63 210.946 1217.93 211.192 1218.18 211.485C1218.44 211.782 1218.66 212.119 1218.83 212.497L1218.83 211.771L1220.09 212.497L1220.09 218.063C1220.09 218.613 1219.98 219.007 1219.76 219.246C1219.53 219.491 1219.23 219.596 1218.85 219.559C1218.47 219.522 1218.03 219.363 1217.55 219.081ZM1217.61 215.555C1217.88 215.709 1218.1 215.768 1218.28 215.731C1218.46 215.687 1218.59 215.566 1218.68 215.368C1218.77 215.163 1218.81 214.884 1218.81 214.532C1218.81 214.18 1218.77 213.85 1218.68 213.542C1218.59 213.234 1218.46 212.959 1218.28 212.717C1218.1 212.468 1217.88 212.266 1217.61 212.112C1217.34 211.954 1217.11 211.898 1216.94 211.942C1216.76 211.978 1216.62 212.099 1216.54 212.305C1216.45 212.514 1216.41 212.794 1216.41 213.146C1216.41 213.498 1216.45 213.826 1216.54 214.131C1216.62 214.431 1216.76 214.706 1216.94 214.956C1217.11 215.198 1217.34 215.397 1217.61 215.555ZM1221.07 210.866L1222.37 211.614L1222.37 214.54C1222.55 214.382 1222.77 214.3 1223.03 214.292C1223.28 214.285 1223.57 214.375 1223.89 214.562C1224.27 214.778 1224.59 215.053 1224.85 215.387C1225.11 215.717 1225.31 216.093 1225.45 216.514C1225.59 216.94 1225.66 217.391 1225.66 217.868L1225.66 221.432L1224.37 220.689L1224.37 217.301C1224.37 216.942 1224.3 216.617 1224.15 216.327C1224.01 216.03 1223.77 215.79 1223.46 215.607C1223.28 215.504 1223.11 215.453 1222.94 215.453C1222.78 215.449 1222.65 215.521 1222.53 215.667C1222.42 215.818 1222.37 216.062 1222.37 216.399L1222.37 219.534L1221.07 218.786L1221.07 210.866ZM1228.58 223.12C1228.27 222.94 1228.01 222.751 1227.81 222.553C1227.61 222.348 1227.44 222.1 1227.32 221.811C1227.21 221.525 1227.15 221.184 1227.15 220.788L1227.15 217.708L1226.29 217.213L1226.29 216.08L1227.15 216.575L1227.15 214.815L1228.45 215.563L1228.45 217.323L1229.69 218.038L1229.69 219.171L1228.45 218.456L1228.45 221.382C1228.45 221.565 1228.48 221.721 1228.55 221.849C1228.62 221.97 1228.74 222.08 1228.91 222.179L1229.69 222.625L1229.69 223.758L1228.58 223.12ZM1196.83 215.734C1196.49 215.664 1196.12 215.512 1195.72 215.277C1194.99 214.859 1194.37 214.32 1193.85 213.66C1193.33 212.996 1192.94 212.276 1192.68 211.498C1192.42 210.725 1192.29 209.96 1192.29 209.205C1192.29 208.442 1192.42 207.828 1192.68 207.362C1192.94 206.893 1193.33 206.627 1193.85 206.565C1194.37 206.499 1194.99 206.675 1195.72 207.093C1196.43 207.507 1197.05 208.046 1197.56 208.71C1198.08 209.37 1198.47 210.087 1198.74 210.86C1199 211.63 1199.14 212.397 1199.14 213.159C1199.14 213.864 1199.02 214.447 1198.79 214.909C1198.57 215.367 1198.24 215.649 1197.8 215.756L1198.66 217.714L1197.37 216.971L1196.83 215.734ZM1196.47 212.708L1197.04 214.007C1197.26 213.904 1197.42 213.704 1197.53 213.407C1197.63 213.11 1197.69 212.749 1197.69 212.323C1197.69 211.817 1197.62 211.326 1197.48 210.85C1197.34 210.365 1197.12 209.92 1196.82 209.513C1196.53 209.11 1196.16 208.78 1195.72 208.523C1195.27 208.266 1194.9 208.169 1194.6 208.231C1194.3 208.294 1194.08 208.486 1193.94 208.809C1193.8 209.124 1193.73 209.535 1193.73 210.041C1193.73 210.525 1193.8 210.998 1193.92 211.46C1194.06 211.926 1194.26 212.358 1194.53 212.758C1194.81 213.154 1195.16 213.486 1195.57 213.754C1195.76 213.867 1195.92 213.95 1196.08 214.001L1195.18 211.966L1196.47 212.708ZM1204.5 220.218L1203.24 219.492L1203.24 218.711C1203.06 218.883 1202.84 218.978 1202.58 218.997C1202.32 219.008 1202.02 218.916 1201.68 218.722C1201.31 218.505 1200.99 218.232 1200.72 217.902C1200.46 217.568 1200.26 217.189 1200.12 216.764C1199.99 216.342 1199.92 215.893 1199.92 215.416L1199.92 211.852L1201.21 212.595L1201.21 215.983C1201.21 216.342 1201.28 216.67 1201.42 216.967C1201.57 217.257 1201.8 217.493 1202.12 217.677C1202.3 217.779 1202.47 217.832 1202.62 217.836C1202.79 217.836 1202.93 217.761 1203.03 217.611C1203.15 217.464 1203.21 217.222 1203.21 216.885L1203.21 213.75L1204.5 214.498L1204.5 220.218ZM1207.77 222.236C1207.26 221.943 1206.82 221.558 1206.43 221.081C1206.06 220.601 1205.77 220.08 1205.58 219.519C1205.38 218.951 1205.28 218.38 1205.28 217.808C1205.28 217.236 1205.38 216.78 1205.58 216.439C1205.77 216.098 1206.06 215.907 1206.43 215.867C1206.82 215.83 1207.26 215.959 1207.77 216.252C1208.28 216.549 1208.73 216.934 1209.1 217.407C1209.48 217.873 1209.76 218.399 1209.95 218.985C1210.15 219.568 1210.25 220.175 1210.25 220.806L1210.25 221.136L1206.57 219.013C1206.6 219.317 1206.67 219.601 1206.77 219.865C1206.88 220.126 1207.01 220.362 1207.18 220.575C1207.35 220.784 1207.55 220.953 1207.77 221.081C1208.05 221.242 1208.28 221.314 1208.46 221.295C1208.65 221.273 1208.8 221.174 1208.9 220.998L1210.16 221.724C1209.99 222.208 1209.7 222.502 1209.28 222.604C1208.87 222.703 1208.37 222.581 1207.77 222.236ZM1208.95 219.354C1208.89 218.921 1208.75 218.536 1208.55 218.199C1208.35 217.854 1208.09 217.59 1207.77 217.407C1207.44 217.22 1207.18 217.181 1206.98 217.291C1206.77 217.394 1206.64 217.625 1206.58 217.984L1208.95 219.354ZM1215.61 226.631L1214.35 225.905L1214.35 225.124C1214.17 225.296 1213.95 225.391 1213.68 225.41C1213.42 225.421 1213.13 225.329 1212.79 225.135C1212.41 224.918 1212.09 224.645 1211.83 224.315C1211.57 223.982 1211.37 223.602 1211.23 223.177C1211.09 222.755 1211.03 222.306 1211.03 221.829L1211.03 218.265L1212.31 219.008L1212.31 222.396C1212.31 222.755 1212.39 223.083 1212.53 223.38C1212.68 223.67 1212.91 223.906 1213.23 224.09C1213.41 224.192 1213.57 224.246 1213.73 224.249C1213.9 224.249 1214.03 224.174 1214.14 224.024C1214.26 223.877 1214.31 223.635 1214.31 223.298L1214.31 220.163L1215.61 220.911L1215.61 226.631ZM1218.88 228.649C1218.37 228.356 1217.92 227.971 1217.54 227.494C1217.17 227.014 1216.88 226.493 1216.69 225.932C1216.49 225.364 1216.39 224.794 1216.39 224.222C1216.39 223.65 1216.49 223.193 1216.69 222.852C1216.88 222.511 1217.17 222.32 1217.54 222.28C1217.92 222.243 1218.37 222.372 1218.88 222.665C1219.39 222.962 1219.84 223.347 1220.21 223.82C1220.58 224.286 1220.87 224.812 1221.06 225.399C1221.25 225.982 1221.35 226.588 1221.35 227.219L1221.35 227.549L1217.68 225.426C1217.71 225.73 1217.77 226.015 1217.88 226.279C1217.98 226.539 1218.12 226.775 1218.29 226.988C1218.46 227.197 1218.65 227.366 1218.88 227.494C1219.16 227.655 1219.39 227.727 1219.57 227.709C1219.76 227.687 1219.91 227.588 1220.01 227.412L1221.27 228.138C1221.1 228.622 1220.81 228.915 1220.39 229.018C1219.98 229.117 1219.47 228.994 1218.88 228.649ZM1220.06 225.767C1219.99 225.334 1219.86 224.949 1219.66 224.612C1219.45 224.267 1219.19 224.003 1218.88 223.82C1218.55 223.633 1218.29 223.595 1218.09 223.705C1217.88 223.807 1217.75 224.038 1217.69 224.398L1220.06 225.767Z" fill="#5F52FF"/>
|
|
320
|
+
<path d="M1052.31 150.852L1050.14 149.603L1050.14 148.162L1055.88 151.473L1055.88 152.914L1053.72 151.666L1053.72 158.145L1052.31 157.331L1052.31 150.852ZM1058.07 160.79C1057.52 160.474 1057.08 160.071 1056.75 159.58C1056.42 159.081 1056.26 158.557 1056.26 158.007C1056.26 157.669 1056.32 157.425 1056.46 157.275C1056.6 157.121 1056.81 157.051 1057.09 157.066C1057.37 157.084 1057.74 157.18 1058.19 157.352L1059.6 157.88L1059.6 157.583C1059.6 157.326 1059.53 157.097 1059.4 156.896C1059.27 156.694 1059.05 156.505 1058.74 156.329C1058.46 156.164 1058.23 156.1 1058.05 156.137C1057.88 156.177 1057.79 156.335 1057.78 156.61L1056.5 155.867C1056.5 155.225 1056.71 154.859 1057.12 154.767C1057.54 154.672 1058.08 154.813 1058.73 155.191C1059.44 155.598 1059.97 156.054 1060.32 156.56C1060.69 157.07 1060.87 157.596 1060.87 158.139L1060.87 162.275L1059.64 161.565L1059.64 160.927C1059.44 161.081 1059.2 161.145 1058.94 161.12C1058.69 161.09 1058.4 160.98 1058.07 160.79ZM1058.39 159.899C1058.61 160.023 1058.8 160.093 1058.98 160.108C1059.17 160.126 1059.32 160.073 1059.43 159.948C1059.54 159.823 1059.6 159.618 1059.6 159.332L1059.6 158.848L1058.44 158.452C1058.13 158.342 1057.91 158.304 1057.78 158.337C1057.65 158.362 1057.58 158.489 1057.58 158.716C1057.58 158.936 1057.65 159.151 1057.78 159.36C1057.92 159.565 1058.12 159.745 1058.39 159.899ZM1063.71 164.05C1063.01 163.643 1062.46 163.163 1062.06 162.609C1061.66 162.059 1061.45 161.425 1061.41 160.706L1062.67 161.432C1062.7 161.803 1062.8 162.112 1062.98 162.362C1063.17 162.615 1063.43 162.838 1063.76 163.033C1064.04 163.19 1064.25 163.262 1064.42 163.247C1064.58 163.225 1064.67 163.115 1064.67 162.917C1064.67 162.778 1064.64 162.653 1064.59 162.543C1064.54 162.433 1064.43 162.298 1064.27 162.136C1064.11 161.971 1063.86 161.762 1063.52 161.509C1063.02 161.113 1062.62 160.75 1062.32 160.42C1062.03 160.09 1061.82 159.775 1061.7 159.474C1061.57 159.177 1061.51 158.864 1061.51 158.534C1061.51 157.991 1061.7 157.676 1062.09 157.588C1062.47 157.5 1062.98 157.641 1063.62 158.011C1064.33 158.422 1064.87 158.911 1065.25 159.48C1065.62 160.041 1065.82 160.629 1065.83 161.245L1064.63 160.552C1064.62 160.204 1064.53 159.911 1064.34 159.672C1064.16 159.434 1063.92 159.229 1063.62 159.056C1063.37 158.913 1063.17 158.851 1063.01 158.869C1062.86 158.891 1062.78 158.998 1062.78 159.188C1062.78 159.328 1062.81 159.46 1062.88 159.584C1062.95 159.705 1063.06 159.846 1063.23 160.008C1063.4 160.165 1063.65 160.369 1063.98 160.618C1064.48 161.003 1064.88 161.359 1065.16 161.685C1065.45 162.004 1065.65 162.316 1065.77 162.62C1065.89 162.917 1065.95 163.231 1065.95 163.561C1065.95 164.125 1065.75 164.446 1065.33 164.523C1064.93 164.597 1064.39 164.439 1063.71 164.05ZM1066.62 157.674L1067.91 158.422L1067.91 162.932L1069.85 161.739L1071.38 162.624L1069.5 163.719L1071.5 168.416L1069.99 167.541L1068.61 164.247L1067.91 164.67L1067.91 166.342L1066.62 165.594L1066.62 157.674ZM1074 169.991C1073.3 169.584 1072.75 169.103 1072.35 168.55C1071.95 168 1071.74 167.365 1071.7 166.647L1072.96 167.373C1072.99 167.743 1073.09 168.053 1073.27 168.302C1073.45 168.555 1073.72 168.779 1074.05 168.973C1074.32 169.131 1074.54 169.202 1074.71 169.188C1074.87 169.166 1074.96 169.056 1074.96 168.858C1074.96 168.718 1074.93 168.594 1074.88 168.484C1074.83 168.374 1074.72 168.238 1074.56 168.077C1074.4 167.912 1074.15 167.703 1073.81 167.45C1073.31 167.054 1072.91 166.691 1072.61 166.361C1072.32 166.031 1072.11 165.715 1071.98 165.415C1071.86 165.118 1071.8 164.804 1071.8 164.474C1071.8 163.932 1071.99 163.616 1072.37 163.528C1072.76 163.44 1073.27 163.581 1073.91 163.952C1074.62 164.362 1075.16 164.852 1075.54 165.42C1075.91 165.981 1076.11 166.57 1076.12 167.186L1074.92 166.493C1074.91 166.144 1074.82 165.851 1074.63 165.613C1074.45 165.374 1074.21 165.169 1073.91 164.997C1073.66 164.854 1073.46 164.791 1073.3 164.81C1073.15 164.832 1073.07 164.938 1073.07 165.129C1073.07 165.268 1073.1 165.4 1073.17 165.525C1073.24 165.646 1073.35 165.787 1073.52 165.948C1073.69 166.106 1073.94 166.309 1074.27 166.559C1074.77 166.944 1075.17 167.299 1075.45 167.626C1075.74 167.945 1075.94 168.256 1076.06 168.561C1076.18 168.858 1076.24 169.171 1076.24 169.501C1076.24 170.066 1076.04 170.387 1075.62 170.464C1075.22 170.537 1074.68 170.379 1074 169.991ZM1054.83 169.734C1054.49 169.664 1054.12 169.512 1053.72 169.277C1052.99 168.859 1052.37 168.32 1051.85 167.66C1051.33 166.996 1050.94 166.276 1050.68 165.498C1050.42 164.725 1050.29 163.96 1050.29 163.205C1050.29 162.442 1050.42 161.828 1050.68 161.362C1050.94 160.893 1051.33 160.627 1051.85 160.565C1052.37 160.499 1052.99 160.675 1053.72 161.093C1054.43 161.507 1055.05 162.046 1055.56 162.71C1056.08 163.37 1056.47 164.087 1056.74 164.86C1057 165.63 1057.14 166.397 1057.14 167.159C1057.14 167.864 1057.02 168.447 1056.79 168.909C1056.57 169.367 1056.24 169.649 1055.8 169.756L1056.66 171.714L1055.37 170.971L1054.83 169.734ZM1054.47 166.708L1055.04 168.007C1055.26 167.904 1055.42 167.704 1055.53 167.407C1055.63 167.11 1055.69 166.749 1055.69 166.323C1055.69 165.817 1055.62 165.326 1055.48 164.85C1055.34 164.365 1055.12 163.92 1054.82 163.513C1054.53 163.11 1054.16 162.78 1053.72 162.523C1053.27 162.266 1052.9 162.169 1052.6 162.231C1052.3 162.294 1052.08 162.486 1051.94 162.809C1051.8 163.124 1051.73 163.535 1051.73 164.041C1051.73 164.525 1051.8 164.998 1051.92 165.46C1052.06 165.926 1052.26 166.358 1052.53 166.758C1052.81 167.154 1053.16 167.486 1053.57 167.754C1053.76 167.867 1053.92 167.95 1054.08 168.001L1053.18 165.966L1054.47 166.708ZM1062.5 174.218L1061.24 173.492L1061.24 172.711C1061.06 172.883 1060.84 172.978 1060.58 172.997C1060.32 173.008 1060.02 172.916 1059.68 172.722C1059.31 172.505 1058.99 172.232 1058.72 171.902C1058.46 171.568 1058.26 171.189 1058.12 170.764C1057.99 170.342 1057.92 169.893 1057.92 169.416L1057.92 165.852L1059.21 166.595L1059.21 169.983C1059.21 170.342 1059.28 170.67 1059.42 170.967C1059.57 171.257 1059.8 171.493 1060.12 171.677C1060.3 171.779 1060.47 171.832 1060.62 171.836C1060.79 171.836 1060.93 171.761 1061.03 171.611C1061.15 171.464 1061.21 171.222 1061.21 170.885L1061.21 167.75L1062.5 168.498L1062.5 174.218ZM1065.77 176.236C1065.26 175.943 1064.82 175.558 1064.43 175.081C1064.06 174.601 1063.77 174.08 1063.58 173.519C1063.38 172.951 1063.28 172.38 1063.28 171.808C1063.28 171.236 1063.38 170.78 1063.58 170.439C1063.77 170.098 1064.06 169.907 1064.43 169.867C1064.82 169.83 1065.26 169.959 1065.77 170.252C1066.28 170.549 1066.73 170.934 1067.1 171.407C1067.48 171.873 1067.76 172.399 1067.95 172.985C1068.15 173.568 1068.25 174.175 1068.25 174.806L1068.25 175.136L1064.57 173.013C1064.6 173.317 1064.67 173.601 1064.77 173.865C1064.88 174.126 1065.01 174.362 1065.18 174.575C1065.35 174.784 1065.55 174.953 1065.77 175.081C1066.05 175.242 1066.28 175.314 1066.46 175.295C1066.65 175.273 1066.8 175.174 1066.9 174.998L1068.16 175.724C1067.99 176.208 1067.7 176.502 1067.28 176.604C1066.87 176.703 1066.37 176.581 1065.77 176.236ZM1066.95 173.354C1066.89 172.921 1066.75 172.536 1066.55 172.199C1066.35 171.854 1066.09 171.59 1065.77 171.407C1065.44 171.22 1065.18 171.181 1064.98 171.291C1064.77 171.394 1064.64 171.625 1064.58 171.984L1066.95 173.354ZM1073.61 180.631L1072.35 179.905L1072.35 179.124C1072.17 179.296 1071.95 179.391 1071.68 179.41C1071.42 179.421 1071.13 179.329 1070.79 179.135C1070.41 178.918 1070.09 178.645 1069.83 178.315C1069.57 177.982 1069.37 177.602 1069.23 177.177C1069.09 176.755 1069.03 176.306 1069.03 175.829L1069.03 172.265L1070.31 173.008L1070.31 176.396C1070.31 176.755 1070.39 177.083 1070.53 177.38C1070.68 177.67 1070.91 177.906 1071.23 178.09C1071.41 178.192 1071.57 178.246 1071.73 178.249C1071.9 178.249 1072.03 178.174 1072.14 178.024C1072.26 177.877 1072.31 177.635 1072.31 177.298L1072.31 174.163L1073.61 174.911L1073.61 180.631ZM1076.88 182.649C1076.37 182.356 1075.92 181.971 1075.54 181.494C1075.17 181.014 1074.88 180.493 1074.69 179.932C1074.49 179.364 1074.39 178.794 1074.39 178.222C1074.39 177.65 1074.49 177.193 1074.69 176.852C1074.88 176.511 1075.17 176.32 1075.54 176.28C1075.92 176.243 1076.37 176.372 1076.88 176.665C1077.39 176.962 1077.84 177.347 1078.21 177.82C1078.58 178.286 1078.87 178.812 1079.06 179.399C1079.25 179.982 1079.35 180.588 1079.35 181.219L1079.35 181.549L1075.68 179.426C1075.71 179.73 1075.77 180.015 1075.88 180.279C1075.98 180.539 1076.12 180.775 1076.29 180.988C1076.46 181.197 1076.65 181.366 1076.88 181.494C1077.16 181.655 1077.39 181.727 1077.57 181.709C1077.76 181.687 1077.91 181.588 1078.01 181.412L1079.27 182.138C1079.1 182.622 1078.81 182.915 1078.39 183.018C1077.98 183.117 1077.47 182.994 1076.88 182.649ZM1078.06 179.767C1077.99 179.334 1077.86 178.949 1077.66 178.612C1077.45 178.267 1077.19 178.003 1076.88 177.82C1076.55 177.633 1076.29 177.595 1076.09 177.705C1075.88 177.807 1075.75 178.038 1075.69 178.398L1078.06 179.767Z" fill="#5F52FF"/>
|
|
321
|
+
<rect width="724.618" height="192.065" transform="matrix(0.866025 -0.5 0.866025 0.5 21.6406 506.135)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
322
|
+
<rect x="0.866025" width="723.618" height="191.065" transform="matrix(0.866025 -0.5 0.866025 0.5 21.7567 506.568)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
323
|
+
<path d="M316.946 367.513L318.48 368.399L321.481 375.774L321.481 370.131L322.824 370.907L322.824 378.827L321.29 377.941L318.29 370.566L318.29 376.209L316.946 375.433L316.946 367.513ZM326.218 380.918C325.698 380.618 325.243 380.227 324.856 379.747C324.475 379.263 324.183 378.738 323.98 378.174C323.783 377.605 323.684 377.035 323.684 376.463C323.684 375.891 323.783 375.435 323.98 375.094C324.183 374.756 324.475 374.569 324.856 374.533C325.243 374.5 325.698 374.634 326.218 374.934C326.745 375.239 327.199 375.629 327.581 376.106C327.968 376.586 328.26 377.11 328.457 377.679C328.654 378.247 328.752 378.817 328.752 379.389C328.752 379.961 328.654 380.418 328.457 380.759C328.26 381.092 327.968 381.279 327.581 381.32C327.199 381.356 326.745 381.223 326.218 380.918ZM326.218 379.686C326.498 379.848 326.726 379.906 326.904 379.862C327.088 379.822 327.222 379.697 327.304 379.488C327.393 379.276 327.438 378.99 327.438 378.63C327.438 378.271 327.393 377.934 327.304 377.618C327.222 377.307 327.088 377.028 326.904 376.782C326.726 376.533 326.498 376.328 326.218 376.166C325.945 376.009 325.717 375.95 325.532 375.99C325.355 376.027 325.221 376.152 325.132 376.364C325.043 376.577 324.999 376.863 324.999 377.222C324.999 377.582 325.043 377.919 325.132 378.234C325.221 378.542 325.355 378.821 325.532 379.07C325.717 379.323 325.945 379.529 326.218 379.686ZM331.522 383.981C331.059 383.713 330.662 383.355 330.332 382.908C330.001 382.453 329.751 381.953 329.579 381.407C329.408 380.853 329.322 380.29 329.322 379.718C329.322 379.139 329.408 378.675 329.579 378.327C329.751 377.971 330.001 377.76 330.332 377.694C330.662 377.628 331.059 377.729 331.522 377.997C331.853 378.187 332.142 378.424 332.389 378.706C332.643 378.992 332.856 379.317 333.028 379.68L333.028 376.798L334.323 377.546L334.323 385.466L333.066 384.74L333.066 383.981C332.894 384.168 332.682 384.265 332.427 384.272C332.173 384.279 331.872 384.182 331.522 383.981ZM331.846 382.936C332.113 383.09 332.335 383.145 332.513 383.101C332.691 383.057 332.824 382.932 332.913 382.727C333.002 382.514 333.047 382.228 333.047 381.869C333.047 381.509 333.002 381.172 332.913 380.857C332.824 380.541 332.691 380.263 332.513 380.021C332.335 379.771 332.113 379.57 331.846 379.416C331.573 379.258 331.348 379.201 331.17 379.245C330.992 379.282 330.859 379.406 330.77 379.619C330.687 379.835 330.646 380.123 330.646 380.483C330.646 380.842 330.687 381.177 330.77 381.489C330.859 381.797 330.992 382.076 331.17 382.325C331.348 382.574 331.573 382.778 331.846 382.936ZM337.585 387.481C337.077 387.188 336.633 386.803 336.252 386.326C335.877 385.846 335.591 385.325 335.394 384.764C335.198 384.196 335.099 383.626 335.099 383.054C335.099 382.482 335.198 382.025 335.394 381.684C335.591 381.343 335.877 381.152 336.252 381.112C336.633 381.075 337.077 381.204 337.585 381.497C338.1 381.794 338.544 382.179 338.919 382.652C339.294 383.118 339.576 383.644 339.767 384.231C339.964 384.814 340.062 385.42 340.062 386.051L340.062 386.381L336.385 384.258C336.417 384.562 336.484 384.847 336.585 385.111C336.693 385.371 336.83 385.607 336.995 385.82C337.166 386.029 337.363 386.198 337.585 386.326C337.865 386.487 338.097 386.559 338.281 386.541C338.471 386.519 338.617 386.42 338.719 386.244L339.977 386.97C339.811 387.454 339.519 387.747 339.1 387.85C338.687 387.949 338.182 387.826 337.585 387.481ZM338.767 384.599C338.703 384.166 338.57 383.781 338.367 383.444C338.163 383.099 337.903 382.835 337.585 382.652C337.262 382.465 336.998 382.427 336.795 382.537C336.592 382.639 336.458 382.87 336.395 383.23L338.767 384.599ZM343.426 390.853C342.498 390.318 341.819 389.562 341.387 388.587C340.955 387.604 340.739 386.479 340.739 385.21C340.739 383.941 340.955 383.069 341.387 382.592C341.819 382.108 342.498 382.134 343.426 382.669C344.359 383.208 345.039 383.967 345.464 384.946C345.896 385.921 346.112 387.043 346.112 388.312C346.112 389.581 345.896 390.457 345.464 390.941C345.039 391.421 344.359 391.392 343.426 390.853ZM343.426 389.5C343.883 389.764 344.204 389.718 344.388 389.362C344.572 388.999 344.664 388.371 344.664 387.476C344.664 386.574 344.572 385.839 344.388 385.27C344.204 384.702 343.883 384.286 343.426 384.022C342.968 383.758 342.648 383.804 342.463 384.159C342.279 384.515 342.187 385.144 342.187 386.046C342.187 386.941 342.279 387.676 342.463 388.251C342.648 388.82 342.968 389.236 343.426 389.5Z" fill="#5F52FF"/>
|
|
324
|
+
<path d="M693.658 163.244C692.953 162.837 692.35 162.305 691.848 161.649C691.346 160.993 690.969 160.283 690.714 159.52C690.46 158.75 690.333 157.988 690.333 157.232C690.333 156.477 690.46 155.865 690.714 155.395C690.969 154.919 691.346 154.642 691.848 154.565C692.35 154.488 692.953 154.653 693.658 155.06C694.363 155.467 694.963 155.997 695.459 156.649C695.96 157.306 696.338 158.019 696.592 158.789C696.846 159.552 696.973 160.311 696.973 161.066C696.973 161.821 696.846 162.437 696.592 162.914C696.338 163.383 695.96 163.657 695.459 163.734C694.963 163.814 694.363 163.651 693.658 163.244ZM693.658 162.177C694.16 162.467 694.579 162.577 694.916 162.507C695.252 162.43 695.503 162.212 695.668 161.853C695.833 161.493 695.916 161.028 695.916 160.456C695.916 159.884 695.833 159.323 695.668 158.773C695.503 158.222 695.252 157.718 694.916 157.26C694.579 156.794 694.16 156.417 693.658 156.127C693.156 155.837 692.734 155.729 692.391 155.802C692.055 155.872 691.804 156.087 691.639 156.446C691.48 156.809 691.4 157.276 691.4 157.848C691.4 158.42 691.48 158.98 691.639 159.526C691.804 160.076 692.055 160.584 692.391 161.05C692.734 161.512 693.156 161.887 693.658 162.177ZM697.874 159.826L698.789 160.354L698.789 161.322C698.967 161.044 699.186 160.902 699.446 160.899C699.706 160.895 700.005 160.99 700.342 161.185L700.723 161.405L700.723 162.45L700.313 162.213C700.014 162.041 699.754 161.949 699.532 161.938C699.316 161.924 699.144 162.012 699.017 162.202C698.89 162.393 698.827 162.712 698.827 163.159L698.827 166.096L697.874 165.546L697.874 159.826ZM701.521 161.931L702.483 162.487L702.483 168.207L701.521 167.651L701.521 161.931ZM701.521 159.731L702.483 160.287L702.483 161.475L701.521 160.919L701.521 159.731ZM705.777 172.441C705.117 172.06 704.599 171.592 704.225 171.039C703.856 170.489 703.647 169.895 703.596 169.257L704.539 169.801C704.59 170.182 704.72 170.514 704.929 170.797C705.145 171.083 705.434 171.33 705.796 171.539C706.216 171.781 706.558 171.865 706.825 171.792C707.092 171.719 707.225 171.385 707.225 170.791L707.225 170.12C707.054 170.307 706.832 170.402 706.558 170.406C706.292 170.406 705.984 170.305 705.634 170.104C705.158 169.829 704.748 169.464 704.406 169.009C704.063 168.554 703.802 168.052 703.624 167.502C703.447 166.952 703.358 166.391 703.358 165.819C703.358 165.247 703.447 164.789 703.624 164.444C703.802 164.099 704.063 163.901 704.406 163.85C704.748 163.791 705.158 163.9 705.634 164.175C705.996 164.384 706.314 164.651 706.587 164.978C706.86 165.304 707.086 165.672 707.263 166.083L707.263 165.247L708.187 165.781L708.187 171.347C708.187 171.904 708.083 172.309 707.873 172.562C707.664 172.815 707.378 172.925 707.016 172.892C706.66 172.863 706.247 172.712 705.777 172.441ZM705.796 169.251C706.12 169.438 706.387 169.508 706.597 169.46C706.812 169.409 706.974 169.264 707.082 169.026C707.19 168.787 707.244 168.466 707.244 168.063C707.244 167.667 707.19 167.288 707.082 166.925C706.974 166.554 706.812 166.222 706.597 165.929C706.387 165.639 706.12 165.401 705.796 165.214C705.479 165.031 705.212 164.961 704.996 165.005C704.787 165.053 704.628 165.199 704.52 165.445C704.412 165.683 704.358 166.001 704.358 166.397C704.358 166.8 704.412 167.183 704.52 167.546C704.628 167.909 704.787 168.239 704.996 168.536C705.212 168.829 705.479 169.068 705.796 169.251ZM709.289 166.416L710.251 166.972L710.251 172.692L709.289 172.136L709.289 166.416ZM709.289 164.216L710.251 164.772L710.251 165.96L709.289 165.404L709.289 164.216ZM711.354 167.609L712.269 168.137L712.269 168.951C712.453 168.764 712.675 168.661 712.936 168.643C713.202 168.628 713.507 168.72 713.85 168.918C714.244 169.145 714.571 169.433 714.831 169.781C715.098 170.126 715.295 170.5 715.422 170.903C715.549 171.299 715.613 171.695 715.613 172.091L715.613 175.787L714.669 175.243L714.669 171.657C714.669 171.268 714.581 170.905 714.403 170.568C714.225 170.231 713.961 169.961 713.612 169.759C713.441 169.66 713.256 169.602 713.059 169.583C712.863 169.558 712.688 169.629 712.536 169.798C712.383 169.959 712.307 170.26 712.307 170.7L712.307 173.879L711.354 173.329L711.354 167.609ZM718.484 177.445C718.192 177.277 717.954 177.095 717.77 176.901C717.592 176.71 717.458 176.49 717.369 176.241C717.281 175.984 717.236 175.691 717.236 175.361L717.236 171.918L716.341 171.401L716.341 170.488L717.236 171.005L717.236 169.245L718.198 169.8L718.198 171.56L719.503 172.314L719.503 173.227L718.198 172.473L718.198 175.795C718.198 175.993 718.236 176.162 718.313 176.301C718.389 176.433 718.516 176.551 718.694 176.653L719.503 177.121L719.503 178.034L718.484 177.445ZM720.322 172.787L721.237 173.315L721.237 174.283C721.415 174.004 721.634 173.863 721.894 173.859C722.155 173.855 722.453 173.951 722.79 174.145L723.171 174.365L723.171 175.41L722.761 175.174C722.463 175.001 722.202 174.91 721.98 174.899C721.764 174.884 721.593 174.972 721.466 175.163C721.339 175.353 721.275 175.672 721.275 176.12L721.275 179.057L720.322 178.507L720.322 172.787ZM725.502 181.629C724.95 181.31 724.512 180.911 724.188 180.43C723.87 179.946 723.711 179.433 723.711 178.89C723.711 178.56 723.778 178.32 723.912 178.17C724.051 178.016 724.254 177.939 724.521 177.939C724.794 177.943 725.134 178.021 725.541 178.175L727.046 178.714L727.046 178.318C727.046 178.018 726.96 177.748 726.788 177.51C726.623 177.275 726.373 177.061 726.036 176.866C725.706 176.676 725.429 176.597 725.207 176.63C724.991 176.659 724.874 176.844 724.855 177.185L723.902 176.635C723.915 175.997 724.121 175.636 724.521 175.552C724.921 175.468 725.423 175.6 726.026 175.948C726.674 176.322 727.16 176.749 727.484 177.229C727.814 177.713 727.979 178.219 727.979 178.747L727.979 182.927L727.084 182.41L727.084 181.717C726.881 181.893 726.646 181.97 726.379 181.948C726.118 181.923 725.826 181.816 725.502 181.629ZM725.636 180.804C725.877 180.944 726.103 181.023 726.312 181.041C726.528 181.063 726.703 181.002 726.836 180.859C726.976 180.713 727.046 180.474 727.046 180.144L727.046 179.561L725.693 179.099C725.35 178.982 725.096 178.938 724.931 178.967C724.772 179 724.693 179.156 724.693 179.435C724.693 179.692 724.772 179.939 724.931 180.177C725.09 180.416 725.325 180.625 725.636 180.804ZM728.955 177.771L729.917 178.326L729.917 184.046L728.955 183.491L728.955 177.771ZM728.955 175.571L729.917 176.126L729.917 177.314L728.955 176.759L728.955 175.571ZM731.021 176.763L731.973 177.313L731.973 185.233L731.021 184.683L731.021 176.763Z" fill="#465358"/>
|
|
325
|
+
<path d="M527.143 305.162L528.219 305.784L530.306 313.687L532.373 308.182L533.449 308.803L530.868 315.233L529.725 314.573L527.143 305.162ZM536.301 318.502C535.825 318.227 535.406 317.857 535.044 317.391C534.688 316.929 534.412 316.414 534.215 315.846C534.025 315.281 533.929 314.713 533.929 314.141C533.929 313.569 534.025 313.11 534.215 312.766C534.412 312.425 534.688 312.228 535.044 312.177C535.406 312.129 535.825 312.243 536.301 312.518C536.778 312.793 537.194 313.162 537.549 313.624C537.911 314.089 538.187 314.608 538.378 315.18C538.575 315.748 538.673 316.33 538.673 316.924L538.673 317.254L534.92 315.087C534.952 315.442 535.025 315.778 535.139 316.093C535.253 316.408 535.409 316.696 535.606 316.957C535.803 317.21 536.035 317.413 536.301 317.567C536.612 317.747 536.879 317.82 537.102 317.787C537.324 317.747 537.492 317.613 537.606 317.386L538.569 317.941C538.41 318.421 538.13 318.715 537.73 318.821C537.33 318.927 536.854 318.821 536.301 318.502ZM537.664 315.769C537.6 315.263 537.451 314.806 537.216 314.399C536.987 313.988 536.682 313.673 536.301 313.453C535.92 313.233 535.612 313.195 535.377 313.338C535.149 313.477 535.003 313.763 534.939 314.196L537.664 315.769ZM539.553 314.528L540.515 315.083L540.515 320.803L539.553 320.248L539.553 314.528ZM539.553 312.328L540.515 312.883L540.515 314.071L539.553 313.516L539.553 312.328ZM541.619 313.52L542.572 314.07L542.572 321.99L541.619 321.44L541.619 313.52ZM543.751 314.751L544.77 315.339L544.77 323.259L543.751 322.671L543.751 314.751ZM546.011 316.056L548.383 317.426C549.126 317.855 549.752 318.392 550.26 319.037C550.768 319.675 551.149 320.364 551.403 321.105C551.657 321.846 551.784 322.594 551.784 323.349C551.784 324.104 551.657 324.706 551.403 325.153C551.149 325.6 550.768 325.853 550.26 325.912C549.752 325.963 549.126 325.775 548.383 325.346L546.011 323.976L546.011 316.056ZM548.383 324.301C548.91 324.605 549.349 324.733 549.698 324.686C550.047 324.638 550.304 324.445 550.47 324.108C550.641 323.767 550.727 323.311 550.727 322.739C550.727 322.167 550.641 321.615 550.47 321.083C550.304 320.548 550.047 320.055 549.698 319.604C549.349 319.153 548.91 318.775 548.383 318.471L547.031 317.69L547.031 323.52L548.383 324.301Z" fill="#465358"/>
|
|
326
|
+
<path d="M692.305 129.852L690.143 128.603L690.143 127.162L695.878 130.473L695.878 131.914L693.715 130.666L693.715 137.145L692.305 136.331L692.305 129.852ZM698.067 139.79C697.521 139.474 697.083 139.071 696.753 138.58C696.422 138.081 696.257 137.557 696.257 137.007C696.257 136.669 696.324 136.425 696.457 136.275C696.597 136.121 696.807 136.051 697.086 136.066C697.372 136.084 697.74 136.18 698.191 136.352L699.601 136.88L699.601 136.583C699.601 136.326 699.534 136.097 699.401 135.896C699.268 135.694 699.048 135.505 698.744 135.329C698.458 135.164 698.226 135.1 698.048 135.137C697.877 135.177 697.788 135.335 697.781 135.61L696.495 134.867C696.502 134.225 696.711 133.859 697.124 133.767C697.543 133.672 698.08 133.813 698.734 134.191C699.439 134.598 699.969 135.054 700.325 135.56C700.687 136.07 700.868 136.596 700.868 137.139L700.868 141.275L699.639 140.565L699.639 139.927C699.436 140.081 699.204 140.145 698.944 140.12C698.69 140.09 698.397 139.98 698.067 139.79ZM698.391 138.899C698.607 139.023 698.804 139.093 698.982 139.108C699.166 139.126 699.315 139.073 699.429 138.948C699.544 138.823 699.601 138.618 699.601 138.332L699.601 137.848L698.439 137.452C698.134 137.342 697.915 137.304 697.781 137.337C697.648 137.362 697.581 137.489 697.581 137.716C697.581 137.936 697.648 138.151 697.781 138.36C697.921 138.565 698.124 138.745 698.391 138.899ZM701.733 136.054L702.991 136.78L702.991 137.594C703.156 137.396 703.359 137.283 703.601 137.253C703.842 137.224 704.131 137.306 704.467 137.501C704.81 137.699 705.106 137.961 705.353 138.287C705.601 138.614 705.792 138.988 705.925 139.409C706.109 139.193 706.338 139.068 706.611 139.035C706.89 138.999 707.208 139.083 707.563 139.288C707.906 139.486 708.202 139.748 708.449 140.075C708.703 140.405 708.897 140.781 709.031 141.202C709.164 141.624 709.231 142.069 709.231 142.539L709.231 146.103L707.935 145.355L707.935 141.967C707.935 141.615 707.868 141.294 707.735 141.004C707.602 140.715 707.398 140.491 707.125 140.333C706.852 140.176 706.617 140.15 706.42 140.256C706.23 140.366 706.135 140.674 706.135 141.18L706.135 144.315L704.839 143.567L704.839 140.179C704.839 139.827 704.769 139.505 704.629 139.211C704.496 138.922 704.296 138.7 704.029 138.546C703.75 138.384 703.512 138.357 703.315 138.463C703.124 138.573 703.029 138.881 703.029 139.387L703.029 142.522L701.733 141.774L701.733 136.054ZM713.018 142.438C713.482 142.705 713.879 143.063 714.209 143.51C714.539 143.958 714.79 144.458 714.962 145.012C715.133 145.558 715.219 146.121 715.219 146.7C715.219 147.272 715.133 147.736 714.962 148.092C714.79 148.44 714.539 148.651 714.209 148.724C713.879 148.79 713.482 148.689 713.018 148.422C712.688 148.231 712.396 147.993 712.142 147.707C711.894 147.417 711.685 147.091 711.513 146.728L711.513 149.621L710.218 148.873L710.218 140.953L711.475 141.679L711.475 142.438C711.647 142.251 711.859 142.154 712.113 142.146C712.368 142.139 712.669 142.236 713.018 142.438ZM712.695 143.483C712.428 143.329 712.206 143.274 712.028 143.318C711.85 143.354 711.717 143.479 711.628 143.692C711.539 143.904 711.494 144.19 711.494 144.55C711.494 144.909 711.539 145.246 711.628 145.562C711.717 145.87 711.85 146.148 712.028 146.398C712.206 146.647 712.428 146.849 712.695 147.003C712.968 147.16 713.193 147.217 713.371 147.173C713.549 147.129 713.679 147.003 713.762 146.794C713.85 146.581 713.895 146.295 713.895 145.936C713.895 145.576 713.85 145.239 713.762 144.924C713.679 144.612 713.549 144.335 713.371 144.093C713.193 143.844 712.968 143.64 712.695 143.483ZM718.272 151.455C717.764 151.161 717.319 150.776 716.938 150.3C716.563 149.819 716.278 149.299 716.081 148.738C715.884 148.169 715.785 147.599 715.785 147.027C715.785 146.455 715.884 145.999 716.081 145.658C716.278 145.317 716.563 145.126 716.938 145.086C717.319 145.049 717.764 145.177 718.272 145.471C718.786 145.768 719.231 146.153 719.605 146.626C719.98 147.091 720.263 147.618 720.453 148.204C720.65 148.787 720.749 149.394 720.749 150.025L720.749 150.355L717.071 148.232C717.103 148.536 717.17 148.82 717.271 149.084C717.379 149.345 717.516 149.581 717.681 149.794C717.853 150.003 718.049 150.171 718.272 150.3C718.551 150.461 718.783 150.533 718.967 150.514C719.158 150.492 719.304 150.393 719.405 150.217L720.663 150.943C720.498 151.427 720.206 151.721 719.786 151.823C719.374 151.922 718.869 151.799 718.272 151.455ZM719.453 148.573C719.389 148.14 719.256 147.755 719.053 147.418C718.85 147.073 718.589 146.809 718.272 146.626C717.948 146.439 717.684 146.4 717.481 146.51C717.278 146.613 717.144 146.844 717.081 147.203L719.453 148.573ZM721.53 147.484L722.788 148.21L722.788 149.2C722.946 148.918 723.15 148.767 723.397 148.749C723.645 148.723 723.934 148.806 724.264 148.996L724.664 149.227L724.664 150.602L724.207 150.338C723.915 150.17 723.667 150.082 723.464 150.074C723.261 150.06 723.102 150.148 722.988 150.338C722.88 150.525 722.826 150.832 722.826 151.257L722.826 153.952L721.53 153.204L721.53 147.484ZM727.598 148.787L732.694 151.729L732.694 153.17L728.988 151.031L728.988 152.769L732.418 154.749L732.418 156.124L728.988 154.144L728.988 156.069L732.675 158.197L732.675 159.638L727.598 156.707L727.598 148.787ZM733.009 154.111L734.409 154.92L735.629 159.925L736.829 156.317L738.22 157.12L736.362 161.767L734.876 160.909L733.009 154.111ZM738.75 157.426L740.045 158.174L740.045 163.894L738.75 163.146L738.75 157.426ZM738.75 155.226L740.045 155.974L740.045 157.305L738.75 156.557L738.75 155.226ZM743.02 165.743C742.557 165.476 742.16 165.118 741.83 164.671C741.499 164.216 741.248 163.716 741.077 163.169C740.905 162.616 740.82 162.053 740.82 161.481C740.82 160.901 740.905 160.438 741.077 160.089C741.248 159.734 741.499 159.523 741.83 159.457C742.16 159.391 742.557 159.492 743.02 159.759C743.351 159.95 743.64 160.186 743.887 160.469C744.141 160.755 744.354 161.079 744.525 161.442L744.525 158.56L745.821 159.308L745.821 167.228L744.564 166.502L744.564 165.743C744.392 165.93 744.179 166.027 743.925 166.035C743.671 166.042 743.37 165.945 743.02 165.743ZM743.344 164.698C743.611 164.852 743.833 164.907 744.011 164.863C744.189 164.819 744.322 164.695 744.411 164.489C744.5 164.277 744.544 163.991 744.544 163.631C744.544 163.272 744.5 162.935 744.411 162.619C744.322 162.304 744.189 162.025 744.011 161.783C743.833 161.534 743.611 161.332 743.344 161.178C743.071 161.021 742.846 160.964 742.668 161.008C742.49 161.044 742.357 161.169 742.268 161.382C742.185 161.598 742.144 161.886 742.144 162.245C742.144 162.605 742.185 162.94 742.268 163.252C742.357 163.56 742.49 163.838 742.668 164.088C742.846 164.337 743.071 164.541 743.344 164.698ZM749.083 169.244C748.575 168.95 748.131 168.565 747.75 168.089C747.375 167.608 747.089 167.088 746.892 166.527C746.695 165.958 746.597 165.388 746.597 164.816C746.597 164.244 746.695 163.788 746.892 163.447C747.089 163.106 747.375 162.915 747.75 162.875C748.131 162.838 748.575 162.966 749.083 163.26C749.598 163.557 750.042 163.942 750.417 164.415C750.792 164.88 751.074 165.407 751.265 165.993C751.462 166.576 751.56 167.183 751.56 167.814L751.56 168.144L747.883 166.021C747.915 166.325 747.981 166.609 748.083 166.873C748.191 167.134 748.327 167.37 748.493 167.583C748.664 167.792 748.861 167.96 749.083 168.089C749.363 168.25 749.594 168.322 749.779 168.303C749.969 168.281 750.115 168.182 750.217 168.006L751.474 168.732C751.309 169.216 751.017 169.51 750.598 169.612C750.185 169.711 749.68 169.588 749.083 169.244ZM750.265 166.362C750.201 165.929 750.068 165.544 749.864 165.207C749.661 164.862 749.401 164.598 749.083 164.415C748.759 164.228 748.496 164.189 748.293 164.299C748.089 164.402 747.956 164.633 747.892 164.992L750.265 166.362ZM752.342 165.273L753.599 165.999L753.599 166.78C753.783 166.608 754.006 166.516 754.266 166.505C754.526 166.487 754.825 166.575 755.162 166.769C755.536 166.985 755.854 167.26 756.114 167.594C756.381 167.924 756.581 168.3 756.714 168.722C756.854 169.147 756.924 169.598 756.924 170.075L756.924 173.639L755.638 172.896L755.638 169.508C755.638 169.149 755.565 168.824 755.419 168.535C755.273 168.238 755.041 167.997 754.723 167.814C754.546 167.711 754.374 167.66 754.209 167.66C754.05 167.656 753.914 167.728 753.799 167.875C753.691 168.025 753.637 168.269 753.637 168.606L753.637 171.741L752.342 170.993L752.342 165.273ZM759.848 175.327C759.537 175.147 759.28 174.958 759.076 174.76C758.873 174.555 758.711 174.307 758.591 174.018C758.476 173.732 758.419 173.391 758.419 172.995L758.419 169.915L757.562 169.42L757.562 168.287L758.419 168.782L758.419 167.022L759.715 167.77L759.715 169.53L760.953 170.245L760.953 171.378L759.715 170.663L759.715 173.589C759.715 173.772 759.75 173.928 759.82 174.056C759.889 174.177 760.01 174.287 760.182 174.386L760.953 174.832L760.953 175.965L759.848 175.327ZM690.572 138.41L691.962 139.213L691.962 142.975L695.078 141.011L696.811 142.012L694.058 143.635L696.811 149.933L695.144 148.97L693.106 144.207L691.962 144.867L691.962 147.133L690.572 146.33L690.572 138.41ZM697.38 144.541L698.637 145.267L698.637 146.048C698.821 145.875 699.044 145.784 699.304 145.773C699.564 145.754 699.863 145.842 700.199 146.037C700.574 146.253 700.892 146.528 701.152 146.862C701.419 147.192 701.619 147.567 701.752 147.989C701.892 148.414 701.962 148.865 701.962 149.342L701.962 152.906L700.676 152.164L700.676 148.776C700.676 148.416 700.603 148.092 700.457 147.802C700.311 147.505 700.079 147.265 699.761 147.082C699.583 146.979 699.412 146.928 699.247 146.928C699.088 146.924 698.951 146.995 698.837 147.142C698.729 147.292 698.675 147.536 698.675 147.874L698.675 151.009L697.38 150.261L697.38 144.541ZM705.277 154.952C704.756 154.651 704.302 154.261 703.914 153.78C703.533 153.296 703.241 152.772 703.038 152.207C702.841 151.639 702.743 151.069 702.743 150.497C702.743 149.925 702.841 149.468 703.038 149.127C703.241 148.79 703.533 148.603 703.914 148.566C704.302 148.533 704.756 148.667 705.277 148.968C705.804 149.272 706.258 149.663 706.639 150.139C707.026 150.62 707.318 151.144 707.515 151.712C707.712 152.281 707.81 152.851 707.81 153.423C707.81 153.995 707.712 154.451 707.515 154.792C707.318 155.126 707.026 155.313 706.639 155.353C706.258 155.39 705.804 155.256 705.277 154.952ZM705.277 153.72C705.556 153.881 705.785 153.94 705.962 153.896C706.147 153.856 706.28 153.731 706.363 153.522C706.451 153.309 706.496 153.023 706.496 152.664C706.496 152.305 706.451 151.967 706.363 151.652C706.28 151.34 706.147 151.062 705.962 150.816C705.785 150.567 705.556 150.361 705.277 150.2C705.003 150.042 704.775 149.984 704.591 150.024C704.413 150.061 704.279 150.185 704.191 150.398C704.102 150.611 704.057 150.897 704.057 151.256C704.057 151.615 704.102 151.953 704.191 152.268C704.279 152.576 704.413 152.855 704.591 153.104C704.775 153.357 705.003 153.562 705.277 153.72ZM708.142 150.754L709.542 151.563L710.609 156.106L711.562 152.729L712.791 153.438L713.743 157.915L714.81 154.604L716.211 155.413L714.486 160.137L713.134 159.356L712.181 154.956L711.219 158.251L709.866 157.47L708.142 150.754ZM716.748 153.523L718.044 154.271L718.044 162.191L716.748 161.443L716.748 153.523ZM721.314 164.211C720.806 163.918 720.361 163.533 719.98 163.056C719.605 162.576 719.32 162.055 719.123 161.494C718.926 160.926 718.827 160.356 718.827 159.784C718.827 159.212 718.926 158.755 719.123 158.414C719.32 158.073 719.605 157.882 719.98 157.842C720.361 157.805 720.806 157.934 721.314 158.227C721.828 158.524 722.273 158.909 722.647 159.382C723.022 159.848 723.305 160.374 723.495 160.961C723.692 161.544 723.791 162.15 723.791 162.781L723.791 163.111L720.113 160.988C720.145 161.292 720.212 161.577 720.314 161.841C720.421 162.101 720.558 162.337 720.723 162.55C720.895 162.759 721.091 162.928 721.314 163.056C721.593 163.217 721.825 163.289 722.009 163.271C722.2 163.249 722.346 163.15 722.447 162.974L723.705 163.7C723.54 164.184 723.248 164.477 722.828 164.58C722.416 164.679 721.911 164.556 721.314 164.211ZM722.495 161.329C722.432 160.896 722.298 160.511 722.095 160.174C721.892 159.829 721.631 159.565 721.314 159.382C720.99 159.195 720.726 159.157 720.523 159.267C720.32 159.369 720.186 159.6 720.123 159.96L722.495 161.329ZM726.563 167.242C726.1 166.974 725.703 166.617 725.372 166.169C725.042 165.715 724.791 165.214 724.62 164.668C724.448 164.114 724.363 163.551 724.363 162.979C724.363 162.4 724.448 161.936 724.62 161.588C724.791 161.232 725.042 161.021 725.372 160.955C725.703 160.889 726.1 160.99 726.563 161.258C726.894 161.448 727.182 161.685 727.43 161.967C727.684 162.253 727.897 162.578 728.068 162.941L728.068 160.059L729.364 160.807L729.364 168.727L728.107 168.001L728.107 167.242C727.935 167.429 727.722 167.526 727.468 167.533C727.214 167.541 726.913 167.443 726.563 167.242ZM726.887 166.197C727.154 166.351 727.376 166.406 727.554 166.362C727.732 166.318 727.865 166.193 727.954 165.988C728.043 165.775 728.087 165.489 728.087 165.13C728.087 164.77 728.043 164.433 727.954 164.118C727.865 163.802 727.732 163.524 727.554 163.282C727.376 163.032 727.154 162.831 726.887 162.677C726.614 162.519 726.389 162.462 726.211 162.506C726.033 162.543 725.9 162.668 725.811 162.88C725.728 163.097 725.687 163.384 725.687 163.744C725.687 164.103 725.728 164.439 725.811 164.75C725.9 165.058 726.033 165.337 726.211 165.586C726.389 165.836 726.614 166.039 726.887 166.197ZM732.598 172.926C731.899 172.522 731.356 172.029 730.969 171.446C730.581 170.863 730.369 170.245 730.33 169.593L731.607 170.33C731.639 170.649 731.743 170.929 731.921 171.171C732.105 171.417 732.347 171.626 732.645 171.798C732.995 172 733.28 172.066 733.503 171.996C733.731 171.938 733.846 171.659 733.846 171.16L733.846 170.467C733.674 170.625 733.461 170.7 733.207 170.693C732.96 170.682 732.671 170.581 732.34 170.39C731.877 170.123 731.48 169.769 731.15 169.329C730.819 168.889 730.569 168.403 730.397 167.871C730.226 167.332 730.14 166.784 730.14 166.227C730.14 165.662 730.226 165.213 730.397 164.879C730.569 164.538 730.819 164.338 731.15 164.28C731.48 164.221 731.877 164.326 732.34 164.593C732.683 164.791 732.982 165.037 733.236 165.33C733.496 165.627 733.712 165.965 733.884 166.342L733.884 165.616L735.141 166.342L735.141 171.908C735.141 172.458 735.03 172.852 734.808 173.091C734.585 173.336 734.284 173.441 733.903 173.404C733.522 173.368 733.087 173.208 732.598 172.926ZM732.664 169.4C732.931 169.554 733.153 169.613 733.331 169.576C733.509 169.532 733.642 169.411 733.731 169.213C733.82 169.008 733.865 168.729 733.865 168.377C733.865 168.025 733.82 167.695 733.731 167.387C733.642 167.079 733.509 166.804 733.331 166.562C733.153 166.313 732.931 166.111 732.664 165.957C732.391 165.8 732.166 165.743 731.988 165.787C731.81 165.823 731.677 165.944 731.588 166.15C731.505 166.359 731.464 166.639 731.464 166.991C731.464 167.343 731.505 167.671 731.588 167.976C731.677 168.276 731.81 168.551 731.988 168.801C732.166 169.043 732.391 169.243 732.664 169.4ZM738.403 174.078C737.895 173.784 737.451 173.399 737.07 172.923C736.695 172.442 736.409 171.922 736.212 171.361C736.015 170.792 735.917 170.222 735.917 169.65C735.917 169.078 736.015 168.622 736.212 168.281C736.409 167.94 736.695 167.749 737.07 167.709C737.451 167.672 737.895 167.8 738.403 168.094C738.918 168.391 739.362 168.776 739.737 169.249C740.112 169.714 740.394 170.241 740.585 170.827C740.782 171.41 740.88 172.017 740.88 172.648L740.88 172.978L737.203 170.855C737.235 171.159 737.302 171.443 737.403 171.707C737.511 171.968 737.648 172.204 737.813 172.417C737.984 172.626 738.181 172.794 738.403 172.923C738.683 173.084 738.915 173.156 739.099 173.137C739.289 173.115 739.435 173.016 739.537 172.84L740.794 173.566C740.629 174.05 740.337 174.344 739.918 174.446C739.505 174.545 739 174.422 738.403 174.078ZM739.585 171.196C739.521 170.763 739.388 170.378 739.185 170.041C738.981 169.696 738.721 169.432 738.403 169.249C738.08 169.062 737.816 169.023 737.613 169.133C737.409 169.236 737.276 169.467 737.213 169.826L739.585 171.196ZM746.822 178.938C746.155 178.553 745.577 178.036 745.088 177.387C744.599 176.738 744.224 176.03 743.964 175.264C743.71 174.494 743.583 173.731 743.583 172.976C743.583 172.213 743.713 171.599 743.973 171.133C744.24 170.664 744.631 170.398 745.145 170.336C745.666 170.27 746.288 170.446 747.012 170.864C747.603 171.205 748.124 171.627 748.574 172.129C749.025 172.631 749.391 173.179 749.67 173.773C749.949 174.36 750.13 174.956 750.213 175.561L748.794 174.741C748.692 174.25 748.486 173.783 748.174 173.339C747.863 172.895 747.476 172.54 747.012 172.272C746.568 172.015 746.196 171.922 745.898 171.991C745.599 172.054 745.38 172.246 745.24 172.569C745.101 172.892 745.031 173.306 745.031 173.812C745.031 174.311 745.101 174.802 745.24 175.286C745.38 175.77 745.599 176.219 745.898 176.633C746.196 177.04 746.568 177.372 747.012 177.629C747.508 177.915 747.908 177.996 748.212 177.871C748.517 177.739 748.73 177.436 748.851 176.963L746.726 175.737L746.726 174.439L750.299 176.501L750.299 180.813L749.27 180.219L749.27 178.844C749.041 179.196 748.724 179.387 748.317 179.416C747.917 179.442 747.419 179.283 746.822 178.938ZM751.263 175.65L752.52 176.376L752.52 177.366C752.679 177.084 752.882 176.933 753.13 176.915C753.377 176.889 753.666 176.972 753.997 177.162L754.397 177.393L754.397 178.768L753.939 178.504C753.647 178.336 753.4 178.248 753.196 178.24C752.993 178.226 752.834 178.314 752.72 178.504C752.612 178.691 752.558 178.998 752.558 179.423L752.558 182.118L751.263 181.37L751.263 175.65ZM756.676 184.627C756.13 184.312 755.692 183.909 755.362 183.417C755.031 182.919 754.866 182.394 754.866 181.844C754.866 181.507 754.933 181.263 755.066 181.113C755.206 180.959 755.415 180.889 755.695 180.904C755.981 180.922 756.349 181.018 756.8 181.19L758.21 181.718L758.21 181.421C758.21 181.164 758.143 180.935 758.01 180.733C757.876 180.532 757.657 180.343 757.353 180.167C757.067 180.002 756.835 179.938 756.657 179.974C756.486 180.015 756.397 180.172 756.39 180.447L755.104 179.705C755.111 179.063 755.32 178.697 755.733 178.605C756.152 178.51 756.689 178.651 757.343 179.028C758.048 179.435 758.578 179.892 758.934 180.398C759.296 180.908 759.477 181.434 759.477 181.976L759.477 186.112L758.248 185.403L758.248 184.765C758.045 184.919 757.813 184.983 757.553 184.957C757.299 184.928 757.006 184.818 756.676 184.627ZM757 183.736C757.216 183.861 757.413 183.931 757.591 183.945C757.775 183.964 757.924 183.911 758.038 183.786C758.153 183.661 758.21 183.456 758.21 183.17L758.21 182.686L757.048 182.29C756.743 182.18 756.524 182.141 756.39 182.174C756.257 182.2 756.19 182.327 756.19 182.554C756.19 182.774 756.257 182.988 756.39 183.197C756.53 183.403 756.733 183.582 757 183.736ZM763.143 182.377C763.607 182.645 764.004 183.002 764.334 183.45C764.664 183.897 764.915 184.398 765.086 184.951C765.258 185.498 765.344 186.06 765.344 186.64C765.344 187.212 765.258 187.676 765.086 188.031C764.915 188.38 764.664 188.59 764.334 188.664C764.004 188.73 763.607 188.629 763.143 188.361C762.813 188.171 762.521 187.932 762.267 187.646C762.019 187.357 761.809 187.03 761.638 186.667L761.638 189.56L760.342 188.812L760.342 180.892L761.6 181.618L761.6 182.377C761.771 182.19 761.984 182.093 762.238 182.086C762.492 182.078 762.794 182.176 763.143 182.377ZM762.819 183.422C762.552 183.268 762.33 183.213 762.152 183.257C761.975 183.294 761.841 183.419 761.752 183.631C761.663 183.844 761.619 184.13 761.619 184.489C761.619 184.849 761.663 185.186 761.752 185.501C761.841 185.809 761.975 186.088 762.152 186.337C762.33 186.587 762.552 186.788 762.819 186.942C763.092 187.1 763.318 187.157 763.496 187.113C763.673 187.069 763.804 186.942 763.886 186.733C763.975 186.521 764.019 186.235 764.019 185.875C764.019 185.516 763.975 185.179 763.886 184.863C763.804 184.552 763.673 184.275 763.496 184.033C763.318 183.783 763.092 183.58 762.819 183.422ZM766.12 182.028L767.415 182.776L767.415 185.702C767.599 185.544 767.818 185.461 768.072 185.454C768.326 185.447 768.615 185.537 768.939 185.724C769.314 185.94 769.632 186.215 769.892 186.549C770.159 186.879 770.359 187.254 770.492 187.676C770.632 188.101 770.702 188.552 770.702 189.029L770.702 192.593L769.416 191.851L769.416 188.463C769.416 188.103 769.343 187.779 769.196 187.489C769.05 187.192 768.819 186.952 768.501 186.769C768.323 186.666 768.152 186.615 767.987 186.615C767.828 186.611 767.691 186.682 767.577 186.829C767.469 186.979 767.415 187.223 767.415 187.561L767.415 190.696L766.12 189.948L766.12 182.028Z" fill="#5F52FF"/>
|
|
327
|
+
<path d="M529.305 270.852L527.143 269.603L527.143 268.162L532.878 271.473L532.878 272.914L530.715 271.666L530.715 278.145L529.305 277.331L529.305 270.852ZM535.067 280.79C534.521 280.474 534.083 280.071 533.753 279.58C533.422 279.081 533.257 278.557 533.257 278.007C533.257 277.669 533.324 277.425 533.457 277.275C533.597 277.121 533.807 277.051 534.086 277.066C534.372 277.084 534.74 277.18 535.191 277.352L536.601 277.88L536.601 277.583C536.601 277.326 536.534 277.097 536.401 276.896C536.268 276.694 536.048 276.505 535.744 276.329C535.458 276.164 535.226 276.1 535.048 276.137C534.877 276.177 534.788 276.335 534.781 276.61L533.495 275.867C533.502 275.225 533.711 274.859 534.124 274.767C534.543 274.672 535.08 274.813 535.734 275.191C536.439 275.598 536.969 276.054 537.325 276.56C537.687 277.07 537.868 277.596 537.868 278.139L537.868 282.275L536.639 281.565L536.639 280.927C536.436 281.081 536.204 281.145 535.944 281.12C535.69 281.09 535.397 280.98 535.067 280.79ZM535.391 279.899C535.607 280.023 535.804 280.093 535.982 280.108C536.166 280.126 536.315 280.073 536.429 279.948C536.544 279.823 536.601 279.618 536.601 279.332L536.601 278.848L535.439 278.452C535.134 278.342 534.915 278.304 534.781 278.337C534.648 278.362 534.581 278.489 534.581 278.716C534.581 278.936 534.648 279.151 534.781 279.36C534.921 279.565 535.124 279.745 535.391 279.899ZM538.733 277.054L539.991 277.78L539.991 278.594C540.156 278.396 540.359 278.283 540.601 278.253C540.842 278.224 541.131 278.306 541.467 278.501C541.81 278.699 542.106 278.961 542.353 279.287C542.601 279.614 542.792 279.988 542.925 280.409C543.109 280.193 543.338 280.068 543.611 280.035C543.89 279.999 544.208 280.083 544.563 280.288C544.906 280.486 545.202 280.748 545.449 281.075C545.703 281.405 545.897 281.781 546.031 282.202C546.164 282.624 546.231 283.069 546.231 283.539L546.231 287.103L544.935 286.355L544.935 282.967C544.935 282.615 544.868 282.294 544.735 282.004C544.602 281.715 544.398 281.491 544.125 281.333C543.852 281.176 543.617 281.15 543.42 281.256C543.23 281.366 543.135 281.674 543.135 282.18L543.135 285.315L541.839 284.567L541.839 281.179C541.839 280.827 541.769 280.505 541.629 280.211C541.496 279.922 541.296 279.7 541.029 279.546C540.75 279.384 540.512 279.357 540.315 279.463C540.124 279.573 540.029 279.881 540.029 280.387L540.029 283.522L538.733 282.774L538.733 277.054ZM550.018 283.438C550.482 283.705 550.879 284.063 551.209 284.51C551.539 284.958 551.79 285.458 551.962 286.012C552.133 286.558 552.219 287.121 552.219 287.7C552.219 288.272 552.133 288.736 551.962 289.092C551.79 289.44 551.539 289.651 551.209 289.724C550.879 289.79 550.482 289.689 550.018 289.422C549.688 289.231 549.396 288.993 549.142 288.707C548.894 288.417 548.685 288.091 548.513 287.728L548.513 290.621L547.218 289.873L547.218 281.953L548.475 282.679L548.475 283.438C548.647 283.251 548.859 283.154 549.113 283.146C549.368 283.139 549.669 283.236 550.018 283.438ZM549.695 284.483C549.428 284.329 549.206 284.274 549.028 284.318C548.85 284.354 548.717 284.479 548.628 284.692C548.539 284.904 548.494 285.19 548.494 285.55C548.494 285.909 548.539 286.246 548.628 286.562C548.717 286.87 548.85 287.148 549.028 287.398C549.206 287.647 549.428 287.849 549.695 288.003C549.968 288.16 550.193 288.217 550.371 288.173C550.549 288.129 550.679 288.003 550.762 287.794C550.85 287.581 550.895 287.295 550.895 286.936C550.895 286.576 550.85 286.239 550.762 285.924C550.679 285.612 550.549 285.335 550.371 285.093C550.193 284.844 549.968 284.64 549.695 284.483ZM555.272 292.455C554.764 292.161 554.319 291.776 553.938 291.3C553.563 290.819 553.278 290.299 553.081 289.738C552.884 289.169 552.785 288.599 552.785 288.027C552.785 287.455 552.884 286.999 553.081 286.658C553.278 286.317 553.563 286.126 553.938 286.086C554.319 286.049 554.764 286.177 555.272 286.471C555.786 286.768 556.231 287.153 556.605 287.626C556.98 288.091 557.263 288.618 557.453 289.204C557.65 289.787 557.749 290.394 557.749 291.025L557.749 291.355L554.071 289.232C554.103 289.536 554.17 289.82 554.271 290.084C554.379 290.345 554.516 290.581 554.681 290.794C554.853 291.003 555.049 291.171 555.272 291.3C555.551 291.461 555.783 291.533 555.967 291.514C556.158 291.492 556.304 291.393 556.405 291.217L557.663 291.943C557.498 292.427 557.206 292.721 556.786 292.823C556.374 292.922 555.869 292.799 555.272 292.455ZM556.453 289.573C556.389 289.14 556.256 288.755 556.053 288.418C555.85 288.073 555.589 287.809 555.272 287.626C554.948 287.439 554.684 287.4 554.481 287.51C554.278 287.613 554.144 287.844 554.081 288.203L556.453 289.573ZM558.53 288.484L559.788 289.21L559.788 290.2C559.946 289.918 560.15 289.767 560.397 289.749C560.645 289.723 560.934 289.806 561.264 289.996L561.664 290.227L561.664 291.602L561.207 291.338C560.915 291.17 560.667 291.082 560.464 291.074C560.261 291.06 560.102 291.148 559.988 291.338C559.88 291.525 559.826 291.832 559.826 292.257L559.826 294.952L558.53 294.204L558.53 288.484ZM564.598 289.787L569.694 292.729L569.694 294.17L565.988 292.031L565.988 293.769L569.418 295.749L569.418 297.124L565.988 295.144L565.988 297.069L569.675 299.197L569.675 300.638L564.598 297.707L564.598 289.787ZM570.009 295.111L571.409 295.92L572.629 300.925L573.829 297.317L575.22 298.12L573.362 302.767L571.876 301.909L570.009 295.111ZM575.75 298.426L577.045 299.174L577.045 304.894L575.75 304.146L575.75 298.426ZM575.75 296.226L577.045 296.974L577.045 298.305L575.75 297.557L575.75 296.226ZM580.02 306.743C579.557 306.476 579.16 306.118 578.83 305.671C578.499 305.216 578.248 304.716 578.077 304.169C577.905 303.616 577.82 303.053 577.82 302.481C577.82 301.901 577.905 301.438 578.077 301.089C578.248 300.734 578.499 300.523 578.83 300.457C579.16 300.391 579.557 300.492 580.02 300.759C580.351 300.95 580.64 301.186 580.887 301.469C581.141 301.755 581.354 302.079 581.525 302.442L581.525 299.56L582.821 300.308L582.821 308.228L581.564 307.502L581.564 306.743C581.392 306.93 581.179 307.027 580.925 307.035C580.671 307.042 580.37 306.945 580.02 306.743ZM580.344 305.698C580.611 305.852 580.833 305.907 581.011 305.863C581.189 305.819 581.322 305.695 581.411 305.489C581.5 305.277 581.544 304.991 581.544 304.631C581.544 304.272 581.5 303.935 581.411 303.619C581.322 303.304 581.189 303.025 581.011 302.783C580.833 302.534 580.611 302.332 580.344 302.178C580.071 302.021 579.846 301.964 579.668 302.008C579.49 302.044 579.357 302.169 579.268 302.382C579.185 302.598 579.144 302.886 579.144 303.245C579.144 303.605 579.185 303.94 579.268 304.252C579.357 304.56 579.49 304.838 579.668 305.088C579.846 305.337 580.071 305.541 580.344 305.698ZM586.083 310.244C585.575 309.95 585.131 309.565 584.75 309.089C584.375 308.608 584.089 308.088 583.892 307.527C583.695 306.958 583.597 306.388 583.597 305.816C583.597 305.244 583.695 304.788 583.892 304.447C584.089 304.106 584.375 303.915 584.75 303.875C585.131 303.838 585.575 303.966 586.083 304.26C586.598 304.557 587.042 304.942 587.417 305.415C587.792 305.88 588.074 306.407 588.265 306.993C588.462 307.576 588.56 308.183 588.56 308.814L588.56 309.144L584.883 307.021C584.915 307.325 584.981 307.609 585.083 307.873C585.191 308.134 585.327 308.37 585.493 308.583C585.664 308.792 585.861 308.96 586.083 309.089C586.363 309.25 586.594 309.322 586.779 309.303C586.969 309.281 587.115 309.182 587.217 309.006L588.474 309.732C588.309 310.216 588.017 310.51 587.598 310.612C587.185 310.711 586.68 310.588 586.083 310.244ZM587.265 307.362C587.201 306.929 587.068 306.544 586.864 306.207C586.661 305.862 586.401 305.598 586.083 305.415C585.759 305.228 585.496 305.189 585.293 305.299C585.089 305.402 584.956 305.633 584.892 305.992L587.265 307.362ZM589.342 306.273L590.599 306.999L590.599 307.78C590.783 307.608 591.006 307.516 591.266 307.505C591.526 307.487 591.825 307.575 592.162 307.769C592.536 307.985 592.854 308.26 593.114 308.594C593.381 308.924 593.581 309.3 593.714 309.722C593.854 310.147 593.924 310.598 593.924 311.075L593.924 314.639L592.638 313.896L592.638 310.508C592.638 310.149 592.565 309.824 592.419 309.535C592.273 309.238 592.041 308.997 591.723 308.814C591.546 308.711 591.374 308.66 591.209 308.66C591.05 308.656 590.914 308.728 590.799 308.875C590.691 309.025 590.637 309.269 590.637 309.606L590.637 312.741L589.342 311.993L589.342 306.273ZM596.848 316.327C596.537 316.147 596.28 315.958 596.076 315.76C595.873 315.555 595.711 315.307 595.591 315.018C595.476 314.732 595.419 314.391 595.419 313.995L595.419 310.915L594.562 310.42L594.562 309.287L595.419 309.782L595.419 308.022L596.715 308.77L596.715 310.53L597.953 311.245L597.953 312.378L596.715 311.663L596.715 314.589C596.715 314.772 596.75 314.928 596.82 315.056C596.889 315.177 597.01 315.287 597.182 315.386L597.953 315.832L597.953 316.965L596.848 316.327ZM527.572 279.41L528.962 280.213L528.962 283.975L532.078 282.011L533.811 283.012L531.058 284.635L533.811 290.933L532.144 289.97L530.106 285.207L528.962 285.867L528.962 288.133L527.572 287.33L527.572 279.41ZM534.38 285.541L535.637 286.267L535.637 287.048C535.821 286.875 536.044 286.784 536.304 286.773C536.564 286.754 536.863 286.842 537.199 287.037C537.574 287.253 537.892 287.528 538.152 287.862C538.419 288.192 538.619 288.567 538.752 288.989C538.892 289.414 538.962 289.865 538.962 290.342L538.962 293.906L537.676 293.164L537.676 289.776C537.676 289.416 537.603 289.092 537.457 288.802C537.311 288.505 537.079 288.265 536.761 288.082C536.583 287.979 536.412 287.928 536.247 287.928C536.088 287.924 535.951 287.995 535.837 288.142C535.729 288.292 535.675 288.536 535.675 288.874L535.675 292.009L534.38 291.261L534.38 285.541ZM542.277 295.952C541.756 295.651 541.302 295.261 540.914 294.78C540.533 294.296 540.241 293.772 540.038 293.207C539.841 292.639 539.743 292.069 539.743 291.497C539.743 290.925 539.841 290.468 540.038 290.127C540.241 289.79 540.533 289.603 540.914 289.566C541.302 289.533 541.756 289.667 542.277 289.968C542.804 290.272 543.258 290.663 543.639 291.139C544.026 291.62 544.318 292.144 544.515 292.712C544.712 293.281 544.81 293.851 544.81 294.423C544.81 294.995 544.712 295.451 544.515 295.792C544.318 296.126 544.026 296.313 543.639 296.353C543.258 296.39 542.804 296.256 542.277 295.952ZM542.277 294.72C542.556 294.881 542.785 294.94 542.962 294.896C543.147 294.856 543.28 294.731 543.363 294.522C543.451 294.309 543.496 294.023 543.496 293.664C543.496 293.305 543.451 292.967 543.363 292.652C543.28 292.34 543.147 292.062 542.962 291.816C542.785 291.567 542.556 291.361 542.277 291.2C542.003 291.042 541.775 290.984 541.591 291.024C541.413 291.061 541.279 291.185 541.191 291.398C541.102 291.611 541.057 291.897 541.057 292.256C541.057 292.615 541.102 292.953 541.191 293.268C541.279 293.576 541.413 293.855 541.591 294.104C541.775 294.357 542.003 294.562 542.277 294.72ZM545.142 291.754L546.542 292.563L547.609 297.106L548.562 293.729L549.791 294.438L550.743 298.915L551.81 295.604L553.211 296.413L551.486 301.137L550.134 300.356L549.181 295.956L548.219 299.251L546.866 298.47L545.142 291.754ZM553.748 294.523L555.044 295.271L555.044 303.191L553.748 302.443L553.748 294.523ZM558.314 305.211C557.806 304.918 557.361 304.533 556.98 304.056C556.605 303.576 556.32 303.055 556.123 302.494C555.926 301.926 555.827 301.356 555.827 300.784C555.827 300.212 555.926 299.755 556.123 299.414C556.32 299.073 556.605 298.882 556.98 298.842C557.361 298.805 557.806 298.934 558.314 299.227C558.828 299.524 559.273 299.909 559.647 300.382C560.022 300.848 560.305 301.374 560.495 301.961C560.692 302.544 560.791 303.15 560.791 303.781L560.791 304.111L557.113 301.988C557.145 302.292 557.212 302.577 557.314 302.841C557.421 303.101 557.558 303.337 557.723 303.55C557.895 303.759 558.091 303.928 558.314 304.056C558.593 304.217 558.825 304.289 559.009 304.271C559.2 304.249 559.346 304.15 559.447 303.974L560.705 304.7C560.54 305.184 560.248 305.477 559.828 305.58C559.416 305.679 558.911 305.556 558.314 305.211ZM559.495 302.329C559.432 301.896 559.298 301.511 559.095 301.174C558.892 300.829 558.631 300.565 558.314 300.382C557.99 300.195 557.726 300.157 557.523 300.267C557.32 300.369 557.186 300.6 557.123 300.96L559.495 302.329ZM563.563 308.242C563.1 307.974 562.703 307.617 562.372 307.169C562.042 306.715 561.791 306.214 561.62 305.668C561.448 305.114 561.363 304.551 561.363 303.979C561.363 303.4 561.448 302.936 561.62 302.588C561.791 302.232 562.042 302.021 562.372 301.955C562.703 301.889 563.1 301.99 563.563 302.258C563.894 302.448 564.182 302.685 564.43 302.967C564.684 303.253 564.897 303.578 565.068 303.941L565.068 301.059L566.364 301.807L566.364 309.727L565.107 309.001L565.107 308.242C564.935 308.429 564.722 308.526 564.468 308.533C564.214 308.541 563.913 308.443 563.563 308.242ZM563.887 307.197C564.154 307.351 564.376 307.406 564.554 307.362C564.732 307.318 564.865 307.193 564.954 306.988C565.043 306.775 565.087 306.489 565.087 306.13C565.087 305.77 565.043 305.433 564.954 305.118C564.865 304.802 564.732 304.524 564.554 304.282C564.376 304.032 564.154 303.831 563.887 303.677C563.614 303.519 563.389 303.462 563.211 303.506C563.033 303.543 562.9 303.668 562.811 303.88C562.728 304.097 562.687 304.384 562.687 304.744C562.687 305.103 562.728 305.439 562.811 305.75C562.9 306.058 563.033 306.337 563.211 306.586C563.389 306.836 563.614 307.039 563.887 307.197ZM569.598 313.926C568.899 313.522 568.356 313.029 567.969 312.446C567.581 311.863 567.369 311.245 567.33 310.593L568.607 311.33C568.639 311.649 568.743 311.929 568.921 312.171C569.105 312.417 569.347 312.626 569.645 312.798C569.995 313 570.28 313.066 570.503 312.996C570.731 312.938 570.846 312.659 570.846 312.16L570.846 311.467C570.674 311.625 570.461 311.7 570.207 311.693C569.96 311.682 569.671 311.581 569.34 311.39C568.877 311.123 568.48 310.769 568.15 310.329C567.819 309.889 567.569 309.403 567.397 308.871C567.226 308.332 567.14 307.784 567.14 307.227C567.14 306.662 567.226 306.213 567.397 305.879C567.569 305.538 567.819 305.338 568.15 305.28C568.48 305.221 568.877 305.326 569.34 305.593C569.683 305.791 569.982 306.037 570.236 306.33C570.496 306.627 570.712 306.965 570.884 307.342L570.884 306.616L572.141 307.342L572.141 312.908C572.141 313.458 572.03 313.852 571.808 314.091C571.585 314.336 571.284 314.441 570.903 314.404C570.522 314.368 570.087 314.208 569.598 313.926ZM569.664 310.4C569.931 310.554 570.153 310.613 570.331 310.576C570.509 310.532 570.642 310.411 570.731 310.213C570.82 310.008 570.865 309.729 570.865 309.377C570.865 309.025 570.82 308.695 570.731 308.387C570.642 308.079 570.509 307.804 570.331 307.562C570.153 307.313 569.931 307.111 569.664 306.957C569.391 306.8 569.166 306.743 568.988 306.787C568.81 306.823 568.677 306.944 568.588 307.15C568.505 307.359 568.464 307.639 568.464 307.991C568.464 308.343 568.505 308.671 568.588 308.976C568.677 309.276 568.81 309.551 568.988 309.801C569.166 310.043 569.391 310.243 569.664 310.4ZM575.403 315.078C574.895 314.784 574.451 314.399 574.07 313.923C573.695 313.442 573.409 312.922 573.212 312.361C573.015 311.792 572.917 311.222 572.917 310.65C572.917 310.078 573.015 309.622 573.212 309.281C573.409 308.94 573.695 308.749 574.07 308.709C574.451 308.672 574.895 308.8 575.403 309.094C575.918 309.391 576.362 309.776 576.737 310.249C577.112 310.714 577.394 311.241 577.585 311.827C577.782 312.41 577.88 313.017 577.88 313.648L577.88 313.978L574.203 311.855C574.235 312.159 574.302 312.443 574.403 312.707C574.511 312.968 574.648 313.204 574.813 313.417C574.984 313.626 575.181 313.794 575.403 313.923C575.683 314.084 575.915 314.156 576.099 314.137C576.289 314.115 576.435 314.016 576.537 313.84L577.794 314.566C577.629 315.05 577.337 315.344 576.918 315.446C576.505 315.545 576 315.422 575.403 315.078ZM576.585 312.196C576.521 311.763 576.388 311.378 576.185 311.041C575.981 310.696 575.721 310.432 575.403 310.249C575.08 310.062 574.816 310.023 574.613 310.133C574.409 310.236 574.276 310.467 574.213 310.826L576.585 312.196ZM583.822 319.938C583.155 319.553 582.577 319.036 582.088 318.387C581.599 317.738 581.224 317.03 580.964 316.264C580.71 315.494 580.583 314.731 580.583 313.976C580.583 313.213 580.713 312.599 580.973 312.133C581.24 311.664 581.631 311.398 582.145 311.336C582.666 311.27 583.288 311.446 584.012 311.864C584.603 312.205 585.124 312.627 585.574 313.129C586.025 313.631 586.391 314.179 586.67 314.773C586.949 315.36 587.13 315.956 587.213 316.561L585.794 315.741C585.692 315.25 585.486 314.783 585.174 314.339C584.863 313.895 584.476 313.54 584.012 313.272C583.568 313.015 583.196 312.922 582.898 312.991C582.599 313.054 582.38 313.246 582.24 313.569C582.101 313.892 582.031 314.306 582.031 314.812C582.031 315.311 582.101 315.802 582.24 316.286C582.38 316.77 582.599 317.219 582.898 317.633C583.196 318.04 583.568 318.372 584.012 318.629C584.508 318.915 584.908 318.996 585.212 318.871C585.517 318.739 585.73 318.436 585.851 317.963L583.726 316.737L583.726 315.439L587.299 317.501L587.299 321.813L586.27 321.219L586.27 319.844C586.041 320.196 585.724 320.387 585.317 320.416C584.917 320.442 584.419 320.283 583.822 319.938ZM588.263 316.65L589.52 317.376L589.52 318.366C589.679 318.084 589.882 317.933 590.13 317.915C590.377 317.889 590.666 317.972 590.997 318.162L591.397 318.393L591.397 319.768L590.939 319.504C590.647 319.336 590.4 319.248 590.196 319.24C589.993 319.226 589.834 319.314 589.72 319.504C589.612 319.691 589.558 319.998 589.558 320.423L589.558 323.118L588.263 322.37L588.263 316.65ZM593.676 325.627C593.13 325.312 592.692 324.909 592.362 324.417C592.031 323.919 591.866 323.394 591.866 322.844C591.866 322.507 591.933 322.263 592.066 322.113C592.206 321.959 592.415 321.889 592.695 321.904C592.981 321.922 593.349 322.018 593.8 322.19L595.21 322.718L595.21 322.421C595.21 322.164 595.143 321.935 595.01 321.733C594.876 321.532 594.657 321.343 594.353 321.167C594.067 321.002 593.835 320.938 593.657 320.974C593.486 321.015 593.397 321.172 593.39 321.447L592.104 320.705C592.111 320.063 592.32 319.697 592.733 319.605C593.152 319.51 593.689 319.651 594.343 320.028C595.048 320.435 595.578 320.892 595.934 321.398C596.296 321.908 596.477 322.434 596.477 322.976L596.477 327.112L595.248 326.403L595.248 325.765C595.045 325.919 594.813 325.983 594.553 325.957C594.299 325.928 594.006 325.818 593.676 325.627ZM594 324.736C594.216 324.861 594.413 324.931 594.591 324.945C594.775 324.964 594.924 324.911 595.038 324.786C595.153 324.661 595.21 324.456 595.21 324.17L595.21 323.686L594.048 323.29C593.743 323.18 593.524 323.141 593.39 323.174C593.257 323.2 593.19 323.327 593.19 323.554C593.19 323.774 593.257 323.988 593.39 324.197C593.53 324.403 593.733 324.582 594 324.736ZM600.143 323.377C600.607 323.645 601.004 324.002 601.334 324.45C601.664 324.897 601.915 325.398 602.086 325.951C602.258 326.498 602.344 327.06 602.344 327.64C602.344 328.212 602.258 328.676 602.086 329.031C601.915 329.38 601.664 329.59 601.334 329.664C601.004 329.73 600.607 329.629 600.143 329.361C599.813 329.171 599.521 328.932 599.267 328.646C599.019 328.357 598.809 328.03 598.638 327.667L598.638 330.56L597.342 329.812L597.342 321.892L598.6 322.618L598.6 323.377C598.771 323.19 598.984 323.093 599.238 323.086C599.492 323.078 599.794 323.176 600.143 323.377ZM599.819 324.422C599.552 324.268 599.33 324.213 599.152 324.257C598.975 324.294 598.841 324.419 598.752 324.631C598.663 324.844 598.619 325.13 598.619 325.489C598.619 325.849 598.663 326.186 598.752 326.501C598.841 326.809 598.975 327.088 599.152 327.337C599.33 327.587 599.552 327.788 599.819 327.942C600.092 328.1 600.318 328.157 600.496 328.113C600.673 328.069 600.804 327.942 600.886 327.733C600.975 327.521 601.019 327.235 601.019 326.875C601.019 326.516 600.975 326.179 600.886 325.863C600.804 325.552 600.673 325.275 600.496 325.033C600.318 324.783 600.092 324.58 599.819 324.422ZM603.12 323.028L604.415 323.776L604.415 326.702C604.599 326.544 604.818 326.461 605.072 326.454C605.326 326.447 605.615 326.537 605.939 326.724C606.314 326.94 606.632 327.215 606.892 327.549C607.159 327.879 607.359 328.254 607.492 328.676C607.632 329.101 607.702 329.552 607.702 330.029L607.702 333.593L606.416 332.851L606.416 329.463C606.416 329.103 606.343 328.779 606.196 328.489C606.05 328.192 605.819 327.952 605.501 327.769C605.323 327.666 605.152 327.615 604.987 327.615C604.828 327.611 604.691 327.682 604.577 327.829C604.469 327.979 604.415 328.223 604.415 328.561L604.415 331.696L603.12 330.948L603.12 323.028ZM529.02 295.844L527.333 294.87L527.333 293.583L529.02 294.557L529.02 292.621L530.134 293.264L530.134 295.2L531.811 296.168L531.811 297.455L530.134 296.487L530.134 298.435L529.02 297.791L529.02 295.844ZM537.99 304.477C537.266 304.059 536.644 303.52 536.123 302.86C535.609 302.197 535.218 301.476 534.951 300.699C534.691 299.925 534.561 299.161 534.561 298.405C534.561 297.643 534.691 297.028 534.951 296.563C535.218 296.093 535.609 295.828 536.123 295.765C536.644 295.699 537.266 295.875 537.99 296.293C538.549 296.616 539.048 297.028 539.486 297.531C539.924 298.033 540.277 298.585 540.543 299.186C540.81 299.788 540.985 300.394 541.067 301.007L539.657 300.193C539.594 299.855 539.486 299.529 539.333 299.214C539.187 298.902 538.997 298.616 538.762 298.356C538.533 298.099 538.276 297.888 537.99 297.723C537.546 297.467 537.174 297.369 536.876 297.432C536.577 297.494 536.358 297.687 536.218 298.009C536.079 298.325 536.009 298.735 536.009 299.241C536.009 299.74 536.079 300.231 536.218 300.715C536.358 301.192 536.577 301.637 536.876 302.052C537.174 302.459 537.546 302.791 537.99 303.047C538.301 303.227 538.574 303.311 538.809 303.3C539.044 303.289 539.235 303.198 539.381 303.025C539.533 302.857 539.635 302.622 539.686 302.321L541.086 303.13C541.023 303.687 540.858 304.127 540.591 304.45C540.33 304.776 539.975 304.945 539.524 304.956C539.079 304.97 538.568 304.811 537.99 304.477ZM544.193 308.058C543.672 307.758 543.218 307.367 542.831 306.887C542.45 306.403 542.157 305.879 541.954 305.314C541.757 304.746 541.659 304.175 541.659 303.603C541.659 303.031 541.757 302.575 541.954 302.234C542.157 301.897 542.45 301.71 542.831 301.673C543.218 301.64 543.672 301.774 544.193 302.074C544.72 302.379 545.174 302.769 545.555 303.246C545.943 303.726 546.235 304.251 546.432 304.819C546.628 305.387 546.727 305.957 546.727 306.529C546.727 307.101 546.628 307.558 546.432 307.899C546.235 308.233 545.943 308.42 545.555 308.46C545.174 308.497 544.72 308.363 544.193 308.058ZM544.193 306.826C544.472 306.988 544.701 307.046 544.879 307.002C545.063 306.962 545.196 306.837 545.279 306.628C545.368 306.416 545.412 306.13 545.412 305.77C545.412 305.411 545.368 305.074 545.279 304.758C545.196 304.447 545.063 304.168 544.879 303.922C544.701 303.673 544.472 303.468 544.193 303.306C543.92 303.149 543.691 303.09 543.507 303.13C543.329 303.167 543.196 303.292 543.107 303.504C543.018 303.717 542.974 304.003 542.974 304.362C542.974 304.722 543.018 305.059 543.107 305.374C543.196 305.682 543.329 305.961 543.507 306.21C543.691 306.463 543.92 306.669 544.193 306.826ZM547.506 304.119L548.764 304.845L548.764 305.659C548.929 305.461 549.132 305.348 549.373 305.318C549.615 305.289 549.904 305.371 550.24 305.566C550.583 305.764 550.878 306.026 551.126 306.352C551.374 306.679 551.564 307.053 551.698 307.474C551.882 307.258 552.111 307.133 552.384 307.1C552.663 307.064 552.981 307.148 553.336 307.353C553.679 307.551 553.974 307.813 554.222 308.14C554.476 308.47 554.67 308.846 554.803 309.267C554.937 309.689 555.003 310.134 555.003 310.604L555.003 314.168L553.708 313.42L553.708 310.032C553.708 309.68 553.641 309.359 553.508 309.069C553.374 308.78 553.171 308.556 552.898 308.398C552.625 308.241 552.39 308.215 552.193 308.321C552.003 308.431 551.907 308.739 551.907 309.245L551.907 312.38L550.612 311.632L550.612 308.244C550.612 307.892 550.542 307.57 550.402 307.276C550.269 306.987 550.069 306.765 549.802 306.611C549.523 306.449 549.284 306.422 549.087 306.528C548.897 306.638 548.802 306.946 548.802 307.452L548.802 310.587L547.506 309.839L547.506 304.119ZM555.99 309.018L557.248 309.744L557.248 310.558C557.413 310.36 557.616 310.246 557.858 310.217C558.099 310.187 558.388 310.27 558.725 310.464C559.067 310.662 559.363 310.924 559.61 311.251C559.858 311.577 560.049 311.951 560.182 312.373C560.366 312.156 560.595 312.032 560.868 311.999C561.147 311.962 561.465 312.046 561.821 312.252C562.164 312.45 562.459 312.712 562.707 313.038C562.961 313.368 563.154 313.744 563.288 314.166C563.421 314.587 563.488 315.033 563.488 315.502L563.488 319.066L562.192 318.318L562.192 314.93C562.192 314.578 562.125 314.257 561.992 313.968C561.859 313.678 561.655 313.454 561.382 313.297C561.109 313.139 560.874 313.113 560.677 313.22C560.487 313.33 560.392 313.638 560.392 314.144L560.392 317.279L559.096 316.531L559.096 313.143C559.096 312.791 559.026 312.468 558.886 312.175C558.753 311.885 558.553 311.663 558.286 311.509C558.007 311.348 557.769 311.32 557.572 311.427C557.381 311.537 557.286 311.845 557.286 312.351L557.286 315.486L555.99 314.738L555.99 309.018ZM569.057 322.282L567.799 321.556L567.799 320.775C567.615 320.947 567.393 321.042 567.133 321.061C566.872 321.072 566.574 320.98 566.237 320.786C565.862 320.569 565.542 320.296 565.275 319.966C565.015 319.632 564.815 319.253 564.675 318.828C564.542 318.406 564.475 317.957 564.475 317.48L564.475 313.916L565.761 314.659L565.761 318.047C565.761 318.406 565.834 318.734 565.98 319.031C566.126 319.321 566.358 319.557 566.675 319.741C566.853 319.843 567.022 319.896 567.18 319.9C567.345 319.9 567.482 319.825 567.59 319.675C567.704 319.528 567.761 319.286 567.761 318.949L567.761 315.814L569.057 316.562L569.057 322.282ZM570.047 317.133L571.305 317.859L571.305 318.64C571.489 318.468 571.711 318.376 571.972 318.365C572.232 318.347 572.531 318.435 572.867 318.629C573.242 318.846 573.559 319.121 573.82 319.454C574.086 319.784 574.287 320.16 574.42 320.582C574.56 321.007 574.629 321.458 574.629 321.935L574.629 325.499L573.343 324.756L573.343 321.368C573.343 321.009 573.27 320.685 573.124 320.395C572.978 320.098 572.746 319.858 572.429 319.674C572.251 319.572 572.08 319.52 571.914 319.52C571.756 319.517 571.619 319.588 571.505 319.735C571.397 319.885 571.343 320.129 571.343 320.466L571.343 323.601L570.047 322.853L570.047 317.133ZM575.61 320.345L576.906 321.093L576.906 326.813L575.61 326.065L575.61 320.345ZM575.61 318.145L576.906 318.893L576.906 320.224L575.61 319.476L575.61 318.145ZM580.167 328.828C579.658 328.534 579.217 328.151 578.842 327.678C578.474 327.202 578.191 326.683 577.995 326.122C577.798 325.553 577.699 324.983 577.699 324.411C577.699 323.839 577.798 323.383 577.995 323.042C578.191 322.701 578.474 322.508 578.842 322.464C579.217 322.424 579.658 322.55 580.167 322.844C580.846 323.236 581.386 323.746 581.786 324.373C582.186 325 582.424 325.673 582.5 326.391L581.205 325.643C581.148 325.31 581.027 325.005 580.843 324.73C580.665 324.452 580.44 324.233 580.167 324.076C579.913 323.929 579.7 323.88 579.528 323.927C579.357 323.968 579.227 324.094 579.138 324.307C579.055 324.523 579.014 324.811 579.014 325.17C579.014 325.53 579.055 325.865 579.138 326.177C579.227 326.485 579.357 326.762 579.528 327.007C579.7 327.253 579.913 327.449 580.167 327.596C580.452 327.761 580.684 327.803 580.862 327.722C581.046 327.645 581.16 327.451 581.205 327.139L582.5 327.887C582.424 328.54 582.183 328.958 581.776 329.141C581.37 329.317 580.833 329.213 580.167 328.828ZM584.755 331.477C584.208 331.161 583.77 330.758 583.44 330.267C583.11 329.768 582.945 329.244 582.945 328.694C582.945 328.356 583.011 328.112 583.145 327.962C583.284 327.808 583.494 327.738 583.773 327.753C584.059 327.771 584.427 327.867 584.878 328.039L586.288 328.567L586.288 328.27C586.288 328.013 586.222 327.784 586.088 327.583C585.955 327.381 585.736 327.192 585.431 327.016C585.145 326.851 584.913 326.787 584.736 326.824C584.564 326.864 584.475 327.022 584.469 327.297L583.183 326.554C583.189 325.912 583.399 325.546 583.811 325.454C584.231 325.359 584.767 325.5 585.421 325.878C586.126 326.285 586.657 326.741 587.012 327.247C587.374 327.757 587.555 328.283 587.555 328.826L587.555 332.962L586.326 332.252L586.326 331.614C586.123 331.768 585.891 331.832 585.631 331.807C585.377 331.777 585.085 331.667 584.755 331.477ZM585.078 330.586C585.294 330.71 585.491 330.78 585.669 330.795C585.853 330.813 586.002 330.76 586.117 330.635C586.231 330.51 586.288 330.305 586.288 330.019L586.288 329.535L585.126 329.139C584.821 329.029 584.602 328.991 584.469 329.024C584.335 329.049 584.269 329.176 584.269 329.403C584.269 329.623 584.335 329.838 584.469 330.047C584.608 330.252 584.812 330.432 585.078 330.586ZM590.355 334.578C590.043 334.398 589.786 334.209 589.583 334.011C589.38 333.806 589.218 333.558 589.097 333.269C588.983 332.983 588.926 332.642 588.926 332.246L588.926 329.166L588.068 328.671L588.068 327.538L588.926 328.033L588.926 326.273L590.221 327.021L590.221 328.781L591.46 329.496L591.46 330.629L590.221 329.914L590.221 332.84C590.221 333.023 590.256 333.179 590.326 333.307C590.396 333.428 590.517 333.538 590.688 333.637L591.46 334.083L591.46 335.216L590.355 334.578ZM592.188 329.916L593.484 330.664L593.484 336.384L592.188 335.636L592.188 329.916ZM592.188 327.716L593.484 328.464L593.484 329.795L592.188 329.047L592.188 327.716ZM596.792 338.427C596.271 338.126 595.817 337.735 595.43 337.255C595.049 336.771 594.757 336.247 594.553 335.682C594.357 335.114 594.258 334.544 594.258 333.972C594.258 333.4 594.357 332.943 594.553 332.602C594.757 332.265 595.049 332.078 595.43 332.041C595.817 332.008 596.271 332.142 596.792 332.443C597.319 332.747 597.773 333.137 598.154 333.614C598.542 334.094 598.834 334.619 599.031 335.187C599.228 335.755 599.326 336.326 599.326 336.898C599.326 337.47 599.228 337.926 599.031 338.267C598.834 338.601 598.542 338.788 598.154 338.828C597.773 338.865 597.319 338.731 596.792 338.427ZM596.792 337.195C597.072 337.356 597.3 337.415 597.478 337.371C597.662 337.33 597.796 337.206 597.878 336.997C597.967 336.784 598.011 336.498 598.011 336.139C598.011 335.779 597.967 335.442 597.878 335.127C597.796 334.815 597.662 334.536 597.478 334.291C597.3 334.041 597.072 333.836 596.792 333.675C596.519 333.517 596.29 333.458 596.106 333.499C595.928 333.535 595.795 333.66 595.706 333.873C595.617 334.085 595.573 334.371 595.573 334.731C595.573 335.09 595.617 335.427 595.706 335.743C595.795 336.051 595.928 336.329 596.106 336.579C596.29 336.832 596.519 337.037 596.792 337.195ZM600.105 334.487L601.363 335.213L601.363 335.994C601.547 335.822 601.769 335.73 602.03 335.719C602.29 335.701 602.589 335.789 602.925 335.983C603.3 336.2 603.617 336.475 603.878 336.808C604.144 337.138 604.345 337.514 604.478 337.936C604.618 338.361 604.687 338.812 604.687 339.289L604.687 342.853L603.401 342.11L603.401 338.722C603.401 338.363 603.328 338.039 603.182 337.749C603.036 337.452 602.804 337.212 602.487 337.028C602.309 336.926 602.138 336.874 601.972 336.874C601.814 336.871 601.677 336.942 601.563 337.089C601.455 337.239 601.401 337.483 601.401 337.82L601.401 340.955L600.105 340.207L600.105 334.487ZM607.659 344.701C606.954 344.294 606.402 343.813 606.002 343.26C605.608 342.71 605.392 342.075 605.354 341.357L606.611 342.083C606.643 342.453 606.748 342.763 606.926 343.012C607.11 343.265 607.37 343.489 607.707 343.683C607.98 343.841 608.199 343.912 608.364 343.898C608.529 343.876 608.612 343.766 608.612 343.568C608.612 343.428 608.587 343.304 608.536 343.194C608.485 343.084 608.377 342.948 608.212 342.787C608.053 342.622 607.805 342.413 607.469 342.16C606.961 341.764 606.561 341.401 606.268 341.071C605.976 340.741 605.767 340.425 605.64 340.125C605.519 339.828 605.459 339.514 605.459 339.184C605.459 338.642 605.649 338.326 606.03 338.238C606.411 338.15 606.923 338.291 607.564 338.662C608.275 339.072 608.818 339.562 609.193 340.13C609.568 340.691 609.761 341.28 609.774 341.896L608.574 341.203C608.567 340.854 608.472 340.561 608.288 340.323C608.104 340.084 607.863 339.879 607.564 339.707C607.316 339.564 607.113 339.501 606.954 339.52C606.802 339.542 606.726 339.648 606.726 339.839C606.726 339.978 606.757 340.11 606.821 340.235C606.891 340.356 607.008 340.497 607.173 340.658C607.345 340.816 607.596 341.019 607.926 341.269C608.428 341.654 608.822 342.009 609.107 342.336C609.393 342.655 609.596 342.966 609.717 343.271C609.838 343.568 609.898 343.881 609.898 344.211C609.898 344.776 609.692 345.097 609.279 345.174C608.872 345.247 608.332 345.089 607.659 344.701Z" fill="#5F52FF"/>
|
|
328
|
+
<path d="M1192.72 468.277C1191.99 467.859 1191.37 467.32 1190.85 466.66C1190.33 465.996 1189.94 465.276 1189.68 464.498C1189.42 463.725 1189.29 462.96 1189.29 462.205C1189.29 461.442 1189.42 460.828 1189.68 460.362C1189.94 459.893 1190.33 459.627 1190.85 459.565C1191.37 459.499 1191.99 459.675 1192.72 460.093C1193.27 460.416 1193.77 460.828 1194.21 461.331C1194.65 461.833 1195 462.385 1195.27 462.986C1195.54 463.587 1195.71 464.194 1195.79 464.806L1194.38 463.992C1194.32 463.655 1194.21 463.329 1194.06 463.014C1193.91 462.702 1193.72 462.416 1193.49 462.155C1193.26 461.899 1193 461.688 1192.72 461.523C1192.27 461.266 1191.9 461.169 1191.6 461.231C1191.3 461.294 1191.08 461.486 1190.94 461.809C1190.8 462.124 1190.73 462.535 1190.73 463.041C1190.73 463.54 1190.8 464.031 1190.94 464.515C1191.08 464.992 1191.3 465.437 1191.6 465.851C1191.9 466.259 1192.27 466.59 1192.72 466.847C1193.03 467.027 1193.3 467.111 1193.53 467.1C1193.77 467.089 1193.96 466.997 1194.11 466.825C1194.26 466.656 1194.36 466.422 1194.41 466.121L1195.81 466.93C1195.75 467.487 1195.58 467.927 1195.32 468.25C1195.06 468.576 1194.7 468.745 1194.25 468.755C1193.8 468.77 1193.29 468.611 1192.72 468.277ZM1198.92 471.858C1198.4 471.557 1197.94 471.167 1197.56 470.687C1197.17 470.203 1196.88 469.678 1196.68 469.114C1196.48 468.545 1196.38 467.975 1196.38 467.403C1196.38 466.831 1196.48 466.375 1196.68 466.034C1196.88 465.696 1197.17 465.509 1197.56 465.473C1197.94 465.44 1198.4 465.573 1198.92 465.874C1199.45 466.178 1199.9 466.569 1200.28 467.046C1200.67 467.526 1200.96 468.05 1201.16 468.619C1201.35 469.187 1201.45 469.757 1201.45 470.329C1201.45 470.901 1201.35 471.358 1201.16 471.699C1200.96 472.032 1200.67 472.219 1200.28 472.26C1199.9 472.296 1199.45 472.162 1198.92 471.858ZM1198.92 470.626C1199.2 470.787 1199.43 470.846 1199.6 470.802C1199.79 470.762 1199.92 470.637 1200 470.428C1200.09 470.215 1200.14 469.929 1200.14 469.57C1200.14 469.211 1200.09 468.873 1200 468.558C1199.92 468.246 1199.79 467.968 1199.6 467.722C1199.43 467.473 1199.2 467.267 1198.92 467.106C1198.64 466.948 1198.42 466.89 1198.23 466.93C1198.05 466.967 1197.92 467.091 1197.83 467.304C1197.74 467.517 1197.7 467.803 1197.7 468.162C1197.7 468.521 1197.74 468.859 1197.83 469.174C1197.92 469.482 1198.05 469.761 1198.23 470.01C1198.42 470.263 1198.64 470.468 1198.92 470.626ZM1202.23 467.919L1203.49 468.645L1203.49 469.426C1203.67 469.254 1203.9 469.162 1204.16 469.151C1204.42 469.133 1204.71 469.221 1205.05 469.415C1205.43 469.631 1205.74 469.906 1206 470.24C1206.27 470.57 1206.47 470.946 1206.6 471.368C1206.74 471.793 1206.81 472.244 1206.81 472.721L1206.81 476.285L1205.53 475.542L1205.53 472.154C1205.53 471.795 1205.45 471.47 1205.31 471.181C1205.16 470.884 1204.93 470.643 1204.61 470.46C1204.43 470.357 1204.26 470.306 1204.1 470.306C1203.94 470.302 1203.8 470.374 1203.69 470.521C1203.58 470.671 1203.53 470.915 1203.53 471.252L1203.53 474.387L1202.23 473.639L1202.23 467.919ZM1209.74 477.973C1209.43 477.793 1209.17 477.604 1208.97 477.406C1208.76 477.201 1208.6 476.953 1208.48 476.664C1208.37 476.378 1208.31 476.037 1208.31 475.641L1208.31 472.561L1207.45 472.066L1207.45 470.933L1208.31 471.428L1208.31 469.668L1209.6 470.416L1209.6 472.176L1210.84 472.891L1210.84 474.024L1209.6 473.309L1209.6 476.235C1209.6 476.418 1209.64 476.574 1209.71 476.702C1209.78 476.823 1209.9 476.933 1210.07 477.032L1210.84 477.478L1210.84 478.611L1209.74 477.973ZM1213.86 480.483C1213.35 480.19 1212.9 479.805 1212.52 479.328C1212.15 478.848 1211.86 478.327 1211.67 477.766C1211.47 477.198 1211.37 476.628 1211.37 476.056C1211.37 475.484 1211.47 475.027 1211.67 474.686C1211.86 474.345 1212.15 474.155 1212.52 474.114C1212.9 474.078 1213.35 474.206 1213.86 474.499C1214.37 474.796 1214.82 475.181 1215.19 475.654C1215.57 476.12 1215.85 476.646 1216.04 477.233C1216.24 477.816 1216.33 478.423 1216.33 479.053L1216.33 479.383L1212.66 477.26C1212.69 477.565 1212.76 477.849 1212.86 478.113C1212.97 478.373 1213.1 478.61 1213.27 478.822C1213.44 479.031 1213.64 479.2 1213.86 479.328C1214.14 479.49 1214.37 479.561 1214.55 479.543C1214.74 479.521 1214.89 479.422 1214.99 479.246L1216.25 479.972C1216.08 480.456 1215.79 480.749 1215.37 480.852C1214.96 480.951 1214.45 480.828 1213.86 480.483ZM1215.04 477.601C1214.98 477.169 1214.84 476.784 1214.64 476.446C1214.44 476.102 1214.18 475.838 1213.86 475.654C1213.53 475.467 1213.27 475.429 1213.07 475.539C1212.86 475.642 1212.73 475.873 1212.67 476.232L1215.04 477.601ZM1218.45 480.066L1216.74 476.298L1218.22 477.151L1219.19 479.274L1220.15 478.267L1221.61 479.109L1219.92 480.891L1221.73 484.895L1220.25 484.042L1219.18 481.688L1218.11 482.805L1216.65 481.963L1218.45 480.066ZM1224.19 486.314C1223.87 486.134 1223.62 485.946 1223.41 485.748C1223.21 485.542 1223.05 485.295 1222.93 485.005C1222.81 484.719 1222.76 484.378 1222.76 483.982L1222.76 480.902L1221.9 480.407L1221.9 479.274L1222.76 479.769L1222.76 478.009L1224.05 478.757L1224.05 480.517L1225.29 481.232L1225.29 482.365L1224.05 481.65L1224.05 484.576C1224.05 484.759 1224.09 484.915 1224.16 485.044C1224.23 485.165 1224.35 485.275 1224.52 485.374L1225.29 485.819L1225.29 486.952L1224.19 486.314Z" fill="#5F52FF"/>
|
|
329
|
+
<path d="M1198.41 355.591L1200.04 356.532L1195.83 362.021L1194.35 361.168L1195.28 360.019L1192.37 358.341L1190.37 358.869L1188.94 358.044L1198.41 355.591ZM1196.05 359.1L1197.89 356.829L1193.96 357.896L1196.05 359.1ZM1198.57 363.732C1198.06 363.439 1197.73 363.12 1197.58 362.775C1197.44 362.431 1197.46 362.09 1197.65 361.752C1197.85 361.411 1198.19 361.098 1198.69 360.812C1199.19 360.526 1199.73 360.326 1200.32 360.212C1200.91 360.099 1201.5 360.084 1202.09 360.168C1202.69 360.256 1203.24 360.447 1203.75 360.74C1204.43 361.133 1204.8 361.543 1204.85 361.972C1204.91 362.401 1204.69 362.807 1204.18 363.188L1202.88 362.44C1203.08 362.257 1203.17 362.07 1203.13 361.879C1203.1 361.688 1202.95 361.514 1202.68 361.356C1202.43 361.21 1202.15 361.124 1201.85 361.098C1201.56 361.069 1201.26 361.094 1200.94 361.175C1200.63 361.259 1200.32 361.391 1200 361.571C1199.69 361.751 1199.46 361.93 1199.32 362.11C1199.19 362.29 1199.14 362.466 1199.19 362.638C1199.23 362.81 1199.38 362.97 1199.63 363.116C1199.92 363.281 1200.23 363.369 1200.57 363.38C1200.91 363.395 1201.25 363.331 1201.59 363.188L1202.88 363.936C1202.2 364.24 1201.48 364.38 1200.71 364.354C1199.95 364.325 1199.23 364.117 1198.57 363.732ZM1203.65 366.535C1203.34 366.356 1203.12 366.187 1202.98 366.029C1202.86 365.868 1202.83 365.697 1202.9 365.518C1202.97 365.342 1203.18 365.155 1203.53 364.957L1206.19 363.417L1205.34 362.922L1206.32 362.355L1207.17 362.85L1208.7 361.97L1209.99 362.718L1208.47 363.598L1209.71 364.313L1208.73 364.88L1207.49 364.165L1204.95 365.628C1204.8 365.719 1204.71 365.807 1204.71 365.892C1204.71 365.972 1204.79 366.062 1204.96 366.161L1205.74 366.607L1204.75 367.173L1203.65 366.535ZM1210.44 364.734L1211.73 365.482L1206.78 368.342L1205.48 367.594L1210.44 364.734ZM1212.34 363.634L1213.64 364.382L1212.49 365.047L1211.19 364.299L1212.34 363.634ZM1212.27 365.792L1213.67 366.6L1211.16 369.455L1216.09 367.997L1217.48 368.8L1210.67 370.588L1209.18 369.73L1212.27 365.792ZM1215.23 373.352C1214.72 373.059 1214.39 372.738 1214.23 372.39C1214.08 372.041 1214.1 371.698 1214.29 371.361C1214.49 371.02 1214.84 370.707 1215.33 370.421C1215.83 370.135 1216.37 369.935 1216.96 369.821C1217.55 369.707 1218.15 369.695 1218.74 369.783C1219.35 369.874 1219.9 370.067 1220.41 370.36C1220.92 370.657 1221.26 370.978 1221.41 371.323C1221.57 371.664 1221.54 372.008 1221.32 372.357C1221.11 372.705 1220.73 373.037 1220.18 373.352L1219.9 373.517L1216.22 371.394C1216 371.555 1215.86 371.717 1215.78 371.878C1215.72 372.039 1215.72 372.197 1215.78 372.351C1215.86 372.505 1216.01 372.646 1216.23 372.775C1216.51 372.936 1216.79 373.039 1217.09 373.083C1217.39 373.127 1217.7 373.119 1218 373.061L1219.26 373.787C1218.59 373.981 1217.9 374.043 1217.18 373.974C1216.48 373.904 1215.82 373.697 1215.23 373.352ZM1219.5 372.252C1219.78 372.017 1219.91 371.786 1219.9 371.559C1219.89 371.328 1219.73 371.121 1219.41 370.938C1219.09 370.751 1218.72 370.655 1218.32 370.652C1217.93 370.644 1217.53 370.721 1217.12 370.883L1219.5 372.252ZM1228.15 374.203L1225.99 372.954L1227.24 372.234L1232.97 375.545L1231.72 376.265L1229.56 375.017L1223.95 378.256L1222.54 377.442L1228.15 374.203ZM1233.61 375.912L1234.9 376.66L1232.37 378.123C1232.78 378.098 1233.18 378.12 1233.57 378.189C1233.96 378.259 1234.31 378.387 1234.64 378.574C1235.01 378.791 1235.25 379.02 1235.35 379.262C1235.47 379.504 1235.44 379.75 1235.28 379.999C1235.12 380.252 1234.83 380.498 1234.42 380.736L1231.33 382.518L1230.05 381.775L1232.98 380.081C1233.29 379.902 1233.46 379.718 1233.49 379.531C1233.53 379.341 1233.39 379.154 1233.08 378.97C1232.9 378.868 1232.69 378.793 1232.44 378.745C1232.2 378.697 1231.94 378.694 1231.64 378.734C1231.35 378.778 1231.05 378.884 1230.76 379.053L1228.05 380.62L1226.75 379.872L1233.61 375.912ZM1234.53 384.498C1234.01 384.197 1233.67 383.871 1233.5 383.519C1233.35 383.167 1233.37 382.82 1233.55 382.479C1233.75 382.138 1234.09 381.825 1234.59 381.539C1235.09 381.253 1235.63 381.053 1236.22 380.939C1236.82 380.829 1237.42 380.82 1238.02 380.912C1238.63 381.007 1239.19 381.205 1239.72 381.506C1240.24 381.81 1240.59 382.136 1240.74 382.485C1240.91 382.837 1240.89 383.183 1240.7 383.524C1240.5 383.865 1240.15 384.179 1239.66 384.465C1239.16 384.751 1238.62 384.951 1238.03 385.064C1237.44 385.174 1236.84 385.183 1236.23 385.092C1235.63 385 1235.06 384.802 1234.53 384.498ZM1235.6 383.882C1235.88 384.043 1236.17 384.138 1236.48 384.168C1236.79 384.201 1237.1 384.177 1237.4 384.096C1237.72 384.016 1238.03 383.885 1238.34 383.706C1238.65 383.526 1238.88 383.345 1239.02 383.161C1239.17 382.982 1239.21 382.804 1239.14 382.628C1239.09 382.452 1238.93 382.283 1238.65 382.122C1238.38 381.964 1238.08 381.869 1237.77 381.836C1237.47 381.803 1237.17 381.827 1236.85 381.907C1236.53 381.988 1236.22 382.118 1235.9 382.298C1235.59 382.477 1235.37 382.659 1235.23 382.842C1235.09 383.022 1235.05 383.2 1235.1 383.376C1235.16 383.555 1235.33 383.724 1235.6 383.882ZM1242.54 388.99L1241.29 388.264L1241.96 387.874C1241.54 387.907 1241.12 387.89 1240.71 387.824C1240.31 387.754 1239.95 387.622 1239.61 387.428C1239.23 387.212 1238.99 386.983 1238.87 386.741C1238.77 386.499 1238.8 386.251 1238.96 385.998C1239.13 385.749 1239.41 385.505 1239.83 385.267L1242.91 383.485L1244.2 384.227L1241.27 385.921C1240.95 386.101 1240.78 386.286 1240.74 386.477C1240.71 386.664 1240.85 386.849 1241.17 387.032C1241.35 387.135 1241.55 387.21 1241.79 387.258C1242.04 387.305 1242.31 387.307 1242.6 387.263C1242.9 387.223 1243.19 387.118 1243.49 386.95L1246.2 385.382L1247.5 386.13L1242.54 388.99ZM1243.76 392.026C1243.06 391.623 1242.68 391.219 1242.6 390.816C1242.52 390.413 1242.74 390.042 1243.25 389.705L1244.52 390.442C1244.29 390.611 1244.21 390.781 1244.27 390.953C1244.33 391.129 1244.51 391.304 1244.81 391.476C1245.16 391.678 1245.53 391.793 1245.92 391.822C1246.32 391.859 1246.73 391.753 1247.16 391.503L1247.76 391.157C1247.37 391.186 1246.98 391.162 1246.61 391.085C1246.25 391.008 1245.9 390.875 1245.57 390.684C1245.11 390.416 1244.82 390.125 1244.7 389.809C1244.59 389.494 1244.63 389.179 1244.84 388.863C1245.05 388.544 1245.39 388.246 1245.88 387.967C1246.37 387.685 1246.88 387.485 1247.43 387.367C1247.98 387.246 1248.53 387.219 1249.08 387.285C1249.62 387.351 1250.13 387.518 1250.59 387.785C1250.93 387.983 1251.17 388.192 1251.3 388.412C1251.43 388.636 1251.46 388.867 1251.39 389.105L1252.02 388.742L1253.28 389.468L1248.46 392.251C1247.98 392.526 1247.47 392.691 1246.93 392.746C1246.39 392.805 1245.84 392.77 1245.3 392.642C1244.76 392.514 1244.25 392.308 1243.76 392.026ZM1246.91 390.282C1247.18 390.436 1247.46 390.53 1247.76 390.563C1248.07 390.592 1248.37 390.57 1248.68 390.497C1248.99 390.42 1249.3 390.293 1249.6 390.117C1249.91 389.941 1250.13 389.764 1250.26 389.584C1250.39 389.404 1250.43 389.228 1250.37 389.056C1250.32 388.88 1250.16 388.715 1249.9 388.561C1249.62 388.403 1249.33 388.31 1249.03 388.28C1248.73 388.247 1248.43 388.269 1248.12 388.346C1247.81 388.427 1247.51 388.555 1247.2 388.731C1246.9 388.907 1246.67 389.083 1246.53 389.259C1246.41 389.435 1246.37 389.611 1246.42 389.787C1246.48 389.96 1246.64 390.125 1246.91 390.282ZM1256.17 388.937L1257.46 389.685L1254.93 391.148C1255.34 391.123 1255.74 391.145 1256.13 391.214C1256.52 391.284 1256.87 391.412 1257.2 391.599C1257.57 391.816 1257.81 392.045 1257.91 392.287C1258.03 392.529 1258 392.774 1257.84 393.024C1257.68 393.277 1257.39 393.522 1256.98 393.761L1253.89 395.543L1252.61 394.8L1255.54 393.106C1255.85 392.927 1256.02 392.743 1256.05 392.556C1256.09 392.366 1255.95 392.179 1255.64 391.995C1255.46 391.893 1255.24 391.817 1255 391.77C1254.76 391.722 1254.5 391.718 1254.2 391.759C1253.9 391.803 1253.61 391.909 1253.32 392.078L1250.61 393.645L1249.31 392.897L1256.17 388.937ZM1256.82 397.231C1256.51 397.051 1256.28 396.883 1256.15 396.725C1256.02 396.564 1255.99 396.393 1256.06 396.214C1256.14 396.038 1256.35 395.851 1256.69 395.653L1259.36 394.113L1258.5 393.618L1259.48 393.051L1260.34 393.546L1261.87 392.666L1263.16 393.414L1261.64 394.294L1262.88 395.009L1261.89 395.576L1260.66 394.861L1258.12 396.324C1257.96 396.415 1257.88 396.503 1257.87 396.588C1257.87 396.668 1257.96 396.758 1258.13 396.857L1258.9 397.303L1257.92 397.869L1256.82 397.231ZM1260.89 401.786C1260.6 401.613 1260.38 401.436 1260.24 401.252C1260.1 401.073 1260.08 400.884 1260.15 400.686C1260.22 400.491 1260.43 400.295 1260.77 400.097L1262.99 398.816C1263.2 398.695 1263.29 398.572 1263.27 398.447C1263.25 398.323 1263.09 398.17 1262.78 397.991L1263.86 397.369C1264.17 397.549 1264.43 397.644 1264.64 397.655C1264.86 397.666 1265.07 397.613 1265.28 397.496L1267.51 396.209C1267.84 396.014 1268.18 395.897 1268.52 395.857C1268.86 395.813 1269.19 395.829 1269.5 395.906C1269.81 395.987 1270.12 396.113 1270.42 396.286L1271.61 396.973L1270.54 397.595L1269.6 397.056C1269.43 396.957 1269.24 396.907 1269.04 396.907C1268.84 396.907 1268.66 396.953 1268.5 397.045L1266.28 398.326C1265.99 398.491 1265.71 398.577 1265.43 398.585C1265.16 398.588 1264.87 398.528 1264.56 398.403C1264.78 398.579 1264.88 398.748 1264.87 398.909C1264.86 399.067 1264.71 399.228 1264.43 399.393L1262.22 400.669C1262.05 400.765 1261.97 400.871 1261.97 400.988C1261.97 401.106 1262.06 401.214 1262.23 401.313L1263.16 401.852L1262.09 402.473L1260.89 401.786ZM1270.26 400.944L1271.34 397.699L1272.95 398.628L1272.28 400.713L1275.88 400.317L1277.44 401.219L1271.88 401.846L1270.72 405.261L1269.11 404.332L1269.86 402.088L1265.96 402.511L1264.39 401.604L1270.26 400.944ZM1270.13 405.875L1271.06 406.414C1271.24 406.517 1271.43 406.566 1271.63 406.563C1271.83 406.563 1272.01 406.515 1272.18 406.42L1274.39 405.144C1274.67 404.979 1274.95 404.894 1275.23 404.891C1275.51 404.887 1275.81 404.948 1276.11 405.072C1275.9 404.896 1275.79 404.728 1275.79 404.566C1275.8 404.405 1275.95 404.242 1276.24 404.077L1278.46 402.795C1278.62 402.704 1278.69 402.599 1278.69 402.482C1278.7 402.368 1278.62 402.26 1278.44 402.157L1277.5 401.618L1278.58 400.997L1279.78 401.69C1280.08 401.862 1280.3 402.038 1280.43 402.218C1280.56 402.397 1280.59 402.586 1280.51 402.784C1280.44 402.979 1280.24 403.173 1279.9 403.367L1277.68 404.654C1277.47 404.772 1277.38 404.894 1277.4 405.023C1277.42 405.147 1277.59 405.298 1277.89 405.474L1276.82 406.095C1276.51 405.919 1276.25 405.826 1276.03 405.815C1275.81 405.8 1275.6 405.853 1275.39 405.974L1273.17 407.256C1272.83 407.454 1272.49 407.573 1272.15 407.613C1271.81 407.657 1271.48 407.641 1271.17 407.564C1270.86 407.487 1270.55 407.362 1270.25 407.19L1269.05 406.497L1270.13 405.875Z" fill="#5F52FF"/>
|
|
330
|
+
<path d="M1191.02 450.844L1189.33 449.87L1189.33 448.583L1191.02 449.557L1191.02 447.621L1192.13 448.264L1192.13 450.2L1193.81 451.168L1193.81 452.455L1192.13 451.487L1192.13 453.435L1191.02 452.791L1191.02 450.844Z" fill="#5F52FF"/>
|
|
331
|
+
<path d="M627.5 263.152L653.5 245.152H673.5L700.5 267.152H705.25M705.25 267.152H710L726.5 225.152L670.5 235.152L649.5 188.652L635 192.152L601.5 222.152L594.5 231.652L611 260.152L627.5 267.152H705.25ZM604.5 229.152L649.5 235.152M660.5 192.152L713.5 218.152M697 189.652L675 225.152M702.5 188.652L720 214.652" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
332
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 225.212)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
333
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 219.101)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
334
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 213.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
335
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 208.405)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
336
|
+
<circle cx="9.62541" cy="9.62541" r="8.62541" transform="matrix(0.866025 -0.5 0.866025 0.5 711.346 208.405)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
337
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 615 193.212)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
338
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 615 187.101)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
339
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 615 181.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
340
|
+
<circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 629.396 181.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
341
|
+
<circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 629.396 177.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
342
|
+
<circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 629.396 173.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
343
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 241.582)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
344
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 233.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
345
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 226.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
346
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 219.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
347
|
+
<circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 212.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
348
|
+
<circle cx="12.5581" cy="12.5581" r="11.5581" transform="matrix(0.866025 -0.5 -0.866025 -0.5 663.983 225.14)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
349
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 269.764)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
350
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 265.555)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
351
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 259.872)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
352
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 254.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
353
|
+
<circle cx="6.62868" cy="6.62868" r="5.62868" transform="matrix(0.866025 -0.5 0.866025 0.5 697.502 254.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
354
|
+
<circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 689 189.137)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
355
|
+
<circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 689 186.888)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
356
|
+
<circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 689 183.852)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
357
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 230.764)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
358
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 226.555)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
359
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 220.872)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
360
|
+
<circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 215.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
361
|
+
<circle cx="6.62868" cy="6.62868" r="5.62868" transform="matrix(0.866025 -0.5 0.866025 0.5 583.502 215.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
362
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 590 266.865)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
363
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 590 260.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
364
|
+
<circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 590 255.405)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
365
|
+
<path d="M421.5 351.5L457 342.5M512 310.5L534 334.5M434 310.5L455.5 324.5M497.5 379L539 346.5L492 334.5L495.5 304L436 303L422.5 310.5L414.5 347.5L423.5 363.5L465.5 387.5L497.5 379Z" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
366
|
+
<path d="M538.464 338.678L553.564 341.009L557.602 349.727L546.536 356.116L531.435 353.785L527.399 345.067L538.464 338.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
367
|
+
<path d="M538.464 333.337L553.564 335.668L557.602 344.386L546.536 350.775L531.435 348.444L527.399 339.726L538.464 333.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
368
|
+
<path d="M538.464 328.723L553.564 331.053L557.602 339.771L546.536 346.16L531.435 343.829L527.399 335.111L538.464 328.723Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
369
|
+
<path d="M498.464 302.678L513.564 305.009L517.602 313.727L506.536 320.116L491.435 317.785L487.399 309.066L498.464 302.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
370
|
+
<path d="M498.464 297.337L513.564 299.668L517.602 308.386L506.536 314.775L491.435 312.444L487.399 303.725L498.464 297.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
371
|
+
<path d="M498.464 292.722L513.564 295.053L517.602 303.771L506.536 310.16L491.435 307.829L487.399 299.111L498.464 292.722Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
372
|
+
<path d="M498.464 288.272L513.564 290.602L517.602 299.32L506.536 305.709L491.435 303.378L487.399 294.66L498.464 288.272Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
373
|
+
<path d="M421.464 300.678L436.564 303.009L440.602 311.727L429.536 318.116L414.435 315.785L410.399 307.066L421.464 300.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
374
|
+
<path d="M421.464 295.337L436.564 297.668L440.602 306.386L429.536 312.775L414.435 310.444L410.399 301.725L421.464 295.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
375
|
+
<path d="M421.464 290.722L436.564 293.053L440.602 301.771L429.536 308.16L414.435 305.829L410.399 297.111L421.464 290.722Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
376
|
+
<path d="M421.464 286.272L436.564 288.602L440.602 297.32L429.536 303.709L414.435 301.378L410.399 292.66L421.464 286.272Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
377
|
+
<path d="M468.885 327.432L498.927 332.069L506.958 349.414L484.947 362.123L454.903 357.486L446.873 340.141L468.885 327.432Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
378
|
+
<path d="M468.885 320.432L498.927 325.069L506.958 342.414L484.947 355.123L454.903 350.486L446.873 333.141L468.885 320.432Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
379
|
+
<path d="M468.885 312.432L498.927 317.069L506.958 334.414L484.947 347.123L454.903 342.486L446.873 325.141L468.885 312.432Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
380
|
+
<path d="M468.885 304.432L498.927 309.069L506.958 326.414L484.947 339.123L454.903 334.486L446.873 317.141L468.885 304.432Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
381
|
+
<path d="M472.336 311.886L489.468 314.53L494.049 324.421L481.496 331.669L464.362 329.025L459.783 319.133L472.336 311.886Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
382
|
+
<path d="M472.336 306.701L489.468 309.346L494.049 319.237L481.496 326.485L464.362 323.841L459.783 313.949L472.336 306.701Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
383
|
+
<path d="M472.336 301.701L489.468 304.346L494.049 314.237L481.496 321.485L464.362 318.841L459.783 308.949L472.336 301.701Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
384
|
+
<path d="M412.464 350.678L427.564 353.009L431.602 361.727L420.536 368.116L405.435 365.785L401.399 357.067L412.464 350.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
385
|
+
<path d="M412.464 345.337L427.564 347.668L431.602 356.386L420.536 362.775L405.435 360.444L401.399 351.726L412.464 345.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
386
|
+
<path d="M412.464 340.723L427.564 343.053L431.602 351.771L420.536 358.16L405.435 355.829L401.399 347.111L412.464 340.723Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
387
|
+
<path d="M474.714 375.274L498.231 378.903L504.518 392.481L487.286 402.43L463.768 398.8L457.482 385.222L474.714 375.274Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
388
|
+
<path d="M474.714 369.728L498.231 373.357L504.518 386.935L487.286 396.884L463.768 393.254L457.482 379.677L474.714 369.728Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
389
|
+
<path d="M474.714 363.39L498.231 367.019L504.518 380.597L487.286 390.546L463.768 386.916L457.482 373.339L474.714 363.39Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
390
|
+
<path d="M474.714 357.052L498.231 360.681L504.518 374.259L487.286 384.208L463.768 380.578L457.482 367.001L474.714 357.052Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
391
|
+
<rect x="252" y="418.511" width="127" height="28" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
392
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 251.232 462.789)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
393
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 251.232 448.533)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
394
|
+
<mask id="path-392-inside-1_2103_371" fill="white">
|
|
395
|
+
<path d="M251 432.412L315.357 395.256L379.713 432.412L315.357 469.568L251 432.412Z"/>
|
|
396
|
+
</mask>
|
|
397
|
+
<path d="M251 432.412L315.357 395.256L379.713 432.412L315.357 469.568L251 432.412Z" fill="#F8F7FF"/>
|
|
398
|
+
<path d="M251 432.412L249.268 431.412C248.311 431.964 248.311 432.86 249.268 433.412L251 432.412ZM315.357 395.256L317.089 394.256C316.132 393.703 314.581 393.703 313.625 394.256L315.357 395.256ZM379.713 432.412L381.445 433.412C382.402 432.86 382.402 431.964 381.445 431.412L379.713 432.412ZM315.357 469.568L313.625 470.568C314.581 471.12 316.132 471.12 317.089 470.568L315.357 469.568ZM251 432.412L252.732 433.412L317.089 396.256L315.357 395.256L313.625 394.256L249.268 431.412L251 432.412ZM315.357 395.256L313.625 396.256L377.981 433.412L379.713 432.412L381.445 431.412L317.089 394.256L315.357 395.256ZM379.713 432.412L377.981 431.412L313.625 468.568L315.357 469.568L317.089 470.568L381.445 433.412L379.713 432.412ZM315.357 469.568L317.089 468.568L252.732 431.412L251 432.412L249.268 433.412L313.625 470.568L315.357 469.568Z" fill="#5F52FF" mask="url(#path-392-inside-1_2103_371)"/>
|
|
399
|
+
<mask id="path-394-inside-2_2103_371" fill="white">
|
|
400
|
+
<path d="M251 418.156L315.357 381L379.713 418.156L315.357 455.313L251 418.156Z"/>
|
|
401
|
+
</mask>
|
|
402
|
+
<path d="M251 418.156L315.357 381L379.713 418.156L315.357 455.313L251 418.156Z" fill="#F8F7FF"/>
|
|
403
|
+
<path d="M251 418.156L249.268 417.156C248.311 417.709 248.311 418.604 249.268 419.156L251 418.156ZM315.357 381L317.089 380C316.132 379.448 314.581 379.448 313.625 380L315.357 381ZM379.713 418.156L381.445 419.156C382.402 418.604 382.402 417.709 381.445 417.156L379.713 418.156ZM315.357 455.313L313.625 456.313C314.581 456.865 316.132 456.865 317.089 456.313L315.357 455.313ZM251 418.156L252.732 419.156L317.089 382L315.357 381L313.625 380L249.268 417.156L251 418.156ZM315.357 381L313.625 382L377.981 419.156L379.713 418.156L381.445 417.156L317.089 380L315.357 381ZM379.713 418.156L377.981 417.156L313.625 454.313L315.357 455.313L317.089 456.313L381.445 419.156L379.713 418.156ZM315.357 455.313L317.089 454.313L252.732 417.156L251 418.156L249.268 419.156L313.625 456.313L315.357 455.313Z" fill="#5F52FF" mask="url(#path-394-inside-2_2103_371)"/>
|
|
404
|
+
<mask id="path-396-inside-3_2103_371" fill="white">
|
|
405
|
+
<path d="M264.506 410.358L315.356 381L366.207 410.358L315.356 439.717L264.506 410.358Z"/>
|
|
406
|
+
</mask>
|
|
407
|
+
<path d="M264.506 410.358L315.356 381L366.207 410.358L315.356 439.717L264.506 410.358Z" fill="#DAFFF4"/>
|
|
408
|
+
<path d="M264.506 410.358L262.774 409.358C261.817 409.911 261.817 410.806 262.774 411.358L264.506 410.358ZM315.356 381L317.088 380C316.132 379.448 314.581 379.448 313.624 380L315.356 381ZM366.207 410.358L367.939 411.358C368.895 410.806 368.895 409.911 367.939 409.358L366.207 410.358ZM315.356 439.717L313.624 440.717C314.581 441.269 316.132 441.269 317.088 440.717L315.356 439.717ZM264.506 410.358L266.238 411.358L317.088 382L315.356 381L313.624 380L262.774 409.358L264.506 410.358ZM315.356 381L313.624 382L364.474 411.358L366.207 410.358L367.939 409.358L317.088 380L315.356 381ZM366.207 410.358L364.474 409.358L313.624 438.717L315.356 439.717L317.088 440.717L367.939 411.358L366.207 410.358ZM315.356 439.717L317.088 438.717L266.238 409.358L264.506 410.358L262.774 411.358L313.624 440.717L315.356 439.717Z" fill="#5F52FF" mask="url(#path-396-inside-3_2103_371)"/>
|
|
409
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 112.232 542.789)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
410
|
+
<rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 112.232 528.533)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
411
|
+
<mask id="path-400-inside-4_2103_371" fill="white">
|
|
412
|
+
<path d="M112 516.412L176.357 479.255L240.713 516.412L176.357 553.568L112 516.412Z"/>
|
|
413
|
+
</mask>
|
|
414
|
+
<path d="M112 516.412L176.357 479.255L240.713 516.412L176.357 553.568L112 516.412Z" fill="#F8F7FF"/>
|
|
415
|
+
<path d="M112 516.412L110.268 515.412C109.311 515.964 109.311 516.859 110.268 517.412L112 516.412ZM176.357 479.255L178.089 478.255C177.132 477.703 175.581 477.703 174.625 478.255L176.357 479.255ZM240.713 516.412L242.445 517.412C243.402 516.859 243.402 515.964 242.445 515.412L240.713 516.412ZM176.357 553.568L174.625 554.568C175.581 555.12 177.132 555.12 178.089 554.568L176.357 553.568ZM112 516.412L113.732 517.412L178.089 480.255L176.357 479.255L174.625 478.255L110.268 515.412L112 516.412ZM176.357 479.255L174.625 480.255L238.981 517.412L240.713 516.412L242.445 515.412L178.089 478.255L176.357 479.255ZM240.713 516.412L238.981 515.412L174.625 552.568L176.357 553.568L178.089 554.568L242.445 517.412L240.713 516.412ZM176.357 553.568L178.089 552.568L113.732 515.412L112 516.412L110.268 517.412L174.625 554.568L176.357 553.568Z" fill="#5F52FF" mask="url(#path-400-inside-4_2103_371)"/>
|
|
416
|
+
<mask id="path-402-inside-5_2103_371" fill="white">
|
|
417
|
+
<path d="M112 506.156L176.357 469L240.713 506.156L176.357 543.313L112 506.156Z"/>
|
|
418
|
+
</mask>
|
|
419
|
+
<path d="M112 506.156L176.357 469L240.713 506.156L176.357 543.313L112 506.156Z" fill="#F8F7FF"/>
|
|
420
|
+
<path d="M112 506.156L110.268 505.156C109.311 505.709 109.311 506.604 110.268 507.156L112 506.156ZM176.357 469L178.089 468C177.132 467.448 175.581 467.448 174.625 468L176.357 469ZM240.713 506.156L242.445 507.156C243.402 506.604 243.402 505.709 242.445 505.156L240.713 506.156ZM176.357 543.313L174.625 544.313C175.581 544.865 177.132 544.865 178.089 544.313L176.357 543.313ZM112 506.156L113.732 507.156L178.089 470L176.357 469L174.625 468L110.268 505.156L112 506.156ZM176.357 469L174.625 470L238.981 507.156L240.713 506.156L242.445 505.156L178.089 468L176.357 469ZM240.713 506.156L238.981 505.156L174.625 542.313L176.357 543.313L178.089 544.313L242.445 507.156L240.713 506.156ZM176.357 543.313L178.089 542.313L113.732 505.156L112 506.156L110.268 507.156L174.625 544.313L176.357 543.313Z" fill="#5F52FF" mask="url(#path-402-inside-5_2103_371)"/>
|
|
421
|
+
<mask id="path-404-inside-6_2103_371" fill="white">
|
|
422
|
+
<path d="M121.619 500.603L176.357 469L231.095 500.603L176.357 532.206L121.619 500.603Z"/>
|
|
423
|
+
</mask>
|
|
424
|
+
<path d="M121.619 500.603L176.357 469L231.095 500.603L176.357 532.206L121.619 500.603Z" fill="#DAF4FF"/>
|
|
425
|
+
<path d="M121.619 500.603L119.887 499.603C118.931 500.155 118.931 501.051 119.887 501.603L121.619 500.603ZM176.357 469L178.089 468C177.133 467.448 175.582 467.448 174.625 468L176.357 469ZM231.095 500.603L232.827 501.603C233.784 501.051 233.784 500.155 232.827 499.603L231.095 500.603ZM176.357 532.206L174.625 533.206C175.582 533.758 177.133 533.758 178.089 533.206L176.357 532.206ZM121.619 500.603L123.351 501.603L178.089 470L176.357 469L174.625 468L119.887 499.603L121.619 500.603ZM176.357 469L174.625 470L229.363 501.603L231.095 500.603L232.827 499.603L178.089 468L176.357 469ZM231.095 500.603L229.363 499.603L174.625 531.206L176.357 532.206L178.089 533.206L232.827 501.603L231.095 500.603ZM176.357 532.206L178.089 531.206L123.351 499.603L121.619 500.603L119.887 501.603L174.625 533.206L176.357 532.206Z" fill="#5F52FF" mask="url(#path-404-inside-6_2103_371)"/>
|
|
426
|
+
<path d="M176.5 531V542" stroke="#5F52FF" stroke-width="2"/>
|
|
427
|
+
<rect x="1.73205" width="72.4008" height="72.4008" transform="matrix(0.866025 -0.5 0.866025 0.5 534.232 625.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
428
|
+
<mask id="path-408-inside-7_2103_371" fill="white">
|
|
429
|
+
<path d="M618.867 635.109L598.993 646.583L534.402 609.292L554.276 597.817L618.867 635.109ZM641.723 621.913L620.854 633.961L556.264 596.67L577.132 584.622L641.723 621.913ZM663.584 609.292L643.71 620.766L579.119 583.474L598.993 572L663.584 609.292Z"/>
|
|
430
|
+
</mask>
|
|
431
|
+
<path d="M618.867 635.109L598.993 646.583L534.402 609.292L554.276 597.817L618.867 635.109ZM641.723 621.913L620.854 633.961L556.264 596.67L577.132 584.622L641.723 621.913ZM663.584 609.292L643.71 620.766L579.119 583.474L598.993 572L663.584 609.292Z" fill="#F8F7FF"/>
|
|
432
|
+
<path d="M618.867 635.109L620.599 636.109C621.556 635.557 621.556 634.661 620.599 634.109L618.867 635.109ZM598.993 646.583L597.261 647.583C598.218 648.135 599.769 648.135 600.725 647.583L598.993 646.583ZM534.402 609.292L532.67 608.292C532.211 608.557 531.953 608.916 531.953 609.292C531.953 609.667 532.211 610.026 532.67 610.292L534.402 609.292ZM554.276 597.817L556.008 596.817C555.052 596.265 553.501 596.265 552.544 596.817L554.276 597.817ZM641.723 621.913L643.455 622.913C644.411 622.361 644.411 621.465 643.455 620.913L641.723 621.913ZM620.854 633.961L619.122 634.961C619.582 635.227 620.205 635.376 620.854 635.376C621.504 635.376 622.127 635.227 622.586 634.961L620.854 633.961ZM556.264 596.67L554.532 595.67C553.575 596.222 553.575 597.118 554.532 597.67L556.264 596.67ZM577.132 584.622L578.864 583.622C578.405 583.356 577.782 583.207 577.132 583.207C576.482 583.207 575.859 583.356 575.4 583.622L577.132 584.622ZM663.584 609.292L665.316 610.292C665.775 610.026 666.033 609.667 666.033 609.292C666.033 608.916 665.775 608.557 665.316 608.292L663.584 609.292ZM643.71 620.766L641.978 621.766C642.935 622.318 644.486 622.318 645.442 621.766L643.71 620.766ZM579.119 583.474L577.387 582.474C576.431 583.026 576.431 583.922 577.387 584.474L579.119 583.474ZM598.993 572L600.725 571C599.769 570.448 598.218 570.448 597.261 571L598.993 572ZM618.867 635.109L617.135 634.109L597.261 645.583L598.993 646.583L600.725 647.583L620.599 636.109L618.867 635.109ZM598.993 646.583L600.725 645.583L536.134 608.292L534.402 609.292L532.67 610.292L597.261 647.583L598.993 646.583ZM534.402 609.292L536.134 610.292L556.008 598.817L554.276 597.817L552.544 596.817L532.67 608.292L534.402 609.292ZM554.276 597.817L552.544 598.817L617.135 636.109L618.867 635.109L620.599 634.109L556.008 596.817L554.276 597.817ZM641.723 621.913L639.991 620.913L619.122 632.961L620.854 633.961L622.586 634.961L643.455 622.913L641.723 621.913ZM620.854 633.961L622.586 632.961L557.996 595.67L556.264 596.67L554.532 597.67L619.122 634.961L620.854 633.961ZM556.264 596.67L557.996 597.67L578.864 585.622L577.132 584.622L575.4 583.622L554.532 595.67L556.264 596.67ZM577.132 584.622L575.4 585.622L639.991 622.913L641.723 621.913L643.455 620.913L578.864 583.622L577.132 584.622ZM663.584 609.292L661.852 608.292L641.978 619.766L643.71 620.766L645.442 621.766L665.316 610.292L663.584 609.292ZM643.71 620.766L645.442 619.766L580.851 582.474L579.119 583.474L577.387 584.474L641.978 621.766L643.71 620.766ZM579.119 583.474L580.851 584.474L600.725 573L598.993 572L597.261 571L577.387 582.474L579.119 583.474ZM598.993 572L597.261 573L661.852 610.292L663.584 609.292L665.316 608.292L600.725 571L598.993 572Z" fill="#5F52FF" mask="url(#path-408-inside-7_2103_371)"/>
|
|
433
|
+
<mask id="path-410-inside-8_2103_371" fill="white">
|
|
434
|
+
<path d="M618.867 620.109L598.993 631.583L534.402 594.292L554.276 582.817L618.867 620.109ZM641.723 606.913L620.854 618.961L556.264 581.67L577.132 569.622L641.723 606.913ZM663.584 594.292L643.71 605.766L579.119 568.474L598.993 557L663.584 594.292Z"/>
|
|
435
|
+
</mask>
|
|
436
|
+
<path d="M618.867 620.109L598.993 631.583L534.402 594.292L554.276 582.817L618.867 620.109ZM641.723 606.913L620.854 618.961L556.264 581.67L577.132 569.622L641.723 606.913ZM663.584 594.292L643.71 605.766L579.119 568.474L598.993 557L663.584 594.292Z" fill="#F8F7FF"/>
|
|
437
|
+
<path d="M618.867 620.109L620.599 621.109C621.556 620.557 621.556 619.661 620.599 619.109L618.867 620.109ZM598.993 631.583L597.261 632.583C598.218 633.135 599.769 633.135 600.725 632.583L598.993 631.583ZM534.402 594.292L532.67 593.292C531.714 593.844 531.714 594.739 532.67 595.292L534.402 594.292ZM554.276 582.817L556.008 581.817C555.052 581.265 553.501 581.265 552.544 581.817L554.276 582.817ZM641.723 606.913L643.455 607.913C644.411 607.361 644.411 606.465 643.455 605.913L641.723 606.913ZM620.854 618.961L619.122 619.961C620.079 620.514 621.63 620.514 622.586 619.961L620.854 618.961ZM556.264 581.67L554.532 580.67C553.575 581.222 553.575 582.118 554.532 582.67L556.264 581.67ZM577.132 569.622L578.864 568.622C577.907 568.069 576.356 568.069 575.4 568.622L577.132 569.622ZM663.584 594.292L665.316 595.292C666.273 594.739 666.273 593.844 665.316 593.292L663.584 594.292ZM643.71 605.766L641.978 606.766C642.935 607.318 644.486 607.318 645.442 606.766L643.71 605.766ZM579.119 568.474L577.387 567.474C576.431 568.026 576.431 568.922 577.387 569.474L579.119 568.474ZM598.993 557L600.725 556C599.769 555.448 598.218 555.448 597.261 556L598.993 557ZM618.867 620.109L617.135 619.109L597.261 630.583L598.993 631.583L600.725 632.583L620.599 621.109L618.867 620.109ZM598.993 631.583L600.725 630.583L536.134 593.292L534.402 594.292L532.67 595.292L597.261 632.583L598.993 631.583ZM534.402 594.292L536.134 595.292L556.008 583.817L554.276 582.817L552.544 581.817L532.67 593.292L534.402 594.292ZM554.276 582.817L552.544 583.817L617.135 621.109L618.867 620.109L620.599 619.109L556.008 581.817L554.276 582.817ZM641.723 606.913L639.991 605.913L619.122 617.961L620.854 618.961L622.586 619.961L643.455 607.913L641.723 606.913ZM620.854 618.961L622.586 617.961L557.996 580.67L556.264 581.67L554.532 582.67L619.122 619.961L620.854 618.961ZM556.264 581.67L557.996 582.67L578.864 570.622L577.132 569.622L575.4 568.622L554.532 580.67L556.264 581.67ZM577.132 569.622L575.4 570.622L639.991 607.913L641.723 606.913L643.455 605.913L578.864 568.622L577.132 569.622ZM663.584 594.292L661.852 593.292L641.978 604.766L643.71 605.766L645.442 606.766L665.316 595.292L663.584 594.292ZM643.71 605.766L645.442 604.766L580.851 567.474L579.119 568.474L577.387 569.474L641.978 606.766L643.71 605.766ZM579.119 568.474L580.851 569.474L600.725 558L598.993 557L597.261 556L577.387 567.474L579.119 568.474ZM598.993 557L597.261 558L661.852 595.292L663.584 594.292L665.316 593.292L600.725 556L598.993 557Z" fill="#5F52FF" mask="url(#path-410-inside-8_2103_371)"/>
|
|
438
|
+
<mask id="path-412-inside-9_2103_371" fill="white">
|
|
439
|
+
<path d="M618.867 605.109L598.993 616.583L534.402 579.292L554.276 567.817L618.867 605.109ZM641.723 591.913L620.854 603.961L556.264 566.67L577.132 554.622L641.723 591.913ZM663.584 579.292L643.71 590.766L579.119 553.474L598.993 542L663.584 579.292Z"/>
|
|
440
|
+
</mask>
|
|
441
|
+
<path d="M618.867 605.109L598.993 616.583L534.402 579.292L554.276 567.817L618.867 605.109ZM641.723 591.913L620.854 603.961L556.264 566.67L577.132 554.622L641.723 591.913ZM663.584 579.292L643.71 590.766L579.119 553.474L598.993 542L663.584 579.292Z" fill="#DAFFF4"/>
|
|
442
|
+
<path d="M618.867 605.109L620.599 606.109C621.556 605.557 621.556 604.661 620.599 604.109L618.867 605.109ZM598.993 616.583L597.261 617.583C598.218 618.135 599.769 618.135 600.725 617.583L598.993 616.583ZM534.402 579.292L532.67 578.292C531.714 578.844 531.714 579.739 532.67 580.292L534.402 579.292ZM554.276 567.817L556.008 566.817C555.052 566.265 553.501 566.265 552.544 566.817L554.276 567.817ZM641.723 591.913L643.455 592.913C644.411 592.361 644.411 591.465 643.455 590.913L641.723 591.913ZM620.854 603.961L619.122 604.961C619.582 605.227 620.205 605.376 620.854 605.376C621.504 605.376 622.127 605.227 622.586 604.961L620.854 603.961ZM556.264 566.67L554.532 565.67C553.575 566.222 553.575 567.118 554.532 567.67L556.264 566.67ZM577.132 554.622L578.864 553.622C578.405 553.356 577.782 553.207 577.132 553.207C576.482 553.207 575.859 553.356 575.4 553.622L577.132 554.622ZM663.584 579.292L665.316 580.292C666.273 579.739 666.273 578.844 665.316 578.292L663.584 579.292ZM643.71 590.766L641.978 591.766C642.935 592.318 644.486 592.318 645.442 591.766L643.71 590.766ZM579.119 553.474L577.387 552.474C576.431 553.026 576.431 553.922 577.387 554.474L579.119 553.474ZM598.993 542L600.725 541C599.769 540.448 598.218 540.448 597.261 541L598.993 542ZM618.867 605.109L617.135 604.109L597.261 615.583L598.993 616.583L600.725 617.583L620.599 606.109L618.867 605.109ZM598.993 616.583L600.725 615.583L536.134 578.292L534.402 579.292L532.67 580.292L597.261 617.583L598.993 616.583ZM534.402 579.292L536.134 580.292L556.008 568.817L554.276 567.817L552.544 566.817L532.67 578.292L534.402 579.292ZM554.276 567.817L552.544 568.817L617.135 606.109L618.867 605.109L620.599 604.109L556.008 566.817L554.276 567.817ZM641.723 591.913L639.991 590.913L619.122 602.961L620.854 603.961L622.586 604.961L643.455 592.913L641.723 591.913ZM620.854 603.961L622.586 602.961L557.996 565.67L556.264 566.67L554.532 567.67L619.122 604.961L620.854 603.961ZM556.264 566.67L557.996 567.67L578.864 555.622L577.132 554.622L575.4 553.622L554.532 565.67L556.264 566.67ZM577.132 554.622L575.4 555.622L639.991 592.913L641.723 591.913L643.455 590.913L578.864 553.622L577.132 554.622ZM663.584 579.292L661.852 578.292L641.978 589.766L643.71 590.766L645.442 591.766L665.316 580.292L663.584 579.292ZM643.71 590.766L645.442 589.766L580.851 552.474L579.119 553.474L577.387 554.474L641.978 591.766L643.71 590.766ZM579.119 553.474L580.851 554.474L600.725 543L598.993 542L597.261 541L577.387 552.474L579.119 553.474ZM598.993 542L597.261 543L661.852 580.292L663.584 579.292L665.316 578.292L600.725 541L598.993 542Z" fill="#5F52FF" mask="url(#path-412-inside-9_2103_371)"/>
|
|
443
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 880.116 587.567)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
444
|
+
<rect x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 867.116 594.567)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
445
|
+
<circle cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 892 638)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2"/>
|
|
446
|
+
<rect x="1140" y="272" width="72" height="21" fill="#5F52FF"/>
|
|
447
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 290.607)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
448
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 275.82)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
449
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 268.71)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
450
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 261.601)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
451
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 253.762)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
452
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 245.923)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
453
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1125 238.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
454
|
+
<rect x="999" y="205" width="72" height="21" fill="#5F52FF"/>
|
|
455
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 984 223.45)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
456
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 984 208.663)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
457
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 984 201.554)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
458
|
+
<circle cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 984 194.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
459
|
+
<rect width="188.633" height="75.32" transform="matrix(0.866025 -0.5 0.866025 0.5 755 392.279)" fill="#7B70FF" fill-opacity="0.15"/>
|
|
460
|
+
<rect x="0.866025" width="187.633" height="74.32" transform="matrix(0.866025 -0.5 0.866025 0.5 755.116 392.712)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
461
|
+
<path d="M921.118 251.41L922.509 252.213L922.509 258.692L925.758 260.568L925.758 262.009L921.118 259.33L921.118 251.41ZM928.744 263.864C928.223 263.564 927.769 263.173 927.382 262.693C927 262.209 926.708 261.685 926.505 261.12C926.308 260.552 926.21 259.981 926.21 259.409C926.21 258.837 926.308 258.381 926.505 258.04C926.708 257.703 927 257.516 927.382 257.479C927.769 257.446 928.223 257.58 928.744 257.88C929.271 258.185 929.725 258.575 930.106 259.052C930.493 259.532 930.786 260.057 930.982 260.625C931.179 261.193 931.278 261.763 931.278 262.335C931.278 262.907 931.179 263.364 930.982 263.705C930.786 264.039 930.493 264.226 930.106 264.266C929.725 264.303 929.271 264.169 928.744 263.864ZM928.744 262.632C929.023 262.794 929.252 262.852 929.43 262.808C929.614 262.768 929.747 262.643 929.83 262.434C929.919 262.222 929.963 261.936 929.963 261.576C929.963 261.217 929.919 260.88 929.83 260.564C929.747 260.253 929.614 259.974 929.43 259.728C929.252 259.479 929.023 259.274 928.744 259.112C928.471 258.955 928.242 258.896 928.058 258.936C927.88 258.973 927.747 259.098 927.658 259.31C927.569 259.523 927.524 259.809 927.524 260.168C927.524 260.528 927.569 260.865 927.658 261.18C927.747 261.488 927.88 261.767 928.058 262.016C928.242 262.269 928.471 262.475 928.744 262.632ZM934.334 267.092C933.826 266.799 933.384 266.415 933.01 265.942C932.641 265.466 932.359 264.947 932.162 264.386C931.965 263.818 931.866 263.247 931.866 262.675C931.866 262.103 931.965 261.647 932.162 261.306C932.359 260.965 932.641 260.772 933.01 260.728C933.384 260.688 933.826 260.815 934.334 261.108C935.013 261.5 935.553 262.01 935.953 262.637C936.353 263.264 936.592 263.937 936.668 264.655L935.372 263.907C935.315 263.574 935.194 263.269 935.01 262.994C934.832 262.716 934.607 262.498 934.334 262.34C934.08 262.193 933.867 262.144 933.696 262.191C933.524 262.232 933.394 262.358 933.305 262.571C933.222 262.787 933.181 263.075 933.181 263.434C933.181 263.794 933.222 264.129 933.305 264.441C933.394 264.749 933.524 265.026 933.696 265.271C933.867 265.517 934.08 265.713 934.334 265.86C934.62 266.025 934.851 266.067 935.029 265.986C935.213 265.909 935.328 265.715 935.372 265.403L936.668 266.151C936.592 266.804 936.35 267.222 935.944 267.405C935.537 267.581 935.001 267.477 934.334 267.092ZM938.922 269.741C938.376 269.425 937.937 269.022 937.607 268.531C937.277 268.032 937.112 267.508 937.112 266.958C937.112 266.62 937.178 266.377 937.312 266.226C937.452 266.072 937.661 266.003 937.941 266.017C938.226 266.036 938.595 266.131 939.046 266.303L940.456 266.831L940.456 266.534C940.456 266.278 940.389 266.048 940.255 265.847C940.122 265.645 939.903 265.456 939.598 265.28C939.312 265.115 939.081 265.051 938.903 265.088C938.731 265.128 938.642 265.286 938.636 265.561L937.35 264.818C937.356 264.177 937.566 263.81 937.979 263.718C938.398 263.623 938.935 263.764 939.589 264.142C940.294 264.549 940.824 265.005 941.18 265.511C941.542 266.021 941.723 266.547 941.723 267.09L941.723 271.226L940.494 270.516L940.494 269.878C940.29 270.032 940.059 270.096 939.798 270.071C939.544 270.041 939.252 269.931 938.922 269.741ZM939.246 268.85C939.462 268.974 939.659 269.044 939.836 269.059C940.02 269.077 940.17 269.024 940.284 268.899C940.398 268.775 940.456 268.569 940.456 268.283L940.456 267.799L939.293 267.403C938.988 267.293 938.769 267.255 938.636 267.288C938.503 267.313 938.436 267.44 938.436 267.667C938.436 267.887 938.503 268.102 938.636 268.311C938.776 268.516 938.979 268.696 939.246 268.85ZM942.588 263.805L943.884 264.553L943.884 272.473L942.588 271.725L942.588 263.805ZM921.042 264.566L922.3 265.292L922.3 266.106C922.465 265.908 922.668 265.794 922.909 265.765C923.151 265.736 923.44 265.818 923.776 266.013C924.119 266.21 924.415 266.473 924.662 266.799C924.91 267.125 925.1 267.499 925.234 267.921C925.418 267.705 925.647 267.58 925.92 267.547C926.199 267.51 926.517 267.595 926.872 267.8C927.215 267.998 927.511 268.26 927.758 268.586C928.012 268.916 928.206 269.292 928.339 269.714C928.473 270.136 928.539 270.581 928.539 271.051L928.539 274.615L927.244 273.867L927.244 270.478C927.244 270.126 927.177 269.806 927.044 269.516C926.91 269.226 926.707 269.003 926.434 268.845C926.161 268.687 925.926 268.662 925.729 268.768C925.539 268.878 925.443 269.186 925.443 269.692L925.443 272.827L924.148 272.079L924.148 268.691C924.148 268.339 924.078 268.016 923.938 267.723C923.805 267.433 923.605 267.211 923.338 267.057C923.059 266.896 922.82 266.869 922.624 266.975C922.433 267.085 922.338 267.393 922.338 267.899L922.338 271.034L921.042 270.286L921.042 264.566ZM931.803 276.631C931.295 276.338 930.851 275.953 930.47 275.476C930.095 274.996 929.809 274.475 929.612 273.914C929.415 273.346 929.317 272.775 929.317 272.203C929.317 271.631 929.415 271.175 929.612 270.834C929.809 270.493 930.095 270.302 930.47 270.262C930.851 270.225 931.295 270.354 931.803 270.647C932.318 270.944 932.762 271.329 933.137 271.802C933.512 272.268 933.794 272.794 933.985 273.38C934.182 273.963 934.28 274.57 934.28 275.201L934.28 275.531L930.603 273.408C930.635 273.712 930.701 273.996 930.803 274.26C930.911 274.521 931.048 274.757 931.213 274.97C931.384 275.179 931.581 275.348 931.803 275.476C932.083 275.637 932.315 275.709 932.499 275.69C932.689 275.668 932.835 275.569 932.937 275.393L934.194 276.119C934.029 276.603 933.737 276.897 933.318 276.999C932.905 277.098 932.4 276.976 931.803 276.631ZM932.985 273.749C932.921 273.316 932.788 272.931 932.585 272.594C932.381 272.249 932.121 271.985 931.803 271.802C931.479 271.615 931.216 271.576 931.013 271.686C930.809 271.789 930.676 272.02 930.613 272.379L932.985 273.749ZM935.062 272.66L936.319 273.386L936.319 274.2C936.484 274.002 936.688 273.889 936.929 273.859C937.17 273.83 937.459 273.912 937.796 274.107C938.139 274.305 938.434 274.567 938.682 274.893C938.93 275.22 939.12 275.594 939.253 276.015C939.438 275.799 939.666 275.674 939.939 275.641C940.219 275.605 940.536 275.689 940.892 275.894C941.235 276.092 941.53 276.354 941.778 276.681C942.032 277.011 942.226 277.387 942.359 277.808C942.492 278.23 942.559 278.675 942.559 279.145L942.559 282.709L941.263 281.961L941.263 278.573C941.263 278.221 941.197 277.9 941.063 277.61C940.93 277.321 940.727 277.097 940.454 276.939C940.181 276.782 939.946 276.756 939.749 276.862C939.558 276.972 939.463 277.28 939.463 277.786L939.463 280.921L938.167 280.173L938.167 276.785C938.167 276.433 938.098 276.111 937.958 275.817C937.824 275.528 937.624 275.306 937.358 275.152C937.078 274.99 936.84 274.963 936.643 275.069C936.453 275.179 936.357 275.487 936.357 275.993L936.357 279.128L935.062 278.38L935.062 272.66ZM945.871 284.753C945.35 284.452 944.896 284.062 944.508 283.581C944.127 283.097 943.835 282.573 943.632 282.008C943.435 281.44 943.337 280.87 943.337 280.298C943.337 279.726 943.435 279.269 943.632 278.928C943.835 278.591 944.127 278.404 944.508 278.367C944.896 278.334 945.35 278.468 945.871 278.769C946.398 279.073 946.852 279.464 947.233 279.94C947.62 280.421 947.912 280.945 948.109 281.513C948.306 282.082 948.405 282.652 948.405 283.224C948.405 283.796 948.306 284.252 948.109 284.593C947.912 284.927 947.62 285.114 947.233 285.154C946.852 285.191 946.398 285.057 945.871 284.753ZM945.871 283.521C946.15 283.682 946.379 283.741 946.557 283.697C946.741 283.656 946.874 283.532 946.957 283.323C947.046 283.11 947.09 282.824 947.09 282.465C947.09 282.105 947.046 281.768 946.957 281.453C946.874 281.141 946.741 280.862 946.557 280.617C946.379 280.367 946.15 280.162 945.871 280.001C945.598 279.843 945.369 279.784 945.185 279.825C945.007 279.861 944.874 279.986 944.785 280.199C944.696 280.411 944.651 280.697 944.651 281.057C944.651 281.416 944.696 281.753 944.785 282.069C944.874 282.377 945.007 282.655 945.185 282.905C945.369 283.158 945.598 283.363 945.871 283.521ZM949.184 280.814L950.441 281.54L950.441 282.53C950.6 282.247 950.803 282.097 951.051 282.079C951.299 282.053 951.588 282.135 951.918 282.326L952.318 282.557L952.318 283.932L951.861 283.668C951.569 283.499 951.321 283.411 951.118 283.404C950.914 283.389 950.756 283.477 950.641 283.668C950.533 283.855 950.479 284.161 950.479 284.587L950.479 287.282L949.184 286.534L949.184 280.814ZM952.835 289.632L953.635 290.094C953.781 290.178 953.896 290.226 953.978 290.237C954.067 290.259 954.137 290.248 954.188 290.204C954.239 290.16 954.289 290.086 954.34 289.984L954.474 289.665L952.597 282.784L953.997 283.593L955.178 288.543L956.322 284.935L957.712 285.738L955.712 290.875C955.598 291.168 955.474 291.39 955.34 291.54C955.207 291.69 955.032 291.769 954.816 291.777C954.607 291.795 954.34 291.711 954.016 291.524L952.835 290.842L952.835 289.632ZM923.29 284.916C922.592 284.513 922.049 284.02 921.661 283.437C921.274 282.854 921.061 282.236 921.023 281.583L922.3 282.32C922.331 282.639 922.436 282.92 922.614 283.162C922.798 283.407 923.04 283.616 923.338 283.789C923.687 283.99 923.973 284.056 924.195 283.987C924.424 283.928 924.538 283.649 924.538 283.151L924.538 282.458C924.367 282.615 924.154 282.69 923.9 282.683C923.652 282.672 923.363 282.571 923.033 282.381C922.57 282.113 922.173 281.759 921.842 281.319C921.512 280.879 921.261 280.393 921.09 279.862C920.918 279.323 920.833 278.774 920.833 278.217C920.833 277.652 920.918 277.203 921.09 276.869C921.261 276.528 921.512 276.329 921.842 276.27C922.173 276.211 922.57 276.316 923.033 276.583C923.376 276.782 923.675 277.027 923.929 277.32C924.189 277.617 924.405 277.955 924.576 278.332L924.576 277.606L925.834 278.332L925.834 283.899C925.834 284.449 925.723 284.843 925.501 285.081C925.278 285.327 924.977 285.431 924.596 285.395C924.214 285.358 923.779 285.198 923.29 284.916ZM923.357 281.391C923.624 281.545 923.846 281.603 924.024 281.566C924.202 281.522 924.335 281.401 924.424 281.204C924.513 280.998 924.557 280.72 924.557 280.368C924.557 280.016 924.513 279.685 924.424 279.377C924.335 279.069 924.202 278.794 924.024 278.552C923.846 278.303 923.624 278.101 923.357 277.947C923.084 277.79 922.859 277.733 922.681 277.777C922.503 277.814 922.37 277.935 922.281 278.14C922.198 278.349 922.157 278.629 922.157 278.982C922.157 279.333 922.198 279.662 922.281 279.966C922.37 280.267 922.503 280.542 922.681 280.791C922.859 281.033 923.084 281.233 923.357 281.391ZM926.819 278.901L928.077 279.627L928.077 280.617C928.236 280.335 928.439 280.185 928.687 280.166C928.934 280.141 929.223 280.223 929.553 280.414L929.954 280.645L929.954 282.02L929.496 281.756C929.204 281.587 928.956 281.499 928.753 281.492C928.55 281.477 928.391 281.565 928.277 281.756C928.169 281.943 928.115 282.249 928.115 282.674L928.115 285.369L926.819 284.621L926.819 278.901ZM932.233 287.879C931.687 287.564 931.249 287.16 930.918 286.669C930.588 286.17 930.423 285.646 930.423 285.096C930.423 284.759 930.49 284.515 930.623 284.364C930.763 284.21 930.972 284.141 931.252 284.155C931.538 284.174 931.906 284.269 932.357 284.441L933.767 284.969L933.767 284.672C933.767 284.416 933.7 284.187 933.567 283.985C933.433 283.783 933.214 283.594 932.909 283.418C932.624 283.253 932.392 283.189 932.214 283.226C932.042 283.266 931.954 283.424 931.947 283.699L930.661 282.956C930.667 282.315 930.877 281.948 931.29 281.856C931.709 281.761 932.246 281.902 932.9 282.28C933.605 282.687 934.135 283.143 934.491 283.649C934.853 284.159 935.034 284.685 935.034 285.228L935.034 289.364L933.805 288.654L933.805 288.016C933.602 288.17 933.37 288.235 933.109 288.209C932.855 288.18 932.563 288.07 932.233 287.879ZM932.557 286.988C932.773 287.113 932.97 287.182 933.147 287.197C933.332 287.215 933.481 287.162 933.595 287.037C933.71 286.913 933.767 286.707 933.767 286.421L933.767 285.937L932.604 285.541C932.3 285.431 932.081 285.393 931.947 285.426C931.814 285.452 931.747 285.578 931.747 285.805C931.747 286.025 931.814 286.24 931.947 286.449C932.087 286.654 932.29 286.834 932.557 286.988ZM938.7 285.629C939.163 285.896 939.56 286.254 939.891 286.701C940.221 287.148 940.472 287.649 940.643 288.203C940.815 288.749 940.9 289.312 940.9 289.891C940.9 290.463 940.815 290.927 940.643 291.283C940.472 291.631 940.221 291.842 939.891 291.915C939.56 291.981 939.163 291.88 938.7 291.613C938.37 291.422 938.077 291.184 937.823 290.898C937.576 290.608 937.366 290.282 937.195 289.919L937.195 292.812L935.899 292.064L935.899 284.144L937.157 284.87L937.157 285.629C937.328 285.442 937.541 285.344 937.795 285.337C938.049 285.33 938.351 285.427 938.7 285.629ZM938.376 286.674C938.109 286.52 937.887 286.465 937.709 286.509C937.531 286.545 937.398 286.67 937.309 286.883C937.22 287.095 937.176 287.381 937.176 287.741C937.176 288.1 937.22 288.437 937.309 288.753C937.398 289.061 937.531 289.339 937.709 289.589C937.887 289.838 938.109 290.04 938.376 290.194C938.649 290.351 938.875 290.408 939.052 290.364C939.23 290.32 939.36 290.194 939.443 289.985C939.532 289.772 939.576 289.486 939.576 289.127C939.576 288.767 939.532 288.43 939.443 288.115C939.36 287.803 939.23 287.526 939.052 287.284C938.875 287.035 938.649 286.831 938.376 286.674ZM941.676 285.279L942.972 286.027L942.972 288.953C943.156 288.795 943.375 288.713 943.629 288.706C943.883 288.698 944.172 288.788 944.496 288.975C944.871 289.191 945.188 289.466 945.449 289.8C945.715 290.13 945.916 290.506 946.049 290.928C946.189 291.353 946.258 291.804 946.258 292.281L946.258 295.845L944.972 295.102L944.972 291.714C944.972 291.355 944.899 291.03 944.753 290.741C944.607 290.444 944.375 290.203 944.058 290.02C943.88 289.917 943.709 289.866 943.543 289.866C943.385 289.862 943.248 289.934 943.134 290.081C943.026 290.231 942.972 290.475 942.972 290.812L942.972 293.947L941.676 293.199L941.676 285.279ZM949.23 297.692C948.525 297.285 947.973 296.805 947.573 296.251C947.179 295.701 946.963 295.067 946.925 294.348L948.182 295.074C948.214 295.445 948.319 295.755 948.497 296.004C948.681 296.257 948.941 296.481 949.278 296.675C949.551 296.833 949.77 296.904 949.935 296.889C950.1 296.867 950.183 296.757 950.183 296.559C950.183 296.42 950.158 296.295 950.107 296.185C950.056 296.075 949.948 295.94 949.783 295.778C949.624 295.613 949.376 295.404 949.04 295.151C948.532 294.755 948.132 294.392 947.839 294.062C947.547 293.732 947.338 293.417 947.211 293.116C947.09 292.819 947.03 292.506 947.03 292.176C947.03 291.633 947.22 291.318 947.601 291.23C947.982 291.142 948.494 291.283 949.135 291.653C949.846 292.064 950.389 292.554 950.764 293.122C951.139 293.683 951.332 294.271 951.345 294.887L950.145 294.194C950.138 293.846 950.043 293.553 949.859 293.314C949.675 293.076 949.434 292.871 949.135 292.698C948.887 292.555 948.684 292.493 948.525 292.511C948.373 292.533 948.297 292.64 948.297 292.83C948.297 292.97 948.328 293.102 948.392 293.226C948.462 293.347 948.579 293.489 948.744 293.65C948.916 293.808 949.167 294.011 949.497 294.26C949.999 294.645 950.392 295.001 950.678 295.327C950.964 295.646 951.167 295.958 951.288 296.262C951.409 296.559 951.469 296.873 951.469 297.203C951.469 297.768 951.263 298.088 950.85 298.165C950.443 298.239 949.903 298.081 949.23 297.692Z" fill="#5F52FF"/>
|
|
462
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 335.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
463
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 327.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
464
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 319.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
465
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 311.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
466
|
+
<path d="M921.986 315V330" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
467
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 899.677 303.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
468
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 834.779 364.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
469
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 834.779 356.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
470
|
+
<path d="M870.986 360V375" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
471
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 848.677 348.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
472
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 394.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
473
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 386.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
474
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 378.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
475
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 370.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
476
|
+
<path d="M818.986 374V389" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
477
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 796.677 362.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
478
|
+
<path d="M49.9563 507.729C49.3657 508.07 48.7592 508.314 48.1368 508.46C47.5081 508.603 46.8889 508.642 46.2792 508.576C45.6759 508.506 45.1138 508.325 44.5931 508.031L45.9648 507.239C46.4539 507.507 46.9429 507.613 47.4319 507.558C47.9145 507.5 48.3972 507.331 48.8799 507.052C49.28 506.821 49.5213 506.59 49.6039 506.359C49.6864 506.128 49.5816 505.929 49.2895 505.76C49.1244 505.665 48.9434 505.611 48.7465 505.6C48.556 505.586 48.2956 505.622 47.9654 505.71C47.6351 505.791 47.1969 505.941 46.6507 506.161C45.9648 506.44 45.3552 506.634 44.8217 506.744C44.2882 506.847 43.7928 506.869 43.3356 506.81C42.8847 506.748 42.4528 506.598 42.04 506.36C41.659 506.139 41.4272 505.885 41.3446 505.595C41.2684 505.302 41.3414 504.995 41.5637 504.676C41.7923 504.354 42.167 504.042 42.6878 503.741C43.5833 503.224 44.4724 502.946 45.3552 502.905C46.2379 502.865 47.054 503.047 47.8034 503.45L46.4602 504.225C46.0347 504.009 45.606 503.916 45.1742 503.945C44.7423 503.967 44.2882 504.115 43.8119 504.39C43.4562 504.596 43.2403 504.801 43.1641 505.006C43.0942 505.208 43.1768 505.377 43.4118 505.512C43.5833 505.611 43.7643 505.672 43.9548 505.694C44.1517 505.712 44.4057 505.683 44.7169 505.606C45.0344 505.525 45.4504 505.384 45.9648 505.182C46.746 504.863 47.416 504.649 47.9749 504.539C48.5401 504.425 49.0323 504.401 49.4515 504.467C49.877 504.53 50.2802 504.671 50.6613 504.891C51.1059 505.148 51.3662 505.437 51.4424 505.76C51.5187 506.075 51.4266 506.403 51.1662 506.744C50.9122 507.082 50.5089 507.41 49.9563 507.729ZM56.1329 504.163C55.6248 504.456 55.0691 504.649 54.4658 504.74C53.8624 504.825 53.2686 504.812 52.6844 504.702C52.0937 504.588 51.5507 504.388 51.0554 504.102C50.56 503.816 50.2139 503.503 50.017 503.162C49.8201 502.821 49.7979 502.478 49.9503 502.133C50.1091 501.785 50.4425 501.464 50.9506 501.171C51.465 500.874 52.0207 500.681 52.6177 500.593C53.2083 500.502 53.8053 500.52 54.4086 500.648C55.0119 500.769 55.5867 500.988 56.1329 501.303L56.4187 501.468L52.7415 503.591C53.021 503.716 53.3004 503.8 53.5798 503.844C53.8593 503.881 54.1324 503.881 54.3991 503.844C54.6658 503.8 54.9103 503.714 55.1326 503.585C55.4121 503.424 55.5899 503.259 55.6661 503.09C55.7423 502.914 55.7296 502.738 55.628 502.562L56.8855 501.836C57.222 502.221 57.33 502.621 57.2093 503.035C57.0887 503.442 56.7299 503.818 56.1329 504.163ZM54.2276 501.699C53.8212 501.538 53.4211 501.461 53.0273 501.468C52.6272 501.472 52.2684 501.565 51.9508 501.748C51.6269 501.935 51.4618 502.144 51.4555 502.375C51.4428 502.603 51.5761 502.834 51.8556 503.068L54.2276 501.699ZM54.7045 499.136L55.9619 498.41L56.8193 498.905C56.6542 498.626 56.6256 498.375 56.7336 498.151C56.8352 497.924 57.0511 497.715 57.3813 497.524L57.7814 497.293L58.9722 497.981L58.515 498.245C58.2228 498.413 58.0228 498.584 57.9148 498.756C57.8005 498.925 57.7973 499.106 57.9053 499.301C58.0132 499.488 58.2514 499.688 58.6198 499.9L60.9537 501.248L59.6581 501.996L54.7045 499.136ZM58.4985 496.945L59.8989 496.137L64.843 497.583L62.3186 494.74L63.7094 493.937L66.8054 497.869L65.3193 498.727L58.4985 496.945ZM64.6205 493.411L65.9161 492.663L70.8697 495.523L69.5742 496.271L64.6205 493.411ZM62.7152 492.311L64.0108 491.563L65.1635 492.228L63.8679 492.976L62.7152 492.311ZM74.6258 493.486C74.1177 493.779 73.5652 493.97 72.9682 494.058C72.3712 494.139 71.7806 494.124 71.1963 494.014C70.6057 493.9 70.0627 493.701 69.5673 493.415C69.0719 493.129 68.7258 492.815 68.5289 492.474C68.3321 492.133 68.3067 491.792 68.4527 491.451C68.6052 491.106 68.9354 490.787 69.4435 490.494C70.123 490.102 70.8343 489.889 71.5774 489.856C72.3204 489.823 73.0222 489.953 73.6827 490.247L72.3871 490.995C72.0695 490.877 71.7457 490.83 71.4154 490.852C71.0852 490.866 70.7835 490.952 70.5104 491.11C70.2564 491.257 70.1071 491.416 70.0627 491.589C70.0119 491.757 70.0563 491.933 70.196 492.117C70.3421 492.296 70.5707 492.476 70.8819 492.656C71.1931 492.835 71.5043 492.967 71.8155 493.052C72.1267 493.129 72.4315 493.154 72.73 493.129C73.0285 493.103 73.3048 493.017 73.5588 492.87C73.8446 492.705 73.997 492.525 74.0161 492.331C74.0415 492.133 73.9303 491.937 73.6827 491.743L74.9782 490.995C75.5054 491.387 75.7467 491.805 75.7022 492.249C75.6514 492.689 75.2926 493.101 74.6258 493.486ZM80.3188 490.199C79.8108 490.493 79.2551 490.685 78.6517 490.777C78.0484 490.861 77.4546 490.848 76.8703 490.738C76.2797 490.625 75.7367 490.425 75.2413 490.139C74.746 489.853 74.3998 489.539 74.203 489.198C74.0061 488.857 73.9839 488.514 74.1363 488.17C74.295 487.821 74.6285 487.501 75.1365 487.207C75.651 486.91 76.2067 486.718 76.8036 486.63C77.3943 486.538 77.9912 486.556 78.5946 486.685C79.1979 486.806 79.7727 487.024 80.3188 487.339L80.6046 487.504L76.9275 489.627C77.2069 489.752 77.4864 489.836 77.7658 489.88C78.0452 489.917 78.3183 489.917 78.5851 489.88C78.8518 489.836 79.0963 489.75 79.3186 489.622C79.598 489.46 79.7758 489.295 79.852 489.127C79.9283 488.951 79.9156 488.775 79.8139 488.599L81.0714 487.873C81.408 488.258 81.516 488.657 81.3953 489.072C81.2746 489.479 80.9158 489.855 80.3188 490.199ZM78.4136 487.735C78.0071 487.574 77.607 487.497 77.2133 487.504C76.8132 487.508 76.4543 487.601 76.1368 487.785C75.8129 487.972 75.6478 488.181 75.6414 488.412C75.6287 488.639 75.7621 488.87 76.0415 489.105L78.4136 487.735ZM79.5728 482.578L80.9636 481.775L83.6786 483.342L86.727 481.582L84.0121 480.015L85.4029 479.212L92.2618 483.172L90.871 483.975L87.9845 482.308L84.9361 484.068L87.8226 485.735L86.4317 486.538L79.5728 482.578ZM95.3809 481.503C94.8347 481.818 94.2663 481.996 93.6757 482.037C93.0787 482.073 92.5421 481.954 92.0658 481.679C91.7736 481.51 91.5958 481.331 91.5323 481.14C91.4688 480.942 91.5133 480.726 91.6657 480.491C91.8244 480.253 92.0912 479.981 92.4659 479.677L93.6281 478.72L93.3709 478.572C93.1486 478.443 92.9168 478.386 92.6755 478.401C92.4341 478.416 92.161 478.511 91.8562 478.687C91.5704 478.852 91.3989 479.021 91.3418 479.193C91.291 479.362 91.3831 479.518 91.618 479.661L90.332 480.403C89.7795 480.077 89.5667 479.712 89.6937 479.309C89.8208 478.898 90.2113 478.504 90.8655 478.126C91.5704 477.719 92.2309 477.488 92.8469 477.433C93.4693 477.374 94.0155 477.481 94.4855 477.752L98.0673 479.82L96.8384 480.53L96.2859 480.211C96.3177 480.464 96.2573 480.696 96.1049 480.909C95.9525 481.114 95.7112 481.312 95.3809 481.503ZM94.7712 480.777C94.9872 480.652 95.1459 480.517 95.2476 480.37C95.3555 480.22 95.3841 480.064 95.3333 479.903C95.2825 479.741 95.1332 479.589 94.8856 479.446L94.4664 479.204L93.5424 480.013C93.2947 480.222 93.1518 480.392 93.1137 480.524C93.0692 480.652 93.1454 480.773 93.3423 480.887C93.5328 480.997 93.7519 481.047 93.9996 481.036C94.2473 481.017 94.5045 480.931 94.7712 480.777ZM94.3602 476.24L95.6177 475.514L96.294 475.905C96.2369 475.659 96.2686 475.421 96.3893 475.19C96.5036 474.955 96.7291 474.741 97.0657 474.546C97.4404 474.33 97.8373 474.193 98.2564 474.134C98.6756 474.068 99.1011 474.083 99.533 474.178C99.9712 474.27 100.397 474.435 100.809 474.673L103.896 476.455L102.61 477.197L99.6759 475.503C99.3647 475.324 99.0471 475.225 98.7232 475.206C98.393 475.184 98.0691 475.265 97.7516 475.448C97.5737 475.551 97.4435 475.674 97.361 475.817C97.2784 475.953 97.2721 476.107 97.3419 476.279C97.4181 476.448 97.6023 476.616 97.8944 476.785L100.609 478.352L99.3139 479.1L94.3602 476.24ZM107.373 474.58C106.909 474.847 106.401 475.012 105.849 475.075C105.29 475.133 104.731 475.1 104.172 474.976C103.607 474.847 103.076 474.64 102.581 474.354C102.079 474.064 101.72 473.758 101.505 473.436C101.282 473.109 101.225 472.787 101.333 472.468C101.441 472.149 101.727 471.855 102.19 471.588C102.521 471.397 102.87 471.265 103.238 471.192C103.613 471.115 104 471.093 104.401 471.126L101.905 469.685L103.2 468.937L110.059 472.897L108.802 473.623L108.144 473.243C108.221 473.485 108.198 473.718 108.078 473.942C107.957 474.165 107.722 474.378 107.373 474.58ZM106.63 473.777C106.896 473.623 107.055 473.458 107.106 473.282C107.157 473.106 107.116 472.928 106.982 472.748C106.842 472.565 106.617 472.383 106.306 472.204C105.995 472.024 105.68 471.894 105.363 471.813C105.045 471.732 104.737 471.709 104.439 471.742C104.134 471.771 103.848 471.863 103.581 472.017C103.308 472.174 103.146 472.341 103.095 472.517C103.038 472.689 103.08 472.867 103.219 473.051C103.365 473.23 103.594 473.41 103.905 473.59C104.216 473.769 104.528 473.901 104.839 473.986C105.15 474.063 105.458 474.086 105.763 474.057C106.068 474.028 106.357 473.934 106.63 473.777ZM104.567 468.148L105.862 467.4L112.721 471.36L111.426 472.108L104.567 468.148ZM116.486 469.318C115.978 469.611 115.423 469.804 114.819 469.895C114.216 469.98 113.622 469.967 113.038 469.857C112.447 469.743 111.904 469.543 111.409 469.257C110.913 468.971 110.567 468.658 110.37 468.317C110.174 467.976 110.151 467.633 110.304 467.288C110.463 466.94 110.796 466.619 111.304 466.326C111.818 466.029 112.374 465.836 112.971 465.748C113.562 465.657 114.159 465.675 114.762 465.803C115.365 465.924 115.94 466.143 116.486 466.458L116.772 466.623L113.095 468.746C113.374 468.871 113.654 468.955 113.933 468.999C114.213 469.036 114.486 469.036 114.753 468.999C115.019 468.955 115.264 468.869 115.486 468.74C115.766 468.579 115.943 468.414 116.02 468.245C116.096 468.069 116.083 467.893 115.981 467.717L117.239 466.991C117.575 467.376 117.683 467.776 117.563 468.19C117.442 468.597 117.083 468.973 116.486 469.318ZM114.581 466.854C114.175 466.693 113.775 466.616 113.381 466.623C112.981 466.627 112.622 466.72 112.304 466.903C111.98 467.09 111.815 467.299 111.809 467.53C111.796 467.758 111.93 467.989 112.209 468.223L114.581 466.854ZM115.058 464.291L116.315 463.565L117.173 464.06C117.008 463.781 116.979 463.53 117.087 463.306C117.189 463.079 117.405 462.87 117.735 462.679L118.135 462.448L119.326 463.136L118.868 463.4C118.576 463.568 118.376 463.739 118.268 463.911C118.154 464.08 118.151 464.261 118.259 464.456C118.367 464.643 118.605 464.842 118.973 465.055L121.307 466.403L120.012 467.151L115.058 464.291ZM126.349 463.624C125.644 464.031 124.952 464.269 124.272 464.339C123.599 464.405 122.942 464.274 122.3 463.948L123.558 463.222C123.895 463.38 124.215 463.444 124.52 463.415C124.831 463.382 125.155 463.268 125.492 463.074C125.765 462.916 125.936 462.762 126.006 462.612C126.07 462.458 126.016 462.331 125.844 462.232C125.724 462.162 125.603 462.122 125.482 462.111C125.362 462.1 125.19 462.126 124.968 462.188C124.746 462.243 124.441 462.353 124.053 462.518C123.456 462.76 122.942 462.925 122.51 463.013C122.078 463.101 121.7 463.125 121.376 463.085C121.059 463.041 120.757 462.936 120.471 462.771C120.001 462.5 119.824 462.177 119.938 461.803C120.052 461.429 120.43 461.057 121.072 460.687C121.783 460.276 122.478 460.05 123.158 460.01C123.831 459.966 124.438 460.093 124.977 460.39L123.777 461.083C123.472 460.914 123.171 460.85 122.872 460.89C122.574 460.93 122.275 461.037 121.977 461.209C121.729 461.352 121.573 461.497 121.51 461.644C121.453 461.787 121.507 461.906 121.672 462.001C121.792 462.071 121.923 462.109 122.062 462.117C122.202 462.117 122.383 462.085 122.605 462.023C122.828 461.953 123.129 461.838 123.51 461.677C124.095 461.435 124.599 461.271 125.025 461.187C125.444 461.099 125.816 461.079 126.14 461.127C126.457 461.171 126.759 461.275 127.045 461.44C127.534 461.722 127.708 462.062 127.569 462.458C127.429 462.846 127.022 463.235 126.349 463.624Z" fill="#465358"/>
|
|
479
|
+
<path d="M154.49 334.421C153.766 334.839 152.988 335.108 152.156 335.229C151.324 335.343 150.505 335.321 149.698 335.163C148.898 335.002 148.171 334.733 147.517 334.355C146.856 333.974 146.389 333.554 146.116 333.095C145.843 332.63 145.808 332.159 146.011 331.682C146.215 331.198 146.678 330.747 147.402 330.329C147.961 330.006 148.568 329.781 149.222 329.652C149.876 329.524 150.53 329.495 151.184 329.564C151.838 329.634 152.451 329.786 153.023 330.021L151.613 330.835C151.289 330.721 150.952 330.652 150.603 330.626C150.26 330.597 149.917 330.619 149.574 330.692C149.238 330.762 148.926 330.879 148.641 331.044C148.196 331.301 147.926 331.574 147.831 331.863C147.736 332.153 147.793 332.439 148.002 332.721C148.206 333 148.526 333.266 148.965 333.519C149.396 333.768 149.857 333.953 150.346 334.074C150.829 334.192 151.324 334.225 151.832 334.173C152.334 334.118 152.807 333.963 153.251 333.706C153.563 333.526 153.772 333.332 153.88 333.123C153.988 332.914 154.004 332.703 153.928 332.49C153.858 332.274 153.705 332.069 153.471 331.874L154.871 331.066C155.322 331.4 155.62 331.763 155.766 332.155C155.919 332.544 155.887 332.936 155.671 333.332C155.461 333.724 155.068 334.087 154.49 334.421ZM161.074 330.62C160.553 330.921 159.988 331.119 159.378 331.214C158.768 331.302 158.168 331.293 157.577 331.186C156.987 331.073 156.444 330.873 155.948 330.587C155.453 330.301 155.107 329.987 154.91 329.646C154.72 329.302 154.704 328.955 154.862 328.607C155.028 328.255 155.371 327.929 155.891 327.628C156.418 327.324 156.984 327.126 157.587 327.034C158.197 326.939 158.797 326.948 159.387 327.061C159.978 327.175 160.521 327.375 161.016 327.661C161.512 327.947 161.858 328.26 162.055 328.601C162.245 328.939 162.261 329.285 162.102 329.641C161.944 329.989 161.601 330.316 161.074 330.62ZM160.007 330.004C160.286 329.843 160.451 329.674 160.502 329.498C160.559 329.318 160.518 329.14 160.378 328.964C160.238 328.781 160.013 328.6 159.702 328.42C159.391 328.24 159.076 328.11 158.759 328.029C158.448 327.945 158.139 327.921 157.835 327.958C157.53 327.987 157.238 328.083 156.958 328.244C156.685 328.402 156.52 328.57 156.463 328.75C156.406 328.922 156.447 329.1 156.587 329.283C156.726 329.467 156.952 329.648 157.263 329.828C157.574 330.008 157.889 330.138 158.206 330.218C158.517 330.295 158.825 330.319 159.13 330.29C159.441 330.257 159.734 330.162 160.007 330.004ZM159.7 325.561L160.957 324.835L161.815 325.33C161.65 325.051 161.621 324.8 161.729 324.576C161.831 324.349 162.047 324.14 162.377 323.949L162.777 323.718L163.968 324.406L163.51 324.67C163.218 324.839 163.018 325.009 162.91 325.181C162.796 325.35 162.793 325.532 162.901 325.726C163.009 325.913 163.247 326.113 163.615 326.325L165.949 327.673L164.654 328.421L159.7 325.561ZM163.942 323.112L165.199 322.386L166.057 322.881C165.891 322.602 165.863 322.351 165.971 322.127C166.072 321.9 166.288 321.691 166.619 321.5L167.019 321.269L168.209 321.957L167.752 322.221C167.46 322.39 167.26 322.56 167.152 322.732C167.038 322.901 167.035 323.083 167.143 323.277C167.25 323.464 167.489 323.664 167.857 323.876L170.191 325.224L168.895 325.972L163.942 323.112ZM175.528 322.274C175.02 322.568 174.464 322.76 173.861 322.852C173.258 322.936 172.664 322.923 172.08 322.813C171.489 322.7 170.946 322.5 170.451 322.214C169.955 321.928 169.609 321.614 169.412 321.273C169.215 320.932 169.193 320.59 169.346 320.245C169.504 319.897 169.838 319.576 170.346 319.282C170.86 318.985 171.416 318.793 172.013 318.705C172.604 318.613 173.201 318.632 173.804 318.76C174.407 318.881 174.982 319.099 175.528 319.414L175.814 319.579L172.137 321.702C172.416 321.827 172.696 321.911 172.975 321.955C173.255 321.992 173.528 321.992 173.794 321.955C174.061 321.911 174.306 321.825 174.528 321.697C174.807 321.536 174.985 321.371 175.061 321.202C175.138 321.026 175.125 320.85 175.023 320.674L176.281 319.948C176.617 320.333 176.725 320.733 176.605 321.147C176.484 321.554 176.125 321.93 175.528 322.274ZM173.623 319.81C173.217 319.649 172.816 319.572 172.423 319.579C172.023 319.583 171.664 319.677 171.346 319.86C171.022 320.047 170.857 320.256 170.851 320.487C170.838 320.714 170.971 320.945 171.251 321.18L173.623 319.81ZM181.445 318.859C180.937 319.152 180.384 319.343 179.787 319.431C179.19 319.511 178.599 319.497 178.015 319.387C177.424 319.273 176.881 319.073 176.386 318.787C175.891 318.501 175.545 318.188 175.348 317.847C175.151 317.506 175.125 317.165 175.272 316.824C175.424 316.479 175.754 316.16 176.262 315.867C176.942 315.474 177.653 315.262 178.396 315.229C179.139 315.196 179.841 315.326 180.501 315.619L179.206 316.367C178.888 316.25 178.564 316.202 178.234 316.224C177.904 316.239 177.602 316.325 177.329 316.483C177.075 316.629 176.926 316.789 176.881 316.961C176.831 317.13 176.875 317.306 177.015 317.489C177.161 317.669 177.39 317.848 177.701 318.028C178.012 318.208 178.323 318.34 178.634 318.424C178.946 318.501 179.25 318.527 179.549 318.501C179.847 318.475 180.124 318.389 180.378 318.243C180.663 318.078 180.816 317.898 180.835 317.704C180.86 317.506 180.749 317.309 180.501 317.115L181.797 316.367C182.324 316.759 182.566 317.177 182.521 317.621C182.47 318.061 182.111 318.474 181.445 318.859ZM186.68 315.704C186.369 315.883 186.077 316.012 185.804 316.089C185.525 316.162 185.229 316.179 184.918 316.138C184.613 316.094 184.289 315.973 183.946 315.775L181.279 314.235L180.422 314.73L179.44 314.164L180.298 313.669L178.774 312.789L180.069 312.041L181.593 312.921L182.832 312.206L183.813 312.772L182.575 313.487L185.109 314.95C185.267 315.042 185.42 315.09 185.566 315.093C185.706 315.093 185.861 315.044 186.033 314.945L186.804 314.499L187.785 315.066L186.68 315.704ZM183.941 311.565L185.237 310.817L190.191 313.677L188.895 314.425L183.941 311.565ZM182.036 310.465L183.332 309.717L184.484 310.383L183.189 311.131L182.036 310.465ZM193.994 311.613C193.474 311.914 192.908 312.112 192.299 312.207C191.689 312.295 191.089 312.286 190.498 312.18C189.908 312.066 189.365 311.866 188.869 311.58C188.374 311.294 188.028 310.981 187.831 310.64C187.64 310.295 187.624 309.948 187.783 309.6C187.948 309.248 188.291 308.922 188.812 308.621C189.339 308.317 189.904 308.119 190.508 308.027C191.117 307.932 191.718 307.941 192.308 308.055C192.899 308.168 193.442 308.368 193.937 308.654C194.433 308.94 194.779 309.254 194.976 309.595C195.166 309.932 195.182 310.278 195.023 310.634C194.864 310.982 194.521 311.309 193.994 311.613ZM192.927 310.997C193.207 310.836 193.372 310.667 193.423 310.491C193.48 310.311 193.439 310.134 193.299 309.958C193.159 309.774 192.934 309.593 192.623 309.413C192.311 309.233 191.997 309.103 191.679 309.023C191.368 308.938 191.06 308.914 190.755 308.951C190.451 308.98 190.158 309.076 189.879 309.237C189.606 309.395 189.441 309.563 189.384 309.743C189.326 309.915 189.368 310.093 189.507 310.277C189.647 310.46 189.873 310.641 190.184 310.821C190.495 311.001 190.809 311.131 191.127 311.212C191.438 311.289 191.746 311.312 192.051 311.283C192.362 311.25 192.654 311.155 192.927 310.997ZM192.621 306.554L193.878 305.828L194.554 306.219C194.497 305.973 194.529 305.735 194.65 305.504C194.764 305.269 194.989 305.055 195.326 304.86C195.701 304.644 196.098 304.506 196.517 304.448C196.936 304.382 197.362 304.396 197.793 304.492C198.232 304.583 198.657 304.748 199.07 304.987L202.156 306.769L200.87 307.511L197.936 305.817C197.625 305.638 197.308 305.539 196.984 305.52C196.653 305.498 196.33 305.579 196.012 305.762C195.834 305.865 195.704 305.988 195.621 306.131C195.539 306.266 195.532 306.42 195.602 306.593C195.679 306.761 195.863 306.93 196.155 307.099L198.87 308.666L197.574 309.414L192.621 306.554ZM205.624 304.899C204.919 305.306 204.226 305.544 203.547 305.614C202.874 305.68 202.216 305.55 201.575 305.223L202.832 304.497C203.169 304.655 203.49 304.719 203.795 304.69C204.106 304.657 204.43 304.543 204.766 304.349C205.039 304.191 205.211 304.037 205.281 303.887C205.344 303.733 205.29 303.606 205.119 303.507C204.998 303.438 204.877 303.397 204.757 303.386C204.636 303.375 204.465 303.401 204.242 303.463C204.02 303.518 203.715 303.628 203.328 303.793C202.731 304.035 202.216 304.2 201.785 304.288C201.353 304.376 200.975 304.4 200.651 304.36C200.333 304.316 200.032 304.211 199.746 304.046C199.276 303.775 199.098 303.452 199.212 303.078C199.327 302.704 199.705 302.332 200.346 301.962C201.057 301.551 201.753 301.326 202.432 301.285C203.106 301.241 203.712 301.368 204.252 301.665L203.052 302.358C202.747 302.189 202.445 302.125 202.147 302.165C201.848 302.206 201.55 302.312 201.251 302.484C201.003 302.627 200.848 302.772 200.784 302.919C200.727 303.062 200.781 303.181 200.946 303.276C201.067 303.346 201.197 303.385 201.337 303.392C201.477 303.392 201.658 303.361 201.88 303.298C202.102 303.229 202.404 303.113 202.785 302.952C203.369 302.71 203.874 302.547 204.299 302.462C204.719 302.374 205.09 302.354 205.414 302.402C205.732 302.446 206.033 302.55 206.319 302.715C206.808 302.998 206.983 303.337 206.843 303.733C206.703 304.122 206.297 304.51 205.624 304.899Z" fill="#465358"/>
|
|
480
|
+
<path d="M351 480L419.637 519.627L431.754 520.623L430.029 513.627L361.392 474" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
|
|
481
|
+
<mask id="path-452-inside-10_2103_371" fill="white">
|
|
482
|
+
<path d="M806 702.166V718.424L778 734.59L750 718.424V702.166L778 686L806 702.166Z"/>
|
|
483
|
+
</mask>
|
|
484
|
+
<path d="M806 702.166V718.424L778 734.59L750 718.424V702.166L778 686L806 702.166Z" fill="#F8F7FF"/>
|
|
485
|
+
<path d="M806 702.166H808V701.011L807 700.434L806 702.166ZM806 718.424L807 720.156L808 719.579V718.424H806ZM778 734.59L777 736.322L778 736.899L779 736.322L778 734.59ZM750 718.424H748V719.579L749 720.156L750 718.424ZM750 702.166L749 700.434L748 701.011V702.166H750ZM778 686L779 684.268L778 683.691L777 684.268L778 686ZM806 702.166H804V718.424H806H808V702.166H806ZM806 718.424L805 716.692L777 732.858L778 734.59L779 736.322L807 720.156L806 718.424ZM778 734.59L779 732.858L751 716.692L750 718.424L749 720.156L777 736.322L778 734.59ZM750 718.424H752V702.166H750H748V718.424H750ZM750 702.166L751 703.898L779 687.732L778 686L777 684.268L749 700.434L750 702.166ZM778 686L777 687.732L805 703.898L806 702.166L807 700.434L779 684.268L778 686Z" fill="#5F52FF" mask="url(#path-452-inside-10_2103_371)"/>
|
|
486
|
+
<rect x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 750.232 703.032)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
487
|
+
<path d="M778 718.166L778 732.166" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
488
|
+
<mask id="path-456-inside-11_2103_371" fill="white">
|
|
489
|
+
<path d="M806 678.166V694.424L778 710.59L750 694.424V678.166L778 662L806 678.166Z"/>
|
|
490
|
+
</mask>
|
|
491
|
+
<path d="M806 678.166V694.424L778 710.59L750 694.424V678.166L778 662L806 678.166Z" fill="#F8F7FF"/>
|
|
492
|
+
<path d="M806 678.166H808V677.011L807 676.434L806 678.166ZM806 694.424L807 696.156L808 695.579V694.424H806ZM778 710.59L777 712.322L778 712.899L779 712.322L778 710.59ZM750 694.424H748V695.579L749 696.156L750 694.424ZM750 678.166L749 676.434L748 677.011V678.166H750ZM778 662L779 660.268L778 659.691L777 660.268L778 662ZM806 678.166H804V694.424H806H808V678.166H806ZM806 694.424L805 692.692L777 708.858L778 710.59L779 712.322L807 696.156L806 694.424ZM778 710.59L779 708.858L751 692.692L750 694.424L749 696.156L777 712.322L778 710.59ZM750 694.424H752V678.166H750H748V694.424H750ZM750 678.166L751 679.898L779 663.732L778 662L777 660.268L749 676.434L750 678.166ZM778 662L777 663.732L805 679.898L806 678.166L807 676.434L779 660.268L778 662Z" fill="#5F52FF" mask="url(#path-456-inside-11_2103_371)"/>
|
|
493
|
+
<rect x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 750.232 679.032)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
494
|
+
<path d="M778 694.166L778 708.166" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
495
|
+
<mask id="path-460-inside-12_2103_371" fill="white">
|
|
496
|
+
<path d="M809 650.294L808.998 650.295H809V668.295L778 686.193L747 668.295V650.295H747.002L747 650.294L778 632.397L809 650.294Z"/>
|
|
497
|
+
</mask>
|
|
498
|
+
<path d="M809 650.294L808.998 650.295H809V668.295L778 686.193L747 668.295V650.295H747.002L747 650.294L778 632.397L809 650.294Z" fill="#F8F7FF"/>
|
|
499
|
+
<path d="M809 650.294L809.894 652.083L813.219 650.421L810 648.562L809 650.294ZM808.998 650.295L808.104 648.507L808.998 652.295V650.295ZM809 650.295H811V648.295H809V650.295ZM809 668.295L810 670.027L811 669.45V668.295H809ZM778 686.193L777 687.925L778 688.502L779 687.925L778 686.193ZM747 668.295H745V669.45L746 670.027L747 668.295ZM747 650.295V648.295H745V650.295H747ZM747.002 650.295V652.295L747.896 648.507L747.002 650.295ZM747 650.294L746 648.562L742.781 650.421L746.106 652.083L747 650.294ZM778 632.397L779 630.665L778 630.088L777 630.665L778 632.397ZM809 650.294L808.106 648.506L808.104 648.507L808.998 650.295L809.892 652.084L809.894 652.083L809 650.294ZM808.998 650.295V652.295H809V650.295V648.295H808.998V650.295ZM809 650.295H807V668.295H809H811V650.295H809ZM809 668.295L808 666.563L777 684.461L778 686.193L779 687.925L810 670.027L809 668.295ZM778 686.193L779 684.461L748 666.563L747 668.295L746 670.027L777 687.925L778 686.193ZM747 668.295H749V650.295H747H745V668.295H747ZM747 650.295V652.295H747.002V650.295V648.295H747V650.295ZM747.002 650.295L747.896 648.507L747.894 648.506L747 650.294L746.106 652.083L746.108 652.084L747.002 650.295ZM747 650.294L748 652.026L779 634.129L778 632.397L777 630.665L746 648.562L747 650.294ZM778 632.397L777 634.129L808 652.026L809 650.294L810 648.562L779 630.665L778 632.397Z" fill="#5F52FF" mask="url(#path-460-inside-12_2103_371)"/>
|
|
500
|
+
<rect x="1.73205" width="33.7957" height="33.7957" transform="matrix(0.866025 -0.5 0.866025 0.5 747.232 651.161)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
501
|
+
<path d="M778 668.009L778 683.509" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
502
|
+
<rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 741.732 642.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
503
|
+
<path d="M777.939 646V661" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
504
|
+
<rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 755.63 634.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
505
|
+
<path d="M176.406 454.892L179.017 456.399C179.785 456.843 180.426 457.385 180.941 458.027C181.462 458.665 181.849 459.354 182.103 460.095C182.357 460.836 182.484 461.591 182.484 462.361C182.484 463.124 182.357 463.729 182.103 464.176C181.849 464.623 181.462 464.869 180.941 464.913C180.426 464.961 179.785 464.763 179.017 464.319L176.406 462.812L176.406 454.892ZM179.017 462.933C179.48 463.201 179.861 463.311 180.16 463.263C180.465 463.212 180.687 463.036 180.827 462.735C180.966 462.427 181.036 462.024 181.036 461.525C181.036 461.019 180.966 460.535 180.827 460.073C180.687 459.604 180.465 459.171 180.16 458.775C179.861 458.383 179.48 458.053 179.017 457.785L177.797 457.081L177.797 462.229L179.017 462.933ZM183.251 461.044L184.547 461.792L184.547 467.512L183.251 466.764L183.251 461.044ZM183.251 458.844L184.547 459.592L184.547 460.923L183.251 460.175L183.251 458.844ZM187.512 469.356C186.807 468.949 186.255 468.469 185.855 467.915C185.461 467.365 185.245 466.731 185.207 466.012L186.464 466.738C186.496 467.108 186.601 467.418 186.779 467.667C186.963 467.92 187.223 468.144 187.56 468.338C187.833 468.496 188.052 468.568 188.217 468.553C188.382 468.531 188.465 468.421 188.465 468.223C188.465 468.084 188.439 467.959 188.389 467.849C188.338 467.739 188.23 467.603 188.065 467.442C187.906 467.277 187.658 467.068 187.322 466.815C186.814 466.419 186.414 466.056 186.121 465.726C185.829 465.396 185.62 465.081 185.493 464.78C185.372 464.483 185.312 464.169 185.312 463.839C185.312 463.297 185.502 462.981 185.883 462.893C186.264 462.805 186.776 462.947 187.417 463.317C188.128 463.728 188.671 464.217 189.046 464.785C189.421 465.346 189.614 465.935 189.627 466.551L188.427 465.858C188.42 465.51 188.325 465.216 188.141 464.978C187.957 464.74 187.715 464.534 187.417 464.362C187.169 464.219 186.966 464.157 186.807 464.175C186.655 464.197 186.579 464.303 186.579 464.494C186.579 464.633 186.61 464.765 186.674 464.89C186.744 465.011 186.861 465.152 187.026 465.313C187.198 465.471 187.449 465.675 187.779 465.924C188.281 466.309 188.674 466.665 188.96 466.991C189.246 467.31 189.449 467.622 189.57 467.926C189.691 468.223 189.751 468.536 189.751 468.866C189.751 469.431 189.545 469.752 189.132 469.829C188.725 469.902 188.185 469.745 187.512 469.356ZM192.692 472.346C192.184 472.053 191.742 471.67 191.367 471.197C190.999 470.72 190.717 470.201 190.52 469.64C190.323 469.072 190.224 468.502 190.224 467.93C190.224 467.358 190.323 466.901 190.52 466.56C190.717 466.219 190.999 466.027 191.367 465.983C191.742 465.942 192.184 466.069 192.692 466.362C193.371 466.755 193.911 467.264 194.311 467.891C194.711 468.518 194.949 469.191 195.026 469.91L193.73 469.162C193.673 468.828 193.552 468.524 193.368 468.249C193.19 467.97 192.965 467.752 192.692 467.594C192.438 467.448 192.225 467.398 192.053 467.446C191.882 467.486 191.752 467.613 191.663 467.825C191.58 468.042 191.539 468.329 191.539 468.689C191.539 469.048 191.58 469.384 191.663 469.695C191.752 470.003 191.882 470.28 192.053 470.526C192.225 470.771 192.438 470.968 192.692 471.114C192.977 471.279 193.209 471.321 193.387 471.241C193.571 471.164 193.686 470.969 193.73 470.658L195.026 471.406C194.949 472.058 194.708 472.476 194.302 472.66C193.895 472.836 193.358 472.731 192.692 472.346ZM198.051 475.441C197.531 475.14 197.076 474.749 196.689 474.269C196.308 473.785 196.016 473.261 195.813 472.696C195.616 472.128 195.517 471.558 195.517 470.986C195.517 470.414 195.616 469.957 195.813 469.616C196.016 469.279 196.308 469.092 196.689 469.055C197.076 469.022 197.531 469.156 198.051 469.457C198.578 469.761 199.032 470.151 199.414 470.628C199.801 471.108 200.093 471.633 200.29 472.201C200.487 472.769 200.585 473.34 200.585 473.912C200.585 474.484 200.487 474.94 200.29 475.281C200.093 475.615 199.801 475.802 199.414 475.842C199.032 475.879 198.578 475.745 198.051 475.441ZM198.051 474.209C198.331 474.37 198.559 474.429 198.737 474.385C198.921 474.344 199.055 474.22 199.137 474.011C199.226 473.798 199.271 473.512 199.271 473.153C199.271 472.793 199.226 472.456 199.137 472.141C199.055 471.829 198.921 471.55 198.737 471.305C198.559 471.055 198.331 470.85 198.051 470.689C197.778 470.531 197.55 470.472 197.365 470.513C197.188 470.549 197.054 470.674 196.965 470.887C196.876 471.099 196.832 471.385 196.832 471.745C196.832 472.104 196.876 472.441 196.965 472.757C197.054 473.065 197.188 473.343 197.365 473.593C197.55 473.846 197.778 474.051 198.051 474.209ZM201.364 471.502L202.622 472.228L202.622 473.218C202.781 472.935 202.984 472.785 203.232 472.767C203.479 472.741 203.768 472.823 204.099 473.014L204.499 473.245L204.499 474.62L204.041 474.356C203.749 474.187 203.502 474.099 203.298 474.092C203.095 474.077 202.936 474.165 202.822 474.356C202.714 474.543 202.66 474.849 202.66 475.275L202.66 477.97L201.364 477.222L201.364 471.502ZM207.216 480.732C206.753 480.464 206.356 480.107 206.025 479.66C205.695 479.205 205.444 478.704 205.273 478.158C205.101 477.604 205.016 477.042 205.016 476.47C205.016 475.89 205.101 475.426 205.273 475.078C205.444 474.722 205.695 474.512 206.025 474.446C206.356 474.38 206.753 474.48 207.216 474.748C207.546 474.939 207.835 475.175 208.083 475.458C208.337 475.744 208.55 476.068 208.721 476.431L208.721 473.549L210.017 474.297L210.017 482.217L208.759 481.491L208.759 480.732C208.588 480.919 208.375 481.016 208.121 481.024C207.867 481.031 207.566 480.934 207.216 480.732ZM207.54 479.687C207.807 479.841 208.029 479.896 208.207 479.852C208.385 479.808 208.518 479.683 208.607 479.478C208.696 479.265 208.74 478.979 208.74 478.62C208.74 478.261 208.696 477.923 208.607 477.608C208.518 477.293 208.385 477.014 208.207 476.772C208.029 476.523 207.807 476.321 207.54 476.167C207.267 476.009 207.042 475.953 206.864 475.997C206.686 476.033 206.553 476.158 206.464 476.371C206.381 476.587 206.34 476.875 206.34 477.234C206.34 477.593 206.381 477.929 206.464 478.241C206.553 478.549 206.686 478.827 206.864 479.077C207.042 479.326 207.267 479.529 207.54 479.687Z" fill="#5F52FF"/>
|
|
506
|
+
</g>
|
|
507
|
+
<defs>
|
|
508
|
+
<clipPath id="clip0_2103_371">
|
|
509
|
+
<rect width="1300" height="823" fill="white"/>
|
|
510
|
+
</clipPath>
|
|
511
|
+
</defs>
|
|
512
|
+
</svg>
|