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,278 @@
|
|
|
1
|
+
<svg width="1444" height="894" viewBox="0 0 1444 894" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="UPDATES-05.09.2025">
|
|
3
|
+
<rect width="1444" height="894" fill="white"/>
|
|
4
|
+
<path id="Vector 157" d="M830.293 157.817L786.989 182.819L1017.52 315.919L1060.83 290.917" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path id="Vector 125" d="M1081.01 531.266L880.959 415.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 4"/>
|
|
6
|
+
<path id="Vector 119" d="M1081.75 297.766V459.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path id="Vector 121" d="M1088.75 297.766V459.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path id="Vector 120" d="M1074.75 297.766V459.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path id="Ponder" d="M664.925 384.71L667.849 383.021C668.395 382.706 668.957 382.495 669.535 382.389C670.107 382.279 670.656 382.266 671.183 382.35C671.717 382.431 672.2 382.596 672.631 382.845C673.063 383.095 673.352 383.375 673.498 383.687C673.644 383.991 673.625 384.31 673.441 384.644C673.251 384.974 672.882 385.297 672.336 385.612L670.802 386.497L673.174 387.867L671.784 388.67L664.925 384.71ZM671.06 384.963C671.466 384.728 671.682 384.501 671.707 384.281C671.733 384.061 671.574 383.852 671.231 383.654C670.894 383.46 670.536 383.37 670.155 383.384C669.774 383.399 669.38 383.524 668.973 383.758L667.516 384.6L669.602 385.804L671.06 384.963ZM680.835 383.576C680.314 383.877 679.749 384.075 679.139 384.17C678.529 384.258 677.929 384.249 677.338 384.143C676.748 384.029 676.205 383.829 675.709 383.543C675.214 383.257 674.868 382.944 674.671 382.603C674.481 382.258 674.465 381.912 674.623 381.563C674.789 381.211 675.132 380.885 675.652 380.584C676.179 380.28 676.745 380.082 677.348 379.99C677.958 379.895 678.558 379.904 679.148 380.018C679.739 380.132 680.282 380.331 680.777 380.617C681.273 380.903 681.619 381.217 681.816 381.558C682.006 381.895 682.022 382.242 681.863 382.597C681.705 382.946 681.362 383.272 680.835 383.576ZM679.768 382.96C680.047 382.799 680.212 382.63 680.263 382.454C680.32 382.275 680.279 382.097 680.139 381.921C679.999 381.738 679.774 381.556 679.463 381.376C679.152 381.197 678.837 381.067 678.52 380.986C678.209 380.902 677.901 380.878 677.596 380.914C677.291 380.944 676.999 381.039 676.719 381.2C676.446 381.358 676.281 381.527 676.224 381.706C676.167 381.879 676.208 382.057 676.348 382.24C676.487 382.423 676.713 382.605 677.024 382.784C677.335 382.964 677.65 383.094 677.967 383.175C678.278 383.252 678.586 383.276 678.891 383.246C679.202 383.213 679.495 383.118 679.768 382.96ZM679.461 378.518L680.718 377.792L681.395 378.182C681.338 377.936 681.369 377.698 681.49 377.467C681.604 377.232 681.83 377.018 682.166 376.824C682.541 376.607 682.938 376.47 683.357 376.411C683.776 376.345 684.202 376.36 684.634 376.455C685.072 376.547 685.497 376.712 685.91 376.95L688.997 378.732L687.711 379.475L684.777 377.781C684.465 377.601 684.148 377.502 683.824 377.484C683.494 377.462 683.17 377.542 682.852 377.726C682.674 377.828 682.544 377.951 682.462 378.094C682.379 378.23 682.373 378.384 682.443 378.556C682.519 378.725 682.703 378.893 682.995 379.062L685.71 380.63L684.415 381.378L679.461 378.518ZM692.473 376.857C692.01 377.124 691.502 377.289 690.949 377.352C690.39 377.41 689.831 377.377 689.273 377.253C688.707 377.124 688.177 376.917 687.682 376.631C687.18 376.342 686.821 376.035 686.605 375.713C686.383 375.386 686.326 375.064 686.434 374.745C686.542 374.426 686.827 374.132 687.291 373.865C687.621 373.674 687.971 373.542 688.339 373.469C688.714 373.392 689.101 373.37 689.501 373.403L687.005 371.962L688.301 371.214L695.16 375.174L693.902 375.9L693.245 375.52C693.321 375.762 693.299 375.995 693.178 376.219C693.058 376.442 692.823 376.655 692.473 376.857ZM691.73 376.054C691.997 375.9 692.156 375.735 692.207 375.559C692.257 375.383 692.216 375.205 692.083 375.025C691.943 374.842 691.718 374.66 691.406 374.481C691.095 374.301 690.781 374.171 690.463 374.09C690.146 374.01 689.838 373.986 689.539 374.019C689.234 374.048 688.949 374.14 688.682 374.294C688.409 374.451 688.247 374.618 688.196 374.794C688.139 374.967 688.18 375.144 688.32 375.328C688.466 375.507 688.695 375.687 689.006 375.867C689.317 376.046 689.628 376.178 689.939 376.263C690.251 376.34 690.559 376.364 690.863 376.334C691.168 376.305 691.457 376.211 691.73 376.054ZM698.917 373.136C698.409 373.43 697.854 373.622 697.25 373.714C696.647 373.798 696.053 373.785 695.469 373.675C694.878 373.562 694.335 373.362 693.84 373.076C693.345 372.79 692.998 372.476 692.802 372.135C692.605 371.794 692.582 371.451 692.735 371.107C692.894 370.758 693.227 370.438 693.735 370.144C694.25 369.847 694.805 369.655 695.402 369.567C695.993 369.475 696.59 369.493 697.193 369.622C697.796 369.743 698.371 369.961 698.917 370.276L699.203 370.441L695.526 372.564C695.805 372.689 696.085 372.773 696.364 372.817C696.644 372.854 696.917 372.854 697.184 372.817C697.45 372.773 697.695 372.687 697.917 372.559C698.197 372.397 698.374 372.232 698.451 372.064C698.527 371.888 698.514 371.712 698.413 371.536L699.67 370.81C700.007 371.195 700.115 371.594 699.994 372.009C699.873 372.416 699.514 372.792 698.917 373.136ZM697.012 370.672C696.606 370.511 696.206 370.434 695.812 370.441C695.412 370.445 695.053 370.538 694.735 370.722C694.411 370.909 694.246 371.118 694.24 371.349C694.227 371.576 694.361 371.807 694.64 372.042L697.012 370.672ZM697.489 368.109L698.746 367.383L699.604 367.878C699.439 367.599 699.41 367.348 699.518 367.124C699.62 366.897 699.836 366.688 700.166 366.497L700.566 366.266L701.757 366.954L701.3 367.218C701.007 367.387 700.807 367.557 700.699 367.729C700.585 367.898 700.582 368.08 700.69 368.274C700.798 368.461 701.036 368.661 701.404 368.873L703.738 370.221L702.443 370.969L697.489 368.109Z" fill="#5F52FF"/>
|
|
10
|
+
<path id="Optional" d="M862.032 754.426C861.314 754.841 860.54 755.108 859.708 755.229C858.876 755.343 858.056 755.321 857.25 755.163C856.45 755.002 855.722 754.733 855.068 754.355C854.408 753.974 853.941 753.554 853.668 753.095C853.395 752.63 853.36 752.159 853.563 751.682C853.766 751.198 854.227 750.749 854.944 750.334C855.668 749.916 856.446 749.651 857.278 749.537C858.11 749.416 858.926 749.436 859.727 749.597C860.533 749.755 861.264 750.023 861.918 750.4C862.572 750.778 863.035 751.2 863.309 751.665C863.588 752.127 863.626 752.6 863.423 753.084C863.22 753.561 862.756 754.008 862.032 754.426ZM860.794 753.711C861.245 753.451 861.514 753.178 861.603 752.892C861.692 752.599 861.635 752.313 861.432 752.034C861.222 751.752 860.902 751.486 860.47 751.236C860.032 750.983 859.571 750.798 859.088 750.681C858.599 750.56 858.104 750.527 857.602 750.582C857.107 750.633 856.634 750.789 856.183 751.049C855.745 751.302 855.478 751.574 855.383 751.863C855.287 752.153 855.345 752.439 855.554 752.721C855.764 753.004 856.084 753.27 856.516 753.519C856.948 753.768 857.409 753.953 857.898 754.074C858.38 754.192 858.876 754.225 859.384 754.173C859.885 754.118 860.355 753.964 860.794 753.711ZM864.245 747.165C864.709 746.897 865.217 746.732 865.769 746.67C866.322 746.608 866.881 746.641 867.446 746.769C868.005 746.894 868.535 747.101 869.037 747.39C869.532 747.676 869.891 747.983 870.113 748.309C870.329 748.632 870.386 748.954 870.285 749.277C870.177 749.596 869.891 749.889 869.427 750.157C869.097 750.348 868.745 750.481 868.37 750.558C867.995 750.628 867.608 750.646 867.208 750.613L869.713 752.06L868.417 752.808L861.559 748.848L862.816 748.122L863.473 748.501C863.397 748.259 863.419 748.027 863.54 747.803C863.661 747.579 863.896 747.367 864.245 747.165ZM864.988 747.968C864.721 748.122 864.563 748.287 864.512 748.463C864.455 748.635 864.496 748.813 864.636 748.996C864.775 749.18 865.001 749.361 865.312 749.541C865.623 749.721 865.937 749.851 866.255 749.931C866.566 750.008 866.874 750.032 867.179 750.003C867.484 749.974 867.77 749.882 868.036 749.728C868.31 749.57 868.471 749.403 868.522 749.227C868.573 749.051 868.529 748.875 868.389 748.699C868.249 748.516 868.024 748.335 867.713 748.155C867.401 747.975 867.087 747.845 866.769 747.764C866.458 747.68 866.153 747.654 865.855 747.687C865.55 747.717 865.261 747.81 864.988 747.968ZM874.604 747.036C874.293 747.216 874.001 747.344 873.728 747.421C873.448 747.494 873.153 747.511 872.842 747.47C872.537 747.426 872.213 747.305 871.87 747.107L869.203 745.567L868.346 746.062L867.364 745.496L868.222 745.001L866.697 744.121L867.993 743.373L869.517 744.253L870.756 743.538L871.737 744.104L870.498 744.819L873.032 746.282C873.191 746.374 873.344 746.422 873.49 746.425C873.629 746.425 873.785 746.376 873.956 746.277L874.728 745.831L875.709 746.398L874.604 747.036ZM871.865 742.897L873.161 742.149L878.115 745.009L876.819 745.757L871.865 742.897ZM869.96 741.797L871.256 741.049L872.408 741.715L871.113 742.463L869.96 741.797ZM881.918 742.945C881.397 743.246 880.832 743.444 880.223 743.539C879.613 743.627 879.013 743.618 878.422 743.512C877.831 743.398 877.288 743.198 876.793 742.912C876.298 742.626 875.952 742.313 875.755 741.972C875.564 741.627 875.548 741.281 875.707 740.932C875.872 740.58 876.215 740.254 876.736 739.953C877.263 739.649 877.828 739.451 878.432 739.359C879.041 739.264 879.641 739.273 880.232 739.387C880.823 739.5 881.366 739.7 881.861 739.986C882.356 740.272 882.703 740.586 882.899 740.927C883.09 741.264 883.106 741.611 882.947 741.966C882.788 742.315 882.445 742.641 881.918 742.945ZM880.851 742.329C881.131 742.168 881.296 741.999 881.347 741.823C881.404 741.644 881.363 741.466 881.223 741.29C881.083 741.106 880.858 740.925 880.546 740.745C880.235 740.566 879.921 740.435 879.603 740.355C879.292 740.27 878.984 740.247 878.679 740.283C878.374 740.313 878.082 740.408 877.803 740.569C877.53 740.727 877.365 740.896 877.308 741.075C877.25 741.248 877.292 741.425 877.431 741.609C877.571 741.792 877.797 741.974 878.108 742.153C878.419 742.333 878.733 742.463 879.051 742.544C879.362 742.621 879.67 742.645 879.975 742.615C880.286 742.582 880.578 742.487 880.851 742.329ZM880.545 737.886L881.802 737.16L882.478 737.551C882.421 737.305 882.453 737.067 882.574 736.836C882.688 736.601 882.913 736.387 883.25 736.192C883.625 735.976 884.022 735.838 884.441 735.78C884.86 735.714 885.285 735.728 885.717 735.824C886.155 735.915 886.581 736.08 886.994 736.319L890.08 738.101L888.794 738.843L885.86 737.149C885.549 736.97 885.231 736.871 884.908 736.852C884.577 736.83 884.253 736.911 883.936 737.094C883.758 737.197 883.628 737.32 883.545 737.463C883.463 737.598 883.456 737.752 883.526 737.925C883.602 738.093 883.787 738.262 884.079 738.431L886.794 739.998L885.498 740.746L880.545 737.886ZM893.119 736.479C892.573 736.794 892.004 736.972 891.414 737.012C890.817 737.049 890.28 736.93 889.804 736.655C889.512 736.486 889.334 736.306 889.27 736.116C889.207 735.918 889.251 735.701 889.404 735.467C889.562 735.228 889.829 734.957 890.204 734.653L891.366 733.696L891.109 733.547C890.887 733.419 890.655 733.362 890.413 733.377C890.172 733.391 889.899 733.487 889.594 733.663C889.308 733.828 889.137 733.996 889.08 734.169C889.029 734.337 889.121 734.493 889.356 734.636L888.07 735.379C887.517 735.052 887.305 734.687 887.432 734.284C887.559 733.873 887.949 733.479 888.603 733.102C889.308 732.695 889.969 732.464 890.585 732.409C891.207 732.35 891.753 732.456 892.223 732.728L895.805 734.796L894.576 735.505L894.024 735.186C894.056 735.439 893.995 735.672 893.843 735.885C893.69 736.09 893.449 736.288 893.119 736.479ZM892.509 735.753C892.725 735.628 892.884 735.492 892.985 735.346C893.093 735.195 893.122 735.039 893.071 734.878C893.02 734.717 892.871 734.565 892.623 734.422L892.204 734.18L891.28 734.988C891.033 735.197 890.89 735.368 890.852 735.5C890.807 735.628 890.883 735.749 891.08 735.863C891.271 735.973 891.49 736.022 891.738 736.011C891.985 735.993 892.242 735.907 892.509 735.753ZM890.193 730.116L891.488 729.368L898.347 733.328L897.052 734.076L890.193 730.116Z" fill="#8C9C9D"/>
|
|
11
|
+
<path id="Follow-up Thought/ Task complete" d="M636.925 369.71L641.831 366.877L643.079 367.598L639.563 369.627L641.069 370.496L644.403 368.571L645.594 369.259L642.259 371.184L645.174 372.867L643.784 373.67L636.925 369.71ZM652.165 368.963C651.644 369.264 651.079 369.462 650.469 369.557C649.859 369.645 649.259 369.636 648.669 369.53C648.078 369.416 647.535 369.216 647.04 368.93C646.544 368.644 646.198 368.331 646.001 367.99C645.811 367.645 645.795 367.298 645.954 366.95C646.119 366.598 646.462 366.272 646.982 365.971C647.51 365.667 648.075 365.469 648.678 365.377C649.288 365.282 649.888 365.291 650.479 365.405C651.069 365.518 651.612 365.718 652.108 366.004C652.603 366.29 652.949 366.604 653.146 366.945C653.337 367.282 653.352 367.628 653.194 367.984C653.035 368.332 652.692 368.659 652.165 368.963ZM651.098 368.347C651.377 368.186 651.542 368.017 651.593 367.841C651.65 367.661 651.609 367.484 651.469 367.308C651.33 367.124 651.104 366.943 650.793 366.763C650.482 366.583 650.167 366.453 649.85 366.373C649.539 366.288 649.231 366.264 648.926 366.301C648.621 366.33 648.329 366.426 648.049 366.587C647.776 366.745 647.611 366.913 647.554 367.093C647.497 367.265 647.538 367.443 647.678 367.627C647.818 367.81 648.043 367.991 648.354 368.171C648.665 368.351 648.98 368.481 649.297 368.562C649.609 368.639 649.917 368.662 650.221 368.633C650.533 368.6 650.825 368.505 651.098 368.347ZM648.886 362.804L650.181 362.056L657.04 366.016L655.745 366.764L648.886 362.804ZM651.555 361.263L652.851 360.515L659.71 364.475L658.414 365.223L651.555 361.263ZM663.523 362.406C663.002 362.706 662.437 362.904 661.827 363C661.217 363.088 660.617 363.078 660.026 362.972C659.436 362.858 658.893 362.659 658.397 362.373C657.902 362.087 657.556 361.773 657.359 361.432C657.169 361.087 657.153 360.741 657.312 360.393C657.477 360.041 657.82 359.714 658.34 359.414C658.867 359.109 659.433 358.911 660.036 358.82C660.646 358.724 661.246 358.733 661.836 358.847C662.427 358.961 662.97 359.161 663.465 359.447C663.961 359.733 664.307 360.046 664.504 360.387C664.694 360.724 664.71 361.071 664.551 361.427C664.393 361.775 664.05 362.101 663.523 362.406ZM662.456 361.79C662.735 361.628 662.9 361.46 662.951 361.284C663.008 361.104 662.967 360.926 662.827 360.75C662.687 360.567 662.462 360.385 662.151 360.206C661.84 360.026 661.525 359.896 661.208 359.815C660.897 359.731 660.589 359.707 660.284 359.744C659.979 359.773 659.687 359.868 659.407 360.03C659.134 360.187 658.969 360.356 658.912 360.536C658.855 360.708 658.896 360.886 659.036 361.069C659.175 361.252 659.401 361.434 659.712 361.614C660.023 361.793 660.338 361.923 660.655 362.004C660.966 362.081 661.274 362.105 661.579 362.076C661.89 362.043 662.183 361.947 662.456 361.79ZM661.701 357.605L663.102 356.797L667.569 358.144L665.121 355.631L666.35 354.921L670.704 356.335L668.37 353.755L669.77 352.947L672.999 356.802L671.647 357.583L667.36 356.208L669.732 358.689L668.379 359.47L661.701 357.605ZM672.156 353.45L675.052 351.778L676.166 352.422L673.27 354.094L672.156 353.45ZM684.169 350.354L682.911 351.08L682.235 350.689C682.292 350.935 682.263 351.175 682.149 351.41C682.028 351.641 681.8 351.853 681.463 352.048C681.088 352.264 680.692 352.405 680.272 352.471C679.853 352.53 679.425 352.513 678.986 352.422C678.554 352.326 678.132 352.16 677.719 351.921L674.633 350.139L675.919 349.397L678.853 351.091C679.164 351.27 679.485 351.371 679.815 351.393C680.139 351.412 680.46 351.329 680.777 351.146C680.955 351.043 681.085 350.924 681.168 350.788C681.25 350.645 681.254 350.489 681.177 350.321C681.108 350.148 680.927 349.978 680.634 349.809L677.919 348.242L679.215 347.494L684.169 350.354ZM683.273 345.019C683.736 344.751 684.244 344.586 684.797 344.524C685.35 344.462 685.908 344.495 686.474 344.623C687.032 344.748 687.563 344.955 688.064 345.244C688.56 345.53 688.919 345.837 689.141 346.163C689.357 346.486 689.414 346.808 689.312 347.131C689.204 347.45 688.919 347.743 688.455 348.011C688.125 348.202 687.772 348.335 687.398 348.412C687.023 348.482 686.636 348.5 686.235 348.467L688.741 349.914L687.445 350.662L680.586 346.702L681.844 345.976L682.501 346.355C682.425 346.113 682.447 345.881 682.568 345.657C682.688 345.433 682.923 345.221 683.273 345.019ZM684.016 345.822C683.749 345.976 683.59 346.141 683.54 346.317C683.482 346.489 683.524 346.667 683.663 346.85C683.803 347.034 684.029 347.215 684.34 347.395C684.651 347.575 684.965 347.705 685.283 347.785C685.594 347.862 685.902 347.886 686.207 347.857C686.512 347.828 686.797 347.736 687.064 347.582C687.337 347.424 687.499 347.257 687.55 347.081C687.601 346.905 687.556 346.729 687.417 346.553C687.277 346.37 687.052 346.189 686.74 346.009C686.429 345.829 686.115 345.699 685.797 345.618C685.486 345.534 685.181 345.508 684.883 345.541C684.578 345.571 684.289 345.664 684.016 345.822ZM690.409 340.272L688.246 341.52L686.998 340.8L692.733 337.489L693.981 338.209L691.819 339.458L697.43 342.697L696.02 343.511L690.409 340.272ZM693.751 336.901L695.046 336.153L697.58 337.616C697.536 337.378 697.574 337.147 697.695 336.923C697.815 336.7 698.038 336.494 698.362 336.307C698.736 336.091 699.133 335.954 699.552 335.895C699.972 335.829 700.397 335.844 700.829 335.939C701.267 336.031 701.693 336.196 702.105 336.434L705.192 338.216L703.906 338.958L700.972 337.264C700.661 337.085 700.343 336.986 700.019 336.967C699.689 336.945 699.365 337.026 699.047 337.209C698.87 337.312 698.739 337.435 698.657 337.578C698.574 337.714 698.568 337.868 698.638 338.04C698.714 338.209 698.898 338.377 699.19 338.546L701.905 340.113L700.61 340.861L693.751 336.901ZM709.002 336.148C708.481 336.449 707.916 336.647 707.306 336.742C706.697 336.83 706.097 336.821 705.506 336.715C704.915 336.601 704.372 336.401 703.877 336.115C703.382 335.829 703.035 335.516 702.839 335.175C702.648 334.83 702.632 334.483 702.791 334.135C702.956 333.783 703.299 333.457 703.82 333.156C704.347 332.852 704.912 332.654 705.515 332.562C706.125 332.467 706.725 332.476 707.316 332.59C707.907 332.703 708.45 332.903 708.945 333.189C709.44 333.475 709.786 333.789 709.983 334.13C710.174 334.467 710.19 334.813 710.031 335.169C709.872 335.517 709.529 335.844 709.002 336.148ZM707.935 335.532C708.215 335.371 708.38 335.202 708.43 335.026C708.488 334.846 708.446 334.669 708.307 334.493C708.167 334.309 707.941 334.128 707.63 333.948C707.319 333.768 707.005 333.638 706.687 333.558C706.376 333.473 706.068 333.449 705.763 333.486C705.458 333.515 705.166 333.611 704.887 333.772C704.614 333.93 704.449 334.098 704.391 334.278C704.334 334.45 704.375 334.628 704.515 334.812C704.655 334.995 704.88 335.176 705.192 335.356C705.503 335.536 705.817 335.666 706.135 335.747C706.446 335.824 706.754 335.847 707.059 335.818C707.37 335.785 707.662 335.69 707.935 335.532ZM717.164 331.304L715.907 332.03L715.23 331.639C715.287 331.885 715.259 332.125 715.145 332.36C715.024 332.591 714.795 332.803 714.459 332.998C714.084 333.214 713.687 333.355 713.268 333.421C712.849 333.48 712.42 333.463 711.982 333.372C711.55 333.276 711.128 333.11 710.715 332.871L707.628 331.089L708.914 330.347L711.848 332.041C712.16 332.22 712.48 332.321 712.811 332.343C713.135 332.362 713.455 332.279 713.773 332.096C713.951 331.993 714.081 331.874 714.163 331.738C714.246 331.595 714.249 331.439 714.173 331.271C714.103 331.098 713.922 330.928 713.63 330.759L710.915 329.192L712.21 328.444L717.164 331.304ZM722.803 330.38C722.105 330.783 721.406 331.007 720.708 331.051C720.009 331.095 719.368 330.97 718.783 330.677L720.06 329.94C720.352 330.072 720.647 330.121 720.946 330.088C721.251 330.052 721.552 329.947 721.851 329.775C722.2 329.573 722.4 329.359 722.451 329.131C722.514 328.904 722.33 328.666 721.898 328.416L721.298 328.07C721.349 328.297 721.308 328.519 721.174 328.735C721.041 328.944 720.809 329.144 720.479 329.335C720.015 329.603 719.51 329.769 718.964 329.835C718.418 329.901 717.872 329.876 717.326 329.758C716.773 329.637 716.256 329.438 715.773 329.159C715.284 328.877 714.938 328.578 714.735 328.262C714.525 327.943 714.477 327.626 714.592 327.311C714.706 326.996 714.995 326.704 715.459 326.436C715.802 326.238 716.164 326.103 716.545 326.029C716.932 325.952 717.332 325.934 717.745 325.974L717.116 325.611L718.374 324.885L723.194 327.668C723.67 327.943 723.956 328.237 724.051 328.548C724.153 328.864 724.093 329.177 723.87 329.489C723.648 329.801 723.292 330.098 722.803 330.38ZM719.784 328.559C720.05 328.405 720.212 328.242 720.269 328.07C720.32 327.894 720.282 327.718 720.155 327.542C720.022 327.362 719.803 327.184 719.498 327.008C719.193 326.832 718.885 326.706 718.574 326.629C718.262 326.552 717.958 326.53 717.659 326.563C717.354 326.592 717.069 326.684 716.802 326.838C716.529 326.996 716.367 327.162 716.316 327.338C716.259 327.511 716.297 327.687 716.43 327.866C716.57 328.042 716.792 328.218 717.097 328.394C717.402 328.57 717.707 328.699 718.012 328.779C718.316 328.853 718.621 328.875 718.926 328.845C719.225 328.812 719.51 328.717 719.784 328.559ZM717.835 322.996L719.13 322.248L721.664 323.711C721.62 323.473 721.658 323.242 721.779 323.018C721.899 322.795 722.122 322.589 722.446 322.402C722.82 322.186 723.217 322.049 723.636 321.99C724.056 321.924 724.481 321.939 724.913 322.034C725.351 322.126 725.777 322.291 726.189 322.529L729.276 324.311L727.99 325.053L725.056 323.359C724.745 323.18 724.427 323.081 724.103 323.062C723.773 323.04 723.449 323.121 723.131 323.304C722.954 323.407 722.823 323.53 722.741 323.673C722.658 323.809 722.652 323.963 722.722 324.135C722.798 324.304 722.982 324.472 723.274 324.641L725.989 326.208L724.694 326.956L717.835 322.996ZM732.581 322.403C732.27 322.582 731.978 322.711 731.705 322.788C731.425 322.861 731.13 322.878 730.819 322.837C730.514 322.793 730.19 322.672 729.847 322.474L727.18 320.934L726.322 321.429L725.341 320.863L726.199 320.368L724.674 319.488L725.97 318.74L727.494 319.62L728.733 318.905L729.714 319.471L728.475 320.186L731.009 321.649C731.168 321.741 731.321 321.789 731.467 321.792C731.606 321.792 731.762 321.743 731.933 321.644L732.705 321.198L733.686 321.765L732.581 322.403ZM730.004 315.971L731.262 315.245L735.625 320.646L734.367 321.372L730.004 315.971ZM649.433 374.929L647.27 376.178L646.022 375.457L651.757 372.146L653.005 372.867L650.843 374.115L656.454 377.355L655.044 378.169L649.433 374.929ZM661.301 374.688C660.755 375.004 660.186 375.182 659.596 375.222C658.999 375.259 658.462 375.139 657.986 374.864C657.694 374.696 657.516 374.516 657.452 374.325C657.389 374.127 657.433 373.911 657.586 373.676C657.744 373.438 658.011 373.167 658.386 372.862L659.548 371.905L659.291 371.757C659.069 371.629 658.837 371.572 658.595 371.586C658.354 371.601 658.081 371.696 657.776 371.872C657.49 372.037 657.319 372.206 657.262 372.378C657.211 372.547 657.303 372.703 657.538 372.846L656.252 373.588C655.699 373.262 655.487 372.897 655.614 372.494C655.741 372.083 656.131 371.689 656.785 371.311C657.49 370.904 658.151 370.673 658.767 370.618C659.389 370.56 659.935 370.666 660.405 370.937L663.987 373.005L662.758 373.715L662.206 373.396C662.238 373.649 662.177 373.882 662.025 374.094C661.872 374.3 661.631 374.498 661.301 374.688ZM660.691 373.962C660.907 373.838 661.066 373.702 661.167 373.555C661.275 373.405 661.304 373.249 661.253 373.088C661.202 372.927 661.053 372.774 660.805 372.631L660.386 372.389L659.462 373.198C659.215 373.407 659.072 373.577 659.034 373.709C658.989 373.838 659.065 373.959 659.262 374.072C659.453 374.182 659.672 374.232 659.92 374.221C660.167 374.203 660.424 374.116 660.691 373.962ZM667.33 371.208C666.625 371.615 665.932 371.853 665.253 371.923C664.58 371.989 663.922 371.859 663.281 371.532L664.538 370.806C664.875 370.964 665.196 371.028 665.501 370.999C665.812 370.966 666.136 370.852 666.472 370.658C666.745 370.5 666.917 370.346 666.987 370.196C667.05 370.042 666.996 369.915 666.825 369.816C666.704 369.747 666.583 369.706 666.463 369.695C666.342 369.684 666.171 369.71 665.948 369.772C665.726 369.827 665.421 369.937 665.034 370.102C664.437 370.344 663.922 370.509 663.49 370.597C663.059 370.685 662.681 370.709 662.357 370.669C662.039 370.625 661.738 370.52 661.452 370.355C660.982 370.084 660.804 369.761 660.918 369.387C661.033 369.013 661.411 368.641 662.052 368.271C662.763 367.86 663.459 367.635 664.138 367.594C664.811 367.55 665.418 367.677 665.958 367.974L664.757 368.667C664.453 368.498 664.151 368.434 663.852 368.474C663.554 368.515 663.256 368.621 662.957 368.793C662.709 368.936 662.554 369.081 662.49 369.228C662.433 369.371 662.487 369.49 662.652 369.585C662.773 369.655 662.903 369.693 663.043 369.701C663.182 369.701 663.363 369.67 663.586 369.607C663.808 369.538 664.11 369.422 664.491 369.261C665.075 369.019 665.58 368.856 666.005 368.771C666.425 368.683 666.796 368.663 667.12 368.711C667.438 368.755 667.739 368.859 668.025 369.024C668.514 369.307 668.689 369.646 668.549 370.042C668.409 370.43 668.003 370.819 667.33 371.208ZM663.64 365.286L664.936 364.538L668.841 366.793L668.775 364.521L670.308 363.636L670.318 365.808L675.386 366.424L673.871 367.299L670.327 366.848L670.347 367.662L671.794 368.498L670.499 369.246L663.64 365.286ZM681.188 363.207C680.679 363.5 680.127 363.691 679.53 363.779C678.933 363.859 678.342 363.845 677.758 363.735C677.167 363.621 676.624 363.421 676.129 363.135C675.634 362.849 675.288 362.536 675.091 362.195C674.894 361.854 674.868 361.513 675.015 361.172C675.167 360.827 675.497 360.508 676.005 360.215C676.685 359.822 677.396 359.61 678.139 359.577C678.882 359.544 679.584 359.674 680.244 359.967L678.949 360.715C678.631 360.598 678.307 360.55 677.977 360.572C677.647 360.587 677.345 360.673 677.072 360.831C676.818 360.977 676.669 361.137 676.624 361.309C676.574 361.478 676.618 361.654 676.758 361.837C676.904 362.017 677.133 362.197 677.444 362.376C677.755 362.556 678.066 362.688 678.377 362.772C678.688 362.849 678.993 362.875 679.292 362.849C679.59 362.824 679.867 362.737 680.121 362.591C680.406 362.426 680.559 362.246 680.578 362.052C680.603 361.854 680.492 361.658 680.244 361.463L681.54 360.715C682.067 361.108 682.308 361.526 682.264 361.969C682.213 362.409 681.854 362.822 681.188 363.207ZM686.928 359.892C686.407 360.193 685.842 360.391 685.233 360.486C684.623 360.574 684.023 360.565 683.432 360.459C682.841 360.345 682.298 360.145 681.803 359.859C681.308 359.573 680.962 359.26 680.765 358.919C680.574 358.574 680.558 358.228 680.717 357.879C680.882 357.527 681.225 357.201 681.746 356.9C682.273 356.596 682.838 356.398 683.442 356.306C684.051 356.211 684.651 356.22 685.242 356.334C685.833 356.448 686.376 356.647 686.871 356.933C687.366 357.219 687.713 357.533 687.909 357.874C688.1 358.211 688.116 358.558 687.957 358.913C687.798 359.262 687.455 359.588 686.928 359.892ZM685.861 359.276C686.141 359.115 686.306 358.946 686.357 358.77C686.414 358.591 686.373 358.413 686.233 358.237C686.093 358.054 685.868 357.872 685.556 357.692C685.245 357.513 684.931 357.383 684.613 357.302C684.302 357.218 683.994 357.194 683.689 357.23C683.384 357.26 683.092 357.355 682.813 357.516C682.54 357.674 682.375 357.843 682.318 358.022C682.26 358.195 682.302 358.373 682.441 358.556C682.581 358.739 682.807 358.921 683.118 359.1C683.429 359.28 683.743 359.41 684.061 359.491C684.372 359.568 684.68 359.592 684.985 359.562C685.296 359.529 685.588 359.434 685.861 359.276ZM685.555 354.834L686.812 354.108L687.517 354.515C687.428 354.273 687.431 354.04 687.526 353.816C687.622 353.592 687.838 353.383 688.174 353.189C688.517 352.991 688.892 352.866 689.298 352.815C689.705 352.764 690.124 352.786 690.556 352.881C690.461 352.613 690.467 352.353 690.575 352.1C690.683 351.84 690.915 351.607 691.27 351.402C691.613 351.204 691.988 351.079 692.394 351.028C692.807 350.973 693.23 350.993 693.661 351.088C694.093 351.183 694.512 351.348 694.919 351.583L698.005 353.365L696.71 354.113L693.776 352.419C693.471 352.243 693.16 352.14 692.842 352.111C692.525 352.082 692.229 352.146 691.956 352.304C691.683 352.461 691.543 352.652 691.537 352.876C691.537 353.096 691.756 353.332 692.194 353.585L694.909 355.153L693.614 355.901L690.68 354.207C690.375 354.031 690.06 353.93 689.737 353.904C689.419 353.875 689.127 353.937 688.86 354.091C688.581 354.252 688.438 354.445 688.431 354.669C688.431 354.889 688.651 355.125 689.089 355.378L691.804 356.946L690.508 357.694L685.555 354.834ZM697.106 348.032C697.57 347.764 698.078 347.599 698.631 347.537C699.183 347.475 699.742 347.508 700.307 347.636C700.866 347.761 701.396 347.968 701.898 348.258C702.393 348.544 702.752 348.85 702.975 349.176C703.19 349.499 703.248 349.821 703.146 350.144C703.038 350.463 702.752 350.756 702.289 351.024C701.958 351.215 701.606 351.349 701.231 351.426C700.857 351.495 700.469 351.514 700.069 351.481L702.574 352.927L701.279 353.675L694.42 349.715L695.677 348.989L696.335 349.369C696.259 349.127 696.281 348.894 696.401 348.67C696.522 348.446 696.757 348.234 697.106 348.032ZM697.849 348.835C697.583 348.989 697.424 349.154 697.373 349.33C697.316 349.502 697.357 349.68 697.497 349.864C697.637 350.047 697.862 350.228 698.173 350.408C698.484 350.588 698.799 350.718 699.116 350.799C699.428 350.876 699.736 350.899 700.04 350.87C700.345 350.841 700.631 350.749 700.898 350.595C701.171 350.437 701.333 350.271 701.384 350.095C701.434 349.919 701.39 349.743 701.25 349.567C701.111 349.383 700.885 349.202 700.574 349.022C700.263 348.842 699.948 348.712 699.631 348.632C699.32 348.547 699.015 348.522 698.716 348.555C698.411 348.584 698.122 348.677 697.849 348.835ZM698.673 345.06L699.968 344.312L706.827 348.272L705.532 349.02L698.673 345.06ZM710.593 346.23C710.084 346.523 709.529 346.716 708.925 346.807C708.322 346.892 707.728 346.879 707.144 346.769C706.553 346.655 706.01 346.455 705.515 346.169C705.02 345.883 704.674 345.57 704.477 345.229C704.28 344.888 704.258 344.545 704.41 344.2C704.569 343.852 704.902 343.531 705.41 343.238C705.925 342.941 706.48 342.748 707.077 342.66C707.668 342.569 708.265 342.587 708.868 342.715C709.472 342.836 710.046 343.055 710.593 343.37L710.878 343.535L707.201 345.658C707.481 345.783 707.76 345.867 708.039 345.911C708.319 345.948 708.592 345.948 708.859 345.911C709.125 345.867 709.37 345.781 709.592 345.652C709.872 345.491 710.05 345.326 710.126 345.157C710.202 344.981 710.189 344.805 710.088 344.629L711.345 343.903C711.682 344.288 711.79 344.688 711.669 345.102C711.548 345.509 711.189 345.885 710.593 346.23ZM708.687 343.766C708.281 343.605 707.881 343.528 707.487 343.535C707.087 343.539 706.728 343.632 706.41 343.815C706.087 344.002 705.921 344.211 705.915 344.442C705.902 344.67 706.036 344.901 706.315 345.135L708.687 343.766ZM716.052 342.946C715.74 343.126 715.448 343.254 715.175 343.331C714.896 343.404 714.6 343.421 714.289 343.381C713.984 343.337 713.66 343.216 713.318 343.018L710.65 341.478L709.793 341.973L708.812 341.406L709.669 340.911L708.145 340.031L709.44 339.283L710.965 340.163L712.203 339.448L713.184 340.015L711.946 340.73L714.48 342.193C714.639 342.284 714.791 342.332 714.937 342.336C715.077 342.336 715.232 342.286 715.404 342.187L716.175 341.742L717.157 342.308L716.052 342.946ZM720.667 340.413C720.159 340.707 719.603 340.899 719 340.991C718.396 341.075 717.803 341.062 717.218 340.952C716.628 340.839 716.085 340.639 715.589 340.353C715.094 340.067 714.748 339.753 714.551 339.412C714.354 339.071 714.332 338.729 714.484 338.384C714.643 338.036 714.977 337.715 715.485 337.421C715.999 337.124 716.555 336.932 717.152 336.844C717.742 336.752 718.339 336.771 718.943 336.899C719.546 337.02 720.121 337.238 720.667 337.553L720.953 337.718L717.276 339.841C717.555 339.966 717.834 340.05 718.114 340.094C718.393 340.131 718.666 340.131 718.933 340.094C719.2 340.05 719.444 339.964 719.667 339.836C719.946 339.675 720.124 339.51 720.2 339.341C720.276 339.165 720.264 338.989 720.162 338.813L721.419 338.087C721.756 338.472 721.864 338.872 721.743 339.286C721.623 339.693 721.264 340.069 720.667 340.413ZM718.762 337.949C718.355 337.788 717.955 337.711 717.561 337.718C717.161 337.722 716.802 337.816 716.485 337.999C716.161 338.186 715.996 338.395 715.99 338.626C715.977 338.853 716.11 339.084 716.39 339.319L718.762 337.949Z" fill="#5F52FF"/>
|
|
12
|
+
<path id="Local 
memory 
graphs" d="M945.925 354.21L947.316 353.407L952.926 356.646L956.175 354.771L957.423 355.491L952.784 358.17L945.925 354.21ZM960.904 353.614C960.384 353.914 959.818 354.112 959.209 354.208C958.599 354.296 957.999 354.286 957.408 354.18C956.818 354.066 956.275 353.867 955.779 353.581C955.284 353.295 954.938 352.981 954.741 352.64C954.55 352.295 954.534 351.949 954.693 351.601C954.858 351.249 955.201 350.922 955.722 350.622C956.249 350.317 956.814 350.119 957.418 350.028C958.027 349.932 958.628 349.941 959.218 350.055C959.809 350.169 960.352 350.369 960.847 350.655C961.343 350.941 961.689 351.254 961.886 351.595C962.076 351.932 962.092 352.279 961.933 352.635C961.774 352.983 961.431 353.309 960.904 353.614ZM959.837 352.998C960.117 352.836 960.282 352.668 960.333 352.492C960.39 352.312 960.349 352.134 960.209 351.958C960.069 351.775 959.844 351.593 959.533 351.414C959.221 351.234 958.907 351.104 958.589 351.023C958.278 350.939 957.97 350.915 957.665 350.952C957.361 350.981 957.068 351.076 956.789 351.238C956.516 351.395 956.351 351.564 956.294 351.744C956.236 351.916 956.278 352.094 956.417 352.277C956.557 352.46 956.783 352.642 957.094 352.822C957.405 353.001 957.719 353.131 958.037 353.212C958.348 353.289 958.656 353.313 958.961 353.284C959.272 353.251 959.564 353.155 959.837 352.998ZM966.875 350.166C966.367 350.459 965.815 350.65 965.218 350.738C964.621 350.819 964.03 350.804 963.446 350.694C962.855 350.58 962.312 350.381 961.817 350.095C961.322 349.809 960.975 349.495 960.779 349.154C960.582 348.813 960.556 348.472 960.702 348.131C960.855 347.786 961.185 347.467 961.693 347.174C962.373 346.782 963.084 346.569 963.827 346.536C964.57 346.503 965.272 346.633 965.932 346.927L964.637 347.675C964.319 347.557 963.995 347.51 963.665 347.532C963.335 347.546 963.033 347.632 962.76 347.79C962.506 347.937 962.357 348.096 962.312 348.269C962.261 348.437 962.306 348.613 962.446 348.797C962.592 348.976 962.82 349.156 963.132 349.336C963.443 349.515 963.754 349.647 964.065 349.732C964.376 349.809 964.681 349.834 964.98 349.809C965.278 349.783 965.554 349.697 965.808 349.55C966.094 349.385 966.247 349.205 966.266 349.011C966.291 348.813 966.18 348.617 965.932 348.423L967.228 347.675C967.755 348.067 967.996 348.485 967.952 348.929C967.901 349.369 967.542 349.781 966.875 350.166ZM971.844 347.297C971.298 347.613 970.73 347.79 970.139 347.831C969.542 347.867 969.006 347.748 968.529 347.473C968.237 347.305 968.059 347.125 967.996 346.934C967.932 346.736 967.977 346.52 968.129 346.285C968.288 346.047 968.555 345.776 968.929 345.471L970.092 344.514L969.834 344.366C969.612 344.237 969.38 344.181 969.139 344.195C968.898 344.21 968.625 344.305 968.32 344.481C968.034 344.646 967.862 344.815 967.805 344.987C967.754 345.156 967.847 345.312 968.082 345.455L966.795 346.197C966.243 345.871 966.03 345.506 966.157 345.103C966.284 344.692 966.675 344.298 967.329 343.92C968.034 343.513 968.694 343.282 969.31 343.227C969.933 343.169 970.479 343.275 970.949 343.546L974.531 345.614L973.302 346.324L972.749 346.005C972.781 346.258 972.721 346.491 972.568 346.703C972.416 346.909 972.175 347.107 971.844 347.297ZM971.235 346.571C971.451 346.447 971.609 346.311 971.711 346.164C971.819 346.014 971.848 345.858 971.797 345.697C971.746 345.535 971.597 345.383 971.349 345.24L970.93 344.998L970.006 345.807C969.758 346.016 969.615 346.186 969.577 346.318C969.533 346.447 969.609 346.568 969.806 346.681C969.996 346.791 970.215 346.841 970.463 346.83C970.711 346.811 970.968 346.725 971.235 346.571ZM968.918 340.935L970.214 340.187L977.073 344.147L975.777 344.895L968.918 340.935ZM957.28 360.854L958.537 360.128L959.242 360.535C959.153 360.293 959.157 360.06 959.252 359.836C959.347 359.613 959.563 359.404 959.9 359.209C960.243 359.011 960.617 358.887 961.024 358.835C961.43 358.784 961.849 358.806 962.281 358.901C962.186 358.634 962.192 358.373 962.3 358.12C962.408 357.86 962.64 357.627 962.996 357.422C963.339 357.224 963.713 357.099 964.12 357.048C964.533 356.993 964.955 357.013 965.387 357.108C965.819 357.204 966.238 357.369 966.644 357.603L969.731 359.385L968.435 360.133L965.501 358.439C965.196 358.263 964.885 358.161 964.568 358.131C964.25 358.102 963.955 358.166 963.682 358.324C963.409 358.482 963.269 358.672 963.262 358.896C963.262 359.116 963.482 359.352 963.92 359.605L966.635 361.173L965.339 361.921L962.405 360.227C962.1 360.051 961.786 359.95 961.462 359.924C961.144 359.895 960.852 359.957 960.586 360.111C960.306 360.273 960.163 360.465 960.157 360.689C960.157 360.909 960.376 361.145 960.814 361.398L963.529 362.966L962.234 363.714L957.28 360.854ZM973.49 357.347C972.982 357.64 972.426 357.833 971.823 357.925C971.22 358.009 970.626 357.996 970.042 357.886C969.451 357.772 968.908 357.573 968.413 357.287C967.917 357.001 967.571 356.687 967.374 356.346C967.177 356.005 967.155 355.662 967.308 355.318C967.466 354.969 967.8 354.648 968.308 354.355C968.822 354.058 969.378 353.866 969.975 353.778C970.566 353.686 971.163 353.704 971.766 353.833C972.369 353.954 972.944 354.172 973.49 354.487L973.776 354.652L970.099 356.775C970.378 356.9 970.658 356.984 970.937 357.028C971.217 357.065 971.49 357.065 971.756 357.028C972.023 356.984 972.268 356.898 972.49 356.77C972.769 356.608 972.947 356.443 973.023 356.275C973.1 356.099 973.087 355.923 972.985 355.747L974.243 355.021C974.579 355.406 974.687 355.805 974.567 356.22C974.446 356.627 974.087 357.002 973.49 357.347ZM971.585 354.883C971.178 354.722 970.778 354.645 970.385 354.652C969.984 354.656 969.626 354.749 969.308 354.933C968.984 355.12 968.819 355.329 968.813 355.56C968.8 355.787 968.933 356.018 969.213 356.253L971.585 354.883ZM972.062 352.32L973.319 351.594L974.024 352.001C973.935 351.759 973.938 351.526 974.034 351.302C974.129 351.079 974.345 350.87 974.681 350.675C975.024 350.477 975.399 350.353 975.806 350.301C976.212 350.25 976.631 350.272 977.063 350.367C976.968 350.1 976.974 349.839 977.082 349.586C977.19 349.326 977.422 349.093 977.777 348.888C978.12 348.69 978.495 348.565 978.902 348.514C979.314 348.459 979.737 348.479 980.169 348.574C980.6 348.67 981.02 348.835 981.426 349.069L984.513 350.851L983.217 351.599L980.283 349.905C979.978 349.729 979.667 349.627 979.349 349.597C979.032 349.568 978.736 349.632 978.463 349.79C978.19 349.947 978.051 350.138 978.044 350.362C978.044 350.582 978.263 350.818 978.702 351.071L981.417 352.639L980.121 353.387L977.187 351.693C976.882 351.517 976.568 351.416 976.244 351.39C975.926 351.361 975.634 351.423 975.367 351.577C975.088 351.739 974.945 351.931 974.939 352.155C974.939 352.375 975.158 352.611 975.596 352.864L978.311 354.432L977.015 355.18L972.062 352.32ZM988.32 348.785C987.799 349.086 987.234 349.284 986.624 349.379C986.014 349.467 985.414 349.458 984.823 349.352C984.233 349.238 983.69 349.038 983.194 348.752C982.699 348.466 982.353 348.153 982.156 347.812C981.965 347.467 981.95 347.121 982.108 346.772C982.274 346.42 982.616 346.094 983.137 345.793C983.664 345.489 984.23 345.291 984.833 345.199C985.443 345.104 986.043 345.113 986.633 345.227C987.224 345.34 987.767 345.54 988.262 345.826C988.758 346.112 989.104 346.426 989.301 346.767C989.491 347.104 989.507 347.451 989.348 347.806C989.19 348.155 988.847 348.481 988.32 348.785ZM987.253 348.169C987.532 348.008 987.697 347.839 987.748 347.663C987.805 347.484 987.764 347.306 987.624 347.13C987.484 346.946 987.259 346.765 986.948 346.585C986.637 346.406 986.322 346.275 986.005 346.195C985.693 346.11 985.385 346.087 985.081 346.123C984.776 346.153 984.484 346.248 984.204 346.409C983.931 346.567 983.766 346.736 983.709 346.915C983.652 347.088 983.693 347.265 983.833 347.449C983.972 347.632 984.198 347.814 984.509 347.993C984.82 348.173 985.135 348.303 985.452 348.384C985.763 348.461 986.071 348.485 986.376 348.455C986.687 348.422 986.979 348.327 987.253 348.169ZM986.946 343.726L988.203 343L989.061 343.495C988.896 343.217 988.867 342.966 988.975 342.742C989.077 342.515 989.292 342.306 989.623 342.115L990.023 341.884L991.214 342.571L990.756 342.835C990.464 343.004 990.264 343.175 990.156 343.347C990.042 343.516 990.039 343.697 990.147 343.891C990.255 344.078 990.493 344.278 990.861 344.491L993.195 345.838L991.899 346.586L986.946 343.726ZM996.789 344.753L997.589 344.291C997.735 344.207 997.834 344.132 997.885 344.066C997.948 344 997.973 343.934 997.961 343.868C997.948 343.802 997.91 343.721 997.846 343.626L997.637 343.351L990.74 341.536L992.14 340.727L997.018 342.179L994.465 339.385L995.855 338.582L999.304 342.883C999.501 343.129 999.631 343.347 999.695 343.538C999.758 343.729 999.739 343.919 999.637 344.11C999.548 344.301 999.342 344.489 999.018 344.676L997.837 345.358L996.789 344.753ZM976.028 369.082C975.329 369.485 974.631 369.709 973.932 369.753C973.233 369.797 972.592 369.672 972.008 369.379L973.284 368.642C973.576 368.774 973.872 368.823 974.17 368.79C974.475 368.754 974.777 368.649 975.075 368.477C975.424 368.275 975.624 368.061 975.675 367.833C975.739 367.606 975.555 367.368 975.123 367.118L974.523 366.772C974.573 366.999 974.532 367.221 974.399 367.437C974.265 367.646 974.034 367.846 973.703 368.037C973.24 368.305 972.735 368.471 972.189 368.537C971.642 368.603 971.096 368.578 970.55 368.46C969.998 368.339 969.48 368.14 968.997 367.861C968.508 367.579 968.162 367.28 967.959 366.964C967.749 366.645 967.702 366.328 967.816 366.013C967.93 365.698 968.219 365.406 968.683 365.138C969.026 364.94 969.388 364.805 969.769 364.731C970.156 364.654 970.556 364.636 970.969 364.676L970.341 364.313L971.598 363.587L976.418 366.37C976.895 366.645 977.18 366.939 977.276 367.25C977.377 367.566 977.317 367.879 977.095 368.191C976.872 368.503 976.517 368.8 976.028 369.082ZM973.008 367.261C973.275 367.107 973.437 366.944 973.494 366.772C973.545 366.596 973.506 366.42 973.379 366.244C973.246 366.064 973.027 365.886 972.722 365.71C972.417 365.534 972.109 365.408 971.798 365.331C971.487 365.254 971.182 365.232 970.884 365.265C970.579 365.294 970.293 365.386 970.026 365.54C969.753 365.698 969.591 365.864 969.54 366.04C969.483 366.213 969.521 366.389 969.655 366.568C969.794 366.744 970.017 366.92 970.321 367.096C970.626 367.272 970.931 367.401 971.236 367.481C971.541 367.555 971.846 367.577 972.151 367.547C972.449 367.514 972.735 367.419 973.008 367.261ZM972.964 362.799L974.222 362.073L975.079 362.568C974.914 362.289 974.886 362.038 974.994 361.814C975.095 361.587 975.311 361.378 975.641 361.187L976.041 360.956L977.232 361.644L976.775 361.908C976.483 362.076 976.283 362.247 976.175 362.419C976.061 362.588 976.057 362.769 976.165 362.964C976.273 363.151 976.511 363.35 976.88 363.563L979.214 364.911L977.918 365.659L972.964 362.799ZM983.827 362.379C983.281 362.694 982.712 362.872 982.122 362.913C981.525 362.949 980.988 362.83 980.512 362.555C980.22 362.386 980.042 362.207 979.978 362.016C979.915 361.818 979.959 361.602 980.112 361.367C980.271 361.129 980.537 360.857 980.912 360.553L982.074 359.596L981.817 359.448C981.595 359.319 981.363 359.262 981.122 359.277C980.88 359.292 980.607 359.387 980.302 359.563C980.017 359.728 979.845 359.897 979.788 360.069C979.737 360.238 979.829 360.394 980.064 360.537L978.778 361.279C978.226 360.953 978.013 360.588 978.14 360.185C978.267 359.774 978.657 359.38 979.312 359.002C980.017 358.595 980.677 358.364 981.293 358.309C981.915 358.25 982.462 358.357 982.932 358.628L986.513 360.696L985.285 361.406L984.732 361.087C984.764 361.34 984.703 361.572 984.551 361.785C984.399 361.99 984.157 362.188 983.827 362.379ZM983.217 361.653C983.433 361.528 983.592 361.393 983.694 361.246C983.802 361.096 983.83 360.94 983.779 360.779C983.729 360.617 983.579 360.465 983.332 360.322L982.913 360.08L981.988 360.889C981.741 361.098 981.598 361.268 981.56 361.4C981.515 361.528 981.592 361.649 981.788 361.763C981.979 361.873 982.198 361.923 982.446 361.912C982.693 361.893 982.951 361.807 983.217 361.653ZM985.493 355.433C985.956 355.166 986.464 355.001 987.017 354.938C987.569 354.876 988.128 354.909 988.694 355.037C989.252 355.162 989.783 355.369 990.284 355.659C990.78 355.945 991.139 356.251 991.361 356.577C991.577 356.9 991.634 357.223 991.532 357.545C991.424 357.864 991.139 358.158 990.675 358.425C990.345 358.616 989.992 358.75 989.618 358.827C989.243 358.897 988.856 358.915 988.455 358.882L990.961 360.328L989.665 361.076L982.806 357.116L984.064 356.39L984.721 356.77C984.645 356.528 984.667 356.295 984.788 356.071C984.908 355.848 985.143 355.635 985.493 355.433ZM986.236 356.236C985.969 356.39 985.81 356.555 985.759 356.731C985.702 356.904 985.744 357.082 985.883 357.265C986.023 357.448 986.248 357.63 986.56 357.809C986.871 357.989 987.185 358.119 987.503 358.2C987.814 358.277 988.122 358.301 988.427 358.271C988.732 358.242 989.017 358.15 989.284 357.996C989.557 357.839 989.719 357.672 989.77 357.496C989.821 357.32 989.776 357.144 989.637 356.968C989.497 356.785 989.271 356.603 988.96 356.423C988.649 356.244 988.335 356.114 988.017 356.033C987.706 355.949 987.401 355.923 987.103 355.956C986.798 355.985 986.509 356.079 986.236 356.236ZM987.059 352.461L988.355 351.713L990.889 353.176C990.844 352.938 990.883 352.707 991.003 352.483C991.124 352.259 991.346 352.054 991.67 351.867C992.045 351.651 992.442 351.513 992.861 351.454C993.28 351.388 993.705 351.403 994.137 351.498C994.576 351.59 995.001 351.755 995.414 351.993L998.5 353.775L997.214 354.518L994.28 352.824C993.969 352.644 993.651 352.545 993.328 352.527C992.997 352.505 992.673 352.586 992.356 352.769C992.178 352.872 992.048 352.994 991.965 353.137C991.883 353.273 991.876 353.427 991.946 353.599C992.022 353.768 992.207 353.937 992.499 354.105L995.214 355.673L993.918 356.421L987.059 352.461ZM1001.97 351.906C1001.26 352.313 1000.57 352.551 999.891 352.621C999.218 352.687 998.56 352.556 997.919 352.23L999.176 351.504C999.513 351.662 999.834 351.726 1000.14 351.697C1000.45 351.664 1000.77 351.55 1001.11 351.356C1001.38 351.198 1001.55 351.044 1001.62 350.894C1001.69 350.74 1001.63 350.613 1001.46 350.514C1001.34 350.444 1001.22 350.404 1001.1 350.393C1000.98 350.382 1000.81 350.408 1000.59 350.47C1000.36 350.525 1000.06 350.635 999.672 350.8C999.075 351.042 998.56 351.207 998.128 351.295C997.697 351.383 997.319 351.407 996.995 351.367C996.677 351.323 996.376 351.218 996.09 351.053C995.62 350.782 995.442 350.459 995.556 350.085C995.671 349.711 996.049 349.339 996.69 348.969C997.401 348.558 998.097 348.332 998.776 348.292C999.449 348.248 1000.06 348.375 1000.6 348.672L999.395 349.365C999.091 349.196 998.789 349.132 998.49 349.172C998.192 349.212 997.893 349.319 997.595 349.491C997.347 349.634 997.192 349.779 997.128 349.926C997.071 350.069 997.125 350.188 997.29 350.283C997.411 350.353 997.541 350.391 997.681 350.399C997.82 350.399 998.001 350.367 998.224 350.305C998.446 350.235 998.748 350.12 999.129 349.959C999.713 349.717 1000.22 349.553 1000.64 349.469C1001.06 349.381 1001.43 349.361 1001.76 349.409C1002.08 349.453 1002.38 349.557 1002.66 349.722C1003.15 350.004 1003.33 350.344 1003.19 350.74C1003.05 351.128 1002.64 351.517 1001.97 351.906Z" fill="#5F52FF"/>
|
|
13
|
+
<path id="Recursive Ethical Selection" d="M736.626 722.305L739.741 720.506C740.554 720.037 741.348 719.791 742.123 719.769C742.898 719.74 743.596 719.905 744.219 720.264C744.562 720.462 744.784 720.697 744.885 720.968C744.993 721.236 744.974 721.526 744.828 721.837C745.216 721.753 745.584 721.731 745.933 721.771C746.289 721.808 746.645 721.903 747 722.057L749.172 722.981L747.743 723.806L745.895 723.003C745.622 722.882 745.362 722.805 745.114 722.772C744.873 722.736 744.641 722.741 744.419 722.789C744.19 722.833 743.961 722.921 743.733 723.053L742.218 723.927L744.876 725.462L743.485 726.265L736.626 722.305ZM742.647 722.415C743.053 722.18 743.272 721.958 743.304 721.749C743.342 721.537 743.199 721.337 742.875 721.15C742.552 720.963 742.205 720.88 741.837 720.902C741.475 720.921 741.091 721.047 740.684 721.282L739.16 722.162L741.123 723.295L742.647 722.415ZM752.656 721.102C752.148 721.396 751.592 721.588 750.989 721.68C750.386 721.764 749.792 721.751 749.207 721.641C748.617 721.528 748.074 721.328 747.578 721.042C747.083 720.756 746.737 720.442 746.54 720.101C746.343 719.76 746.321 719.417 746.473 719.073C746.632 718.724 746.966 718.404 747.474 718.11C747.988 717.813 748.544 717.621 749.141 717.533C749.731 717.441 750.328 717.459 750.932 717.588C751.535 717.709 752.11 717.927 752.656 718.242L752.942 718.407L749.265 720.53C749.544 720.655 749.823 720.739 750.103 720.783C750.382 720.82 750.655 720.82 750.922 720.783C751.189 720.739 751.433 720.653 751.656 720.525C751.935 720.363 752.113 720.198 752.189 720.03C752.265 719.854 752.253 719.678 752.151 719.502L753.409 718.776C753.745 719.161 753.853 719.56 753.732 719.975C753.612 720.382 753.253 720.758 752.656 721.102ZM750.751 718.638C750.344 718.477 749.944 718.4 749.55 718.407C749.15 718.411 748.791 718.504 748.474 718.688C748.15 718.875 747.985 719.084 747.979 719.315C747.966 719.542 748.099 719.773 748.379 720.008L750.751 718.638ZM758.572 717.686C758.064 717.98 757.512 718.17 756.915 718.258C756.318 718.339 755.727 718.324 755.143 718.214C754.552 718.101 754.009 717.901 753.514 717.615C753.018 717.329 752.672 717.015 752.475 716.674C752.279 716.333 752.253 715.992 752.399 715.651C752.552 715.307 752.882 714.988 753.39 714.694C754.07 714.302 754.781 714.089 755.524 714.056C756.267 714.023 756.969 714.154 757.629 714.447L756.334 715.195C756.016 715.078 755.692 715.03 755.362 715.052C755.032 715.067 754.73 715.153 754.457 715.31C754.203 715.457 754.054 715.617 754.009 715.789C753.958 715.958 754.003 716.134 754.143 716.317C754.289 716.497 754.517 716.676 754.828 716.856C755.14 717.036 755.451 717.168 755.762 717.252C756.073 717.329 756.378 717.355 756.677 717.329C756.975 717.303 757.251 717.217 757.505 717.07C757.791 716.905 757.944 716.726 757.963 716.531C757.988 716.333 757.877 716.137 757.629 715.943L758.925 715.195C759.452 715.587 759.693 716.005 759.649 716.449C759.598 716.889 759.239 717.301 758.572 717.686ZM766.456 713.002L765.199 713.728L764.523 713.338C764.58 713.584 764.551 713.824 764.437 714.058C764.316 714.289 764.088 714.502 763.751 714.696C763.376 714.913 762.979 715.054 762.56 715.12C762.141 715.179 761.712 715.162 761.274 715.07C760.842 714.975 760.42 714.808 760.007 714.57L756.921 712.788L758.207 712.045L761.141 713.739C761.452 713.919 761.773 714.02 762.103 714.042C762.427 714.06 762.748 713.978 763.065 713.794C763.243 713.692 763.373 713.573 763.456 713.437C763.538 713.294 763.541 713.138 763.465 712.969C763.395 712.797 763.214 712.627 762.922 712.458L760.207 710.89L761.503 710.142L766.456 713.002ZM762.874 709.351L764.132 708.625L764.989 709.12C764.824 708.841 764.795 708.59 764.903 708.366C765.005 708.139 765.221 707.93 765.551 707.739L765.951 707.508L767.142 708.196L766.685 708.46C766.393 708.628 766.192 708.799 766.085 708.971C765.97 709.14 765.967 709.321 766.075 709.516C766.183 709.703 766.421 709.903 766.789 710.115L769.123 711.463L767.828 712.211L762.874 709.351ZM774.165 708.684C773.46 709.091 772.768 709.329 772.089 709.399C771.415 709.465 770.758 709.335 770.117 709.008L771.374 708.282C771.711 708.44 772.032 708.504 772.336 708.475C772.648 708.442 772.971 708.328 773.308 708.134C773.581 707.976 773.753 707.822 773.822 707.672C773.886 707.518 773.832 707.391 773.661 707.292C773.54 707.223 773.419 707.182 773.299 707.171C773.178 707.16 773.006 707.186 772.784 707.248C772.562 707.303 772.257 707.413 771.87 707.578C771.273 707.82 770.758 707.985 770.326 708.073C769.894 708.161 769.517 708.185 769.193 708.145C768.875 708.101 768.573 707.996 768.288 707.831C767.818 707.56 767.64 707.237 767.754 706.863C767.869 706.489 768.246 706.117 768.888 705.747C769.599 705.336 770.295 705.111 770.974 705.07C771.647 705.026 772.254 705.153 772.794 705.45L771.593 706.143C771.288 705.974 770.987 705.91 770.688 705.95C770.39 705.991 770.091 706.097 769.793 706.269C769.545 706.412 769.39 706.557 769.326 706.704C769.269 706.847 769.323 706.966 769.488 707.061C769.609 707.131 769.739 707.169 769.879 707.177C770.018 707.177 770.199 707.146 770.422 707.083C770.644 707.014 770.946 706.898 771.327 706.737C771.911 706.495 772.416 706.332 772.841 706.247C773.26 706.159 773.632 706.139 773.956 706.187C774.273 706.231 774.575 706.335 774.861 706.5C775.35 706.783 775.524 707.122 775.385 707.518C775.245 707.906 774.839 708.295 774.165 708.684ZM772.372 703.867L773.667 703.119L778.621 705.979L777.325 706.727L772.372 703.867ZM770.466 702.767L771.762 702.019L772.915 702.685L771.619 703.433L770.466 702.767ZM774.584 702.59L775.985 701.781L780.929 703.228L778.404 700.384L779.795 699.581L782.891 703.514L781.405 704.372L774.584 702.59ZM788.061 700.661C787.553 700.955 786.997 701.147 786.394 701.239C785.79 701.323 785.196 701.31 784.612 701.2C784.021 701.087 783.478 700.887 782.983 700.601C782.488 700.315 782.142 700.001 781.945 699.66C781.748 699.319 781.726 698.976 781.878 698.632C782.037 698.283 782.37 697.963 782.878 697.669C783.393 697.372 783.948 697.18 784.545 697.092C785.136 697 785.733 697.018 786.336 697.147C786.94 697.268 787.514 697.486 788.061 697.801L788.346 697.966L784.669 700.089C784.949 700.214 785.228 700.298 785.508 700.342C785.787 700.379 786.06 700.379 786.327 700.342C786.594 700.298 786.838 700.212 787.06 700.084C787.34 699.922 787.518 699.757 787.594 699.589C787.67 699.413 787.657 699.237 787.556 699.061L788.813 698.335C789.15 698.72 789.258 699.119 789.137 699.534C789.016 699.941 788.658 700.317 788.061 700.661ZM786.155 698.197C785.749 698.036 785.349 697.959 784.955 697.966C784.555 697.97 784.196 698.063 783.879 698.247C783.555 698.434 783.39 698.643 783.383 698.874C783.371 699.101 783.504 699.332 783.783 699.567L786.155 698.197ZM761.288 719.067L766.384 716.124L767.632 716.845L763.927 718.984L765.432 719.853L768.861 717.873L770.052 718.561L766.622 720.541L768.29 721.503L771.976 719.375L773.224 720.095L768.147 723.027L761.288 719.067ZM776.321 718.307C776.009 718.487 775.717 718.615 775.444 718.692C775.165 718.766 774.869 718.782 774.558 718.742C774.253 718.698 773.93 718.577 773.587 718.379L770.919 716.839L770.062 717.334L769.081 716.767L769.938 716.272L768.414 715.392L769.709 714.644L771.234 715.524L772.472 714.809L773.453 715.376L772.215 716.091L774.749 717.554C774.908 717.646 775.06 717.693 775.206 717.697C775.346 717.697 775.501 717.647 775.673 717.548L776.445 717.103L777.426 717.669L776.321 718.307ZM771.686 713.063L772.982 712.315L775.516 713.778C775.471 713.54 775.509 713.309 775.63 713.085C775.751 712.862 775.973 712.656 776.297 712.469C776.671 712.253 777.068 712.115 777.487 712.057C777.907 711.991 778.332 712.005 778.764 712.101C779.202 712.192 779.628 712.357 780.041 712.596L783.127 714.378L781.841 715.12L778.907 713.426C778.596 713.247 778.278 713.148 777.954 713.129C777.624 713.107 777.3 713.188 776.983 713.371C776.805 713.474 776.675 713.597 776.592 713.74C776.509 713.875 776.503 714.029 776.573 714.202C776.649 714.37 776.833 714.539 777.125 714.708L779.84 716.275L778.545 717.023L771.686 713.063ZM779.535 710.731L780.831 709.983L785.784 712.843L784.489 713.591L779.535 710.731ZM777.63 709.631L778.926 708.883L780.078 709.549L778.783 710.297L777.63 709.631ZM789.541 710.807C789.032 711.1 788.48 711.291 787.883 711.379C787.286 711.46 786.695 711.445 786.111 711.335C785.52 711.221 784.977 711.021 784.482 710.735C783.987 710.449 783.641 710.136 783.444 709.795C783.247 709.454 783.221 709.113 783.368 708.772C783.52 708.427 783.85 708.108 784.358 707.815C785.038 707.423 785.749 707.21 786.492 707.177C787.235 707.144 787.937 707.274 788.597 707.567L787.302 708.315C786.984 708.198 786.66 708.15 786.33 708.172C786 708.187 785.698 708.273 785.425 708.431C785.171 708.578 785.022 708.737 784.977 708.909C784.927 709.078 784.971 709.254 785.111 709.437C785.257 709.617 785.486 709.797 785.797 709.976C786.108 710.156 786.419 710.288 786.73 710.372C787.041 710.449 787.346 710.475 787.645 710.449C787.943 710.424 788.22 710.338 788.474 710.191C788.759 710.026 788.912 709.846 788.931 709.652C788.956 709.454 788.845 709.258 788.597 709.063L789.893 708.315C790.42 708.708 790.661 709.126 790.617 709.569C790.566 710.009 790.207 710.422 789.541 710.807ZM794.51 707.938C793.963 708.253 793.395 708.431 792.804 708.471C792.207 708.508 791.671 708.389 791.194 708.114C790.902 707.945 790.724 707.766 790.661 707.575C790.597 707.377 790.642 707.161 790.794 706.926C790.953 706.688 791.22 706.416 791.595 706.112L792.757 705.155L792.5 705.006C792.277 704.878 792.045 704.821 791.804 704.836C791.563 704.851 791.29 704.946 790.985 705.122C790.699 705.287 790.528 705.456 790.47 705.628C790.42 705.797 790.512 705.952 790.747 706.095L789.461 706.838C788.908 706.512 788.695 706.147 788.822 705.743C788.949 705.333 789.34 704.939 789.994 704.561C790.699 704.154 791.36 703.923 791.976 703.868C792.598 703.809 793.144 703.916 793.614 704.187L797.196 706.255L795.967 706.964L795.415 706.645C795.446 706.898 795.386 707.131 795.234 707.344C795.081 707.549 794.84 707.747 794.51 707.938ZM793.9 707.212C794.116 707.087 794.275 706.952 794.376 706.805C794.484 706.655 794.513 706.499 794.462 706.337C794.411 706.176 794.262 706.024 794.014 705.881L793.595 705.639L792.671 706.447C792.423 706.656 792.28 706.827 792.242 706.959C792.198 707.087 792.274 707.208 792.471 707.322C792.662 707.432 792.881 707.481 793.128 707.47C793.376 707.452 793.633 707.366 793.9 707.212ZM791.584 701.575L792.879 700.827L799.738 704.787L798.443 705.535L791.584 701.575ZM767.876 734.315C767.286 734.656 766.679 734.9 766.057 735.046C765.428 735.189 764.809 735.228 764.199 735.162C763.596 735.092 763.034 734.911 762.513 734.617L763.885 733.825C764.374 734.093 764.863 734.199 765.352 734.144C765.835 734.086 766.317 733.917 766.8 733.638C767.2 733.407 767.441 733.176 767.524 732.945C767.606 732.714 767.502 732.514 767.21 732.346C767.044 732.25 766.863 732.197 766.667 732.186C766.476 732.172 766.216 732.208 765.885 732.296C765.555 732.377 765.117 732.527 764.571 732.747C763.885 733.026 763.275 733.22 762.742 733.33C762.208 733.433 761.713 733.455 761.256 733.396C760.805 733.334 760.373 733.184 759.96 732.945C759.579 732.725 759.347 732.47 759.265 732.181C759.188 731.887 759.261 731.581 759.484 731.262C759.712 730.94 760.087 730.628 760.608 730.327C761.503 729.81 762.392 729.532 763.275 729.491C764.158 729.451 764.974 729.632 765.723 730.036L764.38 730.811C763.955 730.595 763.526 730.501 763.094 730.531C762.662 730.553 762.208 730.701 761.732 730.976C761.376 731.182 761.16 731.387 761.084 731.592C761.014 731.794 761.097 731.963 761.332 732.098C761.503 732.197 761.684 732.258 761.875 732.28C762.072 732.298 762.326 732.269 762.637 732.192C762.954 732.111 763.37 731.97 763.885 731.768C764.666 731.449 765.336 731.235 765.895 731.125C766.46 731.011 766.952 730.987 767.371 731.053C767.797 731.116 768.2 731.257 768.581 731.477C769.026 731.733 769.286 732.023 769.362 732.346C769.439 732.661 769.347 732.989 769.086 733.33C768.832 733.668 768.429 733.996 767.876 734.315ZM774.053 730.749C773.545 731.042 772.989 731.234 772.386 731.326C771.782 731.41 771.189 731.398 770.604 731.288C770.014 731.174 769.471 730.974 768.975 730.688C768.48 730.402 768.134 730.089 767.937 729.748C767.74 729.407 767.718 729.064 767.87 728.719C768.029 728.371 768.363 728.05 768.871 727.757C769.385 727.46 769.941 727.267 770.538 727.179C771.128 727.087 771.725 727.106 772.329 727.234C772.932 727.355 773.507 727.573 774.053 727.889L774.339 728.054L770.662 730.177C770.941 730.301 771.22 730.386 771.5 730.43C771.779 730.466 772.052 730.466 772.319 730.43C772.586 730.386 772.83 730.299 773.053 730.171C773.332 730.01 773.51 729.845 773.586 729.676C773.662 729.5 773.65 729.324 773.548 729.148L774.805 728.422C775.142 728.807 775.25 729.207 775.129 729.621C775.009 730.028 774.65 730.404 774.053 730.749ZM772.148 728.285C771.741 728.123 771.341 728.046 770.947 728.054C770.547 728.057 770.188 728.151 769.871 728.334C769.547 728.521 769.382 728.73 769.375 728.961C769.363 729.188 769.496 729.419 769.776 729.654L772.148 728.285ZM770.719 724.621L772.015 723.873L778.874 727.833L777.578 728.581L770.719 724.621ZM782.639 725.792C782.131 726.085 781.575 726.277 780.972 726.369C780.368 726.453 779.775 726.441 779.19 726.331C778.6 726.217 778.057 726.017 777.561 725.731C777.066 725.445 776.72 725.132 776.523 724.791C776.326 724.45 776.304 724.107 776.456 723.762C776.615 723.414 776.948 723.093 777.457 722.8C777.971 722.503 778.527 722.31 779.124 722.222C779.714 722.13 780.311 722.149 780.915 722.277C781.518 722.398 782.093 722.616 782.639 722.932L782.925 723.097L779.247 725.22C779.527 725.344 779.806 725.429 780.086 725.473C780.365 725.509 780.638 725.509 780.905 725.473C781.172 725.429 781.416 725.342 781.639 725.214C781.918 725.053 782.096 724.888 782.172 724.719C782.248 724.543 782.236 724.367 782.134 724.191L783.391 723.465C783.728 723.85 783.836 724.25 783.715 724.664C783.595 725.071 783.236 725.447 782.639 725.792ZM780.734 723.328C780.327 723.166 779.927 723.089 779.533 723.097C779.133 723.1 778.774 723.194 778.457 723.377C778.133 723.564 777.968 723.773 777.961 724.004C777.949 724.231 778.082 724.462 778.362 724.697L780.734 723.328ZM788.555 722.376C788.047 722.669 787.495 722.86 786.898 722.948C786.301 723.028 785.71 723.014 785.126 722.904C784.535 722.79 783.992 722.59 783.497 722.304C783.001 722.018 782.655 721.705 782.458 721.364C782.261 721.023 782.236 720.682 782.382 720.341C782.535 719.996 782.865 719.677 783.373 719.384C784.052 718.991 784.764 718.779 785.507 718.746C786.25 718.713 786.952 718.843 787.612 719.136L786.316 719.884C785.999 719.767 785.675 719.719 785.345 719.741C785.015 719.756 784.713 719.842 784.44 720C784.186 720.146 784.037 720.306 783.992 720.478C783.941 720.647 783.986 720.823 784.125 721.006C784.272 721.186 784.5 721.366 784.811 721.545C785.123 721.725 785.434 721.857 785.745 721.941C786.056 722.018 786.361 722.044 786.659 722.018C786.958 721.993 787.234 721.906 787.488 721.76C787.774 721.595 787.926 721.415 787.945 721.221C787.971 721.023 787.86 720.827 787.612 720.632L788.908 719.884C789.435 720.277 789.676 720.695 789.632 721.138C789.581 721.578 789.222 721.991 788.555 722.376ZM793.791 719.221C793.48 719.401 793.188 719.529 792.915 719.606C792.635 719.679 792.34 719.696 792.029 719.655C791.724 719.611 791.4 719.49 791.057 719.292L788.39 717.752L787.532 718.247L786.551 717.681L787.408 717.186L785.884 716.306L787.18 715.558L788.704 716.438L789.942 715.723L790.924 716.289L789.685 717.004L792.219 718.467C792.378 718.559 792.53 718.607 792.676 718.61C792.816 718.61 792.972 718.561 793.143 718.462L793.915 718.016L794.896 718.583L793.791 719.221ZM791.052 715.082L792.348 714.334L797.301 717.194L796.006 717.942L791.052 715.082ZM789.147 713.982L790.442 713.234L791.595 713.9L790.299 714.648L789.147 713.982ZM801.105 715.13C800.584 715.431 800.019 715.629 799.409 715.724C798.8 715.812 798.199 715.803 797.609 715.697C797.018 715.583 796.475 715.383 795.98 715.097C795.484 714.811 795.138 714.498 794.941 714.157C794.751 713.812 794.735 713.466 794.894 713.117C795.059 712.765 795.402 712.439 795.923 712.138C796.45 711.834 797.015 711.636 797.618 711.544C798.228 711.449 798.828 711.458 799.419 711.572C800.009 711.685 800.552 711.885 801.048 712.171C801.543 712.457 801.889 712.771 802.086 713.112C802.277 713.449 802.293 713.796 802.134 714.151C801.975 714.5 801.632 714.826 801.105 715.13ZM800.038 714.514C800.317 714.353 800.483 714.184 800.533 714.008C800.59 713.829 800.549 713.651 800.409 713.475C800.27 713.291 800.044 713.11 799.733 712.93C799.422 712.751 799.108 712.62 798.79 712.54C798.479 712.455 798.171 712.432 797.866 712.468C797.561 712.498 797.269 712.593 796.99 712.754C796.716 712.912 796.551 713.081 796.494 713.26C796.437 713.433 796.478 713.61 796.618 713.794C796.758 713.977 796.983 714.159 797.294 714.338C797.606 714.518 797.92 714.648 798.238 714.729C798.549 714.806 798.857 714.83 799.162 714.8C799.473 714.767 799.765 714.672 800.038 714.514ZM799.731 710.071L800.989 709.345L801.665 709.736C801.608 709.49 801.64 709.252 801.76 709.021C801.875 708.786 802.1 708.572 802.437 708.377C802.811 708.161 803.208 708.023 803.627 707.965C804.047 707.899 804.472 707.913 804.904 708.009C805.342 708.1 805.768 708.265 806.18 708.504L809.267 710.286L807.981 711.028L805.047 709.334C804.736 709.155 804.418 709.056 804.094 709.037C803.764 709.015 803.44 709.096 803.123 709.279C802.945 709.382 802.815 709.505 802.732 709.648C802.649 709.783 802.643 709.937 802.713 710.11C802.789 710.278 802.973 710.447 803.265 710.616L805.98 712.183L804.685 712.931L799.731 710.071Z" fill="#5F52FF"/>
|
|
14
|
+
<path id="Job Profile" d="M837.889 679.086C837.146 679.515 836.368 679.726 835.555 679.719C834.742 679.704 833.977 679.49 833.259 679.075L832.878 678.855L834.221 678.08L834.602 678.3C834.971 678.513 835.326 678.63 835.669 678.652C836.012 678.674 836.352 678.588 836.689 678.393C837.025 678.199 837.174 678.003 837.136 677.805C837.098 677.607 836.895 677.402 836.527 677.189L831.878 674.505L833.269 673.702L837.917 676.386C838.629 676.797 838.988 677.242 838.994 677.722C839.007 678.199 838.638 678.654 837.889 679.086ZM843.923 675.603C843.402 675.903 842.837 676.101 842.227 676.197C841.618 676.285 841.017 676.276 840.427 676.169C839.836 676.056 839.293 675.856 838.798 675.57C838.302 675.284 837.956 674.97 837.759 674.629C837.569 674.285 837.553 673.938 837.712 673.59C837.877 673.238 838.22 672.911 838.741 672.611C839.268 672.306 839.833 672.108 840.436 672.017C841.046 671.921 841.646 671.931 842.237 672.044C842.827 672.158 843.37 672.358 843.866 672.644C844.361 672.93 844.707 673.243 844.904 673.584C845.095 673.922 845.111 674.268 844.952 674.624C844.793 674.972 844.45 675.298 843.923 675.603ZM842.856 674.987C843.135 674.825 843.301 674.657 843.351 674.481C843.408 674.301 843.367 674.123 843.227 673.947C843.088 673.764 842.862 673.582 842.551 673.403C842.24 673.223 841.926 673.093 841.608 673.012C841.297 672.928 840.989 672.904 840.684 672.941C840.379 672.97 840.087 673.065 839.808 673.227C839.534 673.384 839.369 673.553 839.312 673.733C839.255 673.905 839.296 674.083 839.436 674.266C839.576 674.45 839.801 674.631 840.112 674.811C840.424 674.99 840.738 675.121 841.055 675.201C841.367 675.278 841.675 675.302 841.98 675.273C842.291 675.24 842.583 675.144 842.856 674.987ZM850.418 671.853C850.069 672.055 849.7 672.19 849.313 672.26C848.925 672.33 848.522 672.342 848.103 672.298L848.76 672.678L847.503 673.404L840.644 669.444L841.94 668.696L844.435 670.137C844.378 669.906 844.413 669.684 844.54 669.471C844.674 669.255 844.905 669.052 845.236 668.861C845.699 668.593 846.207 668.428 846.76 668.366C847.312 668.304 847.871 668.337 848.436 668.465C848.995 668.59 849.526 668.797 850.027 669.086C850.523 669.372 850.882 669.679 851.104 670.005C851.32 670.328 851.377 670.65 851.275 670.973C851.167 671.292 850.882 671.585 850.418 671.853ZM849.027 671.424C849.3 671.266 849.462 671.099 849.513 670.923C849.564 670.747 849.519 670.571 849.38 670.395C849.24 670.212 849.014 670.031 848.703 669.851C848.392 669.671 848.078 669.541 847.76 669.46C847.449 669.376 847.144 669.35 846.846 669.383C846.541 669.413 846.252 669.506 845.979 669.664C845.712 669.818 845.553 669.983 845.502 670.159C845.445 670.331 845.486 670.509 845.626 670.692C845.766 670.876 845.991 671.057 846.303 671.237C846.614 671.417 846.928 671.547 847.246 671.627C847.557 671.704 847.865 671.728 848.17 671.699C848.475 671.67 848.76 671.578 849.027 671.424ZM838.451 681.71L841.376 680.021C841.922 679.706 842.484 679.495 843.062 679.389C843.633 679.279 844.183 679.266 844.71 679.35C845.243 679.431 845.726 679.596 846.158 679.845C846.59 680.095 846.879 680.375 847.025 680.687C847.171 680.991 847.152 681.31 846.967 681.644C846.777 681.974 846.409 682.297 845.862 682.612L844.329 683.497L846.701 684.867L845.31 685.67L838.451 681.71ZM844.586 681.963C844.992 681.728 845.208 681.501 845.234 681.281C845.259 681.061 845.1 680.852 844.757 680.654C844.421 680.46 844.062 680.37 843.681 680.384C843.3 680.399 842.906 680.524 842.5 680.758L841.042 681.6L843.128 682.804L844.586 681.963ZM846.968 678.992L848.226 678.266L849.083 678.761C848.918 678.483 848.89 678.232 848.998 678.008C849.099 677.781 849.315 677.572 849.645 677.381L850.045 677.15L851.236 677.837L850.779 678.101C850.487 678.27 850.287 678.441 850.179 678.613C850.065 678.782 850.061 678.963 850.169 679.157C850.277 679.344 850.515 679.544 850.884 679.757L853.218 681.104L851.922 681.852L846.968 678.992ZM858.603 678.127C858.082 678.428 857.517 678.626 856.907 678.721C856.297 678.809 855.697 678.8 855.107 678.694C854.516 678.58 853.973 678.38 853.478 678.094C852.982 677.808 852.636 677.495 852.439 677.154C852.249 676.809 852.233 676.463 852.392 676.114C852.557 675.762 852.9 675.436 853.42 675.135C853.948 674.831 854.513 674.633 855.116 674.541C855.726 674.446 856.326 674.455 856.917 674.569C857.507 674.683 858.05 674.882 858.546 675.168C859.041 675.454 859.387 675.768 859.584 676.109C859.774 676.446 859.79 676.793 859.632 677.148C859.473 677.497 859.13 677.823 858.603 678.127ZM857.536 677.511C857.815 677.35 857.98 677.181 858.031 677.005C858.088 676.826 858.047 676.648 857.907 676.472C857.768 676.289 857.542 676.107 857.231 675.927C856.92 675.748 856.605 675.618 856.288 675.537C855.977 675.453 855.669 675.429 855.364 675.465C855.059 675.495 854.767 675.59 854.487 675.751C854.214 675.909 854.049 676.078 853.992 676.257C853.935 676.43 853.976 676.608 854.116 676.791C854.256 676.974 854.481 677.156 854.792 677.335C855.103 677.515 855.418 677.645 855.735 677.726C856.046 677.803 856.354 677.827 856.659 677.797C856.971 677.764 857.263 677.669 857.536 677.511ZM858.715 673.344L857.858 673.839L856.876 673.272L857.734 672.777L857.124 672.425C856.788 672.231 856.581 672.046 856.505 671.87C856.435 671.69 856.467 671.521 856.6 671.364C856.727 671.202 856.946 671.032 857.258 670.852L858.363 670.214L859.344 670.781L858.572 671.226C858.401 671.325 858.315 671.415 858.315 671.496C858.315 671.576 858.394 671.662 858.553 671.754L859.029 672.029L860.268 671.314L861.249 671.881L860.011 672.596L863.983 674.889L862.688 675.637L858.715 673.344ZM861.378 670.673L862.673 669.925L867.627 672.785L866.331 673.533L861.378 670.673ZM859.472 669.573L860.768 668.825L861.921 669.491L860.625 670.239L859.472 669.573ZM862.133 668.037L863.428 667.289L870.287 671.249L868.992 671.997L862.133 668.037ZM874.052 669.208C873.544 669.501 872.989 669.693 872.385 669.785C871.782 669.869 871.188 669.857 870.604 669.747C870.013 669.633 869.47 669.433 868.975 669.147C868.479 668.861 868.133 668.548 867.936 668.207C867.74 667.866 867.717 667.523 867.87 667.178C868.029 666.83 868.362 666.509 868.87 666.216C869.384 665.919 869.94 665.726 870.537 665.638C871.128 665.546 871.725 665.565 872.328 665.693C872.931 665.814 873.506 666.032 874.052 666.348L874.338 666.513L870.661 668.636C870.94 668.76 871.22 668.845 871.499 668.889C871.779 668.925 872.052 668.925 872.319 668.889C872.585 668.845 872.83 668.758 873.052 668.63C873.332 668.469 873.509 668.304 873.586 668.135C873.662 667.959 873.649 667.783 873.547 667.607L874.805 666.881C875.142 667.266 875.25 667.666 875.129 668.08C875.008 668.487 874.649 668.863 874.052 669.208ZM872.147 666.744C871.741 666.582 871.341 666.505 870.947 666.513C870.547 666.516 870.188 666.61 869.87 666.793C869.546 666.98 869.381 667.189 869.375 667.42C869.362 667.647 869.496 667.878 869.775 668.113L872.147 666.744Z" fill="#5F52FF"/>
|
|
15
|
+
<path id="Active/Pending
Tasks Queue" d="M890.04 128.989L891.668 128.048L901.176 130.479L899.699 131.332L897.708 130.798L894.803 132.476L895.717 133.631L894.288 134.456L890.04 128.989ZM896.117 130.353L892.183 129.291L894.031 131.557L896.117 130.353ZM904.522 128.68C904.014 128.973 903.461 129.164 902.864 129.252C902.267 129.332 901.677 129.318 901.092 129.208C900.502 129.094 899.959 128.894 899.463 128.608C898.968 128.322 898.622 128.009 898.425 127.668C898.228 127.327 898.203 126.986 898.349 126.645C898.501 126.3 898.832 125.981 899.34 125.688C900.019 125.295 900.73 125.083 901.473 125.05C902.217 125.017 902.918 125.147 903.579 125.44L902.283 126.188C901.966 126.071 901.642 126.023 901.312 126.045C900.981 126.06 900.68 126.146 900.407 126.304C900.153 126.45 900.003 126.61 899.959 126.782C899.908 126.951 899.952 127.127 900.092 127.31C900.238 127.49 900.467 127.669 900.778 127.849C901.089 128.029 901.4 128.161 901.712 128.245C902.023 128.322 902.328 128.348 902.626 128.322C902.925 128.296 903.201 128.21 903.455 128.064C903.741 127.899 903.893 127.719 903.912 127.525C903.938 127.327 903.826 127.13 903.579 126.936L904.874 126.188C905.401 126.58 905.643 126.998 905.598 127.442C905.548 127.882 905.189 128.295 904.522 128.68ZM909.758 125.525C909.447 125.704 909.154 125.833 908.881 125.91C908.602 125.983 908.307 126 907.995 125.959C907.691 125.915 907.367 125.794 907.024 125.596L904.356 124.056L903.499 124.551L902.518 123.985L903.375 123.49L901.851 122.61L903.146 121.862L904.671 122.742L905.909 122.027L906.89 122.593L905.652 123.308L908.186 124.771C908.345 124.863 908.497 124.911 908.643 124.914C908.783 124.914 908.938 124.865 909.11 124.766L909.882 124.32L910.863 124.887L909.758 125.525ZM907.019 121.386L908.314 120.638L913.268 123.498L911.972 124.246L907.019 121.386ZM905.113 120.286L906.409 119.538L907.562 120.204L906.266 120.952L905.113 120.286ZM909.232 120.108L910.632 119.3L915.576 120.746L913.052 117.903L914.442 117.1L917.538 121.032L916.052 121.89L909.232 120.108ZM922.708 118.18C922.2 118.473 921.644 118.666 921.041 118.757C920.437 118.842 919.844 118.829 919.259 118.719C918.669 118.605 918.126 118.405 917.63 118.119C917.135 117.833 916.789 117.52 916.592 117.179C916.395 116.838 916.373 116.495 916.525 116.15C916.684 115.802 917.017 115.481 917.525 115.188C918.04 114.891 918.596 114.698 919.193 114.61C919.783 114.519 920.38 114.537 920.984 114.665C921.587 114.786 922.162 115.005 922.708 115.32L922.994 115.485L919.316 117.608C919.596 117.733 919.875 117.817 920.155 117.861C920.434 117.898 920.707 117.898 920.974 117.861C921.241 117.817 921.485 117.731 921.708 117.602C921.987 117.441 922.165 117.276 922.241 117.107C922.317 116.931 922.305 116.755 922.203 116.579L923.46 115.853C923.797 116.238 923.905 116.638 923.784 117.052C923.664 117.459 923.305 117.835 922.708 118.18ZM920.803 115.716C920.396 115.555 919.996 115.478 919.602 115.485C919.202 115.489 918.843 115.582 918.526 115.765C918.202 115.952 918.037 116.161 918.03 116.392C918.018 116.62 918.151 116.851 918.43 117.085L920.803 115.716ZM921.432 110.865L922.689 110.139L927.052 115.54L925.795 116.266L921.432 110.865ZM923.701 109.554L926.626 107.866C927.172 107.55 927.734 107.34 928.312 107.233C928.884 107.123 929.433 107.11 929.96 107.195C930.494 107.275 930.976 107.44 931.408 107.69C931.84 107.939 932.129 108.22 932.275 108.531C932.421 108.836 932.402 109.155 932.218 109.488C932.027 109.818 931.659 110.141 931.113 110.456L929.579 111.342L931.951 112.711L930.56 113.514L923.701 109.554ZM929.836 109.807C930.243 109.573 930.459 109.345 930.484 109.125C930.51 108.905 930.351 108.696 930.008 108.498C929.671 108.304 929.312 108.214 928.931 108.229C928.55 108.243 928.157 108.368 927.75 108.603L926.293 109.444L928.379 110.649L929.836 109.807ZM939.564 108.448C939.056 108.742 938.5 108.934 937.897 109.026C937.293 109.11 936.699 109.097 936.115 108.987C935.525 108.874 934.982 108.674 934.486 108.388C933.991 108.102 933.645 107.788 933.448 107.447C933.251 107.106 933.229 106.763 933.381 106.419C933.54 106.07 933.873 105.75 934.381 105.456C934.896 105.159 935.452 104.967 936.049 104.879C936.639 104.787 937.236 104.805 937.839 104.934C938.443 105.055 939.018 105.273 939.564 105.588L939.85 105.753L936.172 107.876C936.452 108.001 936.731 108.085 937.011 108.129C937.29 108.166 937.563 108.166 937.83 108.129C938.097 108.085 938.341 107.999 938.563 107.871C938.843 107.709 939.021 107.544 939.097 107.376C939.173 107.2 939.16 107.024 939.059 106.848L940.316 106.122C940.653 106.507 940.761 106.906 940.64 107.321C940.52 107.728 940.161 108.104 939.564 108.448ZM937.658 105.984C937.252 105.823 936.852 105.746 936.458 105.753C936.058 105.757 935.699 105.85 935.382 106.034C935.058 106.221 934.893 106.43 934.886 106.661C934.874 106.888 935.007 107.119 935.286 107.354L937.658 105.984ZM938.135 103.421L939.393 102.695L940.069 103.085C940.012 102.84 940.044 102.601 940.164 102.37C940.279 102.136 940.504 101.921 940.841 101.727C941.215 101.511 941.612 101.373 942.032 101.314C942.451 101.248 942.876 101.263 943.308 101.358C943.746 101.45 944.172 101.615 944.585 101.853L947.671 103.635L946.385 104.378L943.451 102.684C943.14 102.504 942.822 102.405 942.498 102.387C942.168 102.365 941.844 102.446 941.527 102.629C941.349 102.732 941.219 102.854 941.136 102.997C941.054 103.133 941.047 103.287 941.117 103.459C941.193 103.628 941.377 103.797 941.67 103.965L944.385 105.533L943.089 106.281L938.135 103.421ZM951.148 101.76C950.684 102.028 950.176 102.193 949.624 102.255C949.065 102.314 948.506 102.281 947.947 102.156C947.382 102.028 946.851 101.821 946.356 101.535C945.854 101.245 945.496 100.939 945.28 100.616C945.057 100.29 945 99.9671 945.108 99.6481C945.216 99.3291 945.502 99.0358 945.966 98.7681C946.296 98.5774 946.645 98.4454 947.013 98.3721C947.388 98.2951 947.776 98.2731 948.176 98.3061L945.68 96.8651L946.975 96.1171L953.834 100.077L952.577 100.803L951.919 100.424C951.996 100.666 951.973 100.898 951.853 101.122C951.732 101.346 951.497 101.558 951.148 101.76ZM950.405 100.957C950.672 100.803 950.83 100.638 950.881 100.462C950.932 100.286 950.891 100.108 950.757 99.9286C950.618 99.7453 950.392 99.5638 950.081 99.3841C949.77 99.2044 949.455 99.0743 949.138 98.9936C948.82 98.9129 948.512 98.8891 948.214 98.9221C947.909 98.9514 947.623 99.0431 947.356 99.1971C947.083 99.3548 946.921 99.5216 946.871 99.6976C946.813 99.8699 946.855 100.048 946.994 100.231C947.14 100.411 947.369 100.59 947.68 100.77C947.991 100.95 948.303 101.082 948.614 101.166C948.925 101.243 949.233 101.267 949.538 101.238C949.843 101.208 950.132 101.115 950.405 100.957ZM950.238 96.4336L951.533 95.6856L956.487 98.5456L955.191 99.2936L950.238 96.4336ZM948.332 95.3336L949.628 94.5856L950.781 95.2511L949.485 95.9991L948.332 95.3336ZM952.898 94.8976L954.156 94.1716L954.832 94.5621C954.775 94.3164 954.806 94.0781 954.927 93.8471C955.041 93.6124 955.267 93.3979 955.604 93.2036C955.978 92.9873 956.375 92.8498 956.794 92.7911C957.213 92.7251 957.639 92.7398 958.071 92.8351C958.509 92.9268 958.935 93.0918 959.347 93.3301L962.434 95.1121L961.148 95.8546L958.214 94.1606C957.903 93.9809 957.585 93.8819 957.261 93.8636C956.931 93.8416 956.607 93.9223 956.289 94.1056C956.112 94.2083 955.981 94.3311 955.899 94.4741C955.816 94.6098 955.81 94.7638 955.88 94.9361C955.956 95.1048 956.14 95.2734 956.432 95.4421L959.147 97.0096L957.852 97.7576L952.898 94.8976ZM968.073 94.1883C967.374 94.5916 966.676 94.8153 965.977 94.8593C965.279 94.9033 964.637 94.7786 964.053 94.4853L965.329 93.7483C965.622 93.8803 965.917 93.9298 966.215 93.8968C966.52 93.8601 966.822 93.7556 967.12 93.5833C967.47 93.3816 967.67 93.1671 967.721 92.9398C967.784 92.7125 967.6 92.4741 967.168 92.2248L966.568 91.8783C966.619 92.1056 966.577 92.3275 966.444 92.5438C966.311 92.7528 966.079 92.9526 965.749 93.1433C965.285 93.411 964.78 93.5778 964.234 93.6438C963.688 93.7098 963.142 93.6841 962.595 93.5668C962.043 93.4458 961.525 93.246 961.043 92.9673C960.554 92.685 960.208 92.3861 960.004 92.0708C959.795 91.7518 959.747 91.4346 959.861 91.1193C959.976 90.804 960.265 90.5125 960.728 90.2448C961.071 90.0468 961.433 89.9111 961.814 89.8378C962.202 89.7608 962.602 89.7425 963.015 89.7828L962.386 89.4198L963.643 88.6938L968.464 91.4768C968.94 91.7518 969.226 92.0451 969.321 92.3568C969.423 92.6721 969.362 92.9856 969.14 93.2973C968.918 93.609 968.562 93.906 968.073 94.1883ZM965.053 92.3678C965.32 92.2138 965.482 92.0506 965.539 91.8783C965.59 91.7023 965.552 91.5263 965.425 91.3503C965.291 91.1706 965.072 90.9928 964.767 90.8168C964.463 90.6408 964.155 90.5143 963.843 90.4373C963.532 90.3603 963.227 90.3383 962.929 90.3713C962.624 90.4006 962.338 90.4923 962.072 90.6463C961.798 90.804 961.636 90.9708 961.586 91.1468C961.529 91.3191 961.567 91.4951 961.7 91.6748C961.84 91.8508 962.062 92.0268 962.367 92.2028C962.672 92.3788 962.976 92.5071 963.281 92.5878C963.586 92.6611 963.891 92.6831 964.196 92.6538C964.494 92.6208 964.78 92.5255 965.053 92.3678ZM900.433 135.429L898.27 136.678L897.022 135.957L902.757 132.646L904.005 133.367L901.843 134.615L907.454 137.855L906.044 138.669L900.433 135.429ZM912.301 135.188C911.755 135.504 911.186 135.682 910.596 135.722C909.999 135.759 909.462 135.639 908.986 135.364C908.694 135.196 908.516 135.016 908.452 134.825C908.389 134.627 908.433 134.411 908.586 134.176C908.744 133.938 909.011 133.667 909.386 133.362L910.548 132.405L910.291 132.257C910.069 132.129 909.837 132.072 909.595 132.086C909.354 132.101 909.081 132.196 908.776 132.372C908.49 132.537 908.319 132.706 908.262 132.878C908.211 133.047 908.303 133.203 908.538 133.346L907.252 134.088C906.699 133.762 906.487 133.397 906.614 132.994C906.741 132.583 907.131 132.189 907.785 131.811C908.49 131.404 909.151 131.173 909.767 131.118C910.389 131.06 910.935 131.166 911.405 131.437L914.987 133.505L913.758 134.215L913.206 133.896C913.238 134.149 913.177 134.382 913.025 134.594C912.872 134.8 912.631 134.998 912.301 135.188ZM911.691 134.462C911.907 134.338 912.066 134.202 912.167 134.055C912.275 133.905 912.304 133.749 912.253 133.588C912.202 133.427 912.053 133.274 911.805 133.131L911.386 132.889L910.462 133.698C910.215 133.907 910.072 134.077 910.034 134.209C909.989 134.338 910.065 134.459 910.262 134.572C910.453 134.682 910.672 134.732 910.92 134.721C911.167 134.703 911.424 134.616 911.691 134.462ZM918.33 131.708C917.625 132.115 916.932 132.353 916.253 132.423C915.58 132.489 914.922 132.359 914.281 132.032L915.538 131.306C915.875 131.464 916.196 131.528 916.501 131.499C916.812 131.466 917.136 131.352 917.472 131.158C917.745 131 917.917 130.846 917.987 130.696C918.05 130.542 917.996 130.415 917.825 130.316C917.704 130.247 917.583 130.206 917.463 130.195C917.342 130.184 917.171 130.21 916.948 130.272C916.726 130.327 916.421 130.437 916.034 130.602C915.437 130.844 914.922 131.009 914.49 131.097C914.059 131.185 913.681 131.209 913.357 131.169C913.039 131.125 912.738 131.02 912.452 130.855C911.982 130.584 911.804 130.261 911.918 129.887C912.033 129.513 912.411 129.141 913.052 128.771C913.763 128.36 914.459 128.135 915.138 128.094C915.811 128.05 916.418 128.177 916.958 128.474L915.757 129.167C915.453 128.998 915.151 128.934 914.852 128.974C914.554 129.015 914.256 129.121 913.957 129.293C913.709 129.436 913.554 129.581 913.49 129.728C913.433 129.871 913.487 129.99 913.652 130.085C913.773 130.155 913.903 130.193 914.043 130.201C914.182 130.201 914.363 130.17 914.586 130.107C914.808 130.038 915.11 129.922 915.491 129.761C916.075 129.519 916.58 129.356 917.005 129.271C917.425 129.183 917.796 129.163 918.12 129.211C918.438 129.255 918.739 129.359 919.025 129.524C919.514 129.807 919.689 130.146 919.549 130.542C919.409 130.93 919.003 131.319 918.33 131.708ZM914.64 125.786L915.936 125.038L919.841 127.293L919.775 125.021L921.308 124.136L921.318 126.308L926.386 126.924L924.871 127.799L921.327 127.348L921.347 128.162L922.794 128.998L921.499 129.746L914.64 125.786ZM929.381 125.327C928.676 125.734 927.984 125.973 927.304 126.042C926.631 126.108 925.974 125.978 925.332 125.652L926.59 124.926C926.926 125.083 927.247 125.148 927.552 125.118C927.863 125.085 928.187 124.972 928.523 124.777C928.797 124.62 928.968 124.466 929.038 124.315C929.101 124.161 929.047 124.035 928.876 123.936C928.755 123.866 928.635 123.826 928.514 123.815C928.393 123.804 928.222 123.829 927.999 123.892C927.777 123.947 927.472 124.057 927.085 124.222C926.488 124.464 925.974 124.629 925.542 124.717C925.11 124.805 924.732 124.829 924.408 124.788C924.091 124.744 923.789 124.64 923.503 124.475C923.033 124.203 922.855 123.881 922.97 123.507C923.084 123.133 923.462 122.761 924.103 122.39C924.815 121.98 925.51 121.754 926.19 121.714C926.863 121.67 927.469 121.796 928.009 122.093L926.809 122.786C926.504 122.618 926.202 122.553 925.904 122.594C925.605 122.634 925.307 122.74 925.008 122.913C924.761 123.056 924.605 123.201 924.541 123.347C924.484 123.49 924.538 123.609 924.703 123.705C924.824 123.774 924.954 123.813 925.094 123.82C925.234 123.82 925.415 123.789 925.637 123.727C925.859 123.657 926.161 123.542 926.542 123.38C927.126 123.138 927.631 122.975 928.057 122.891C928.476 122.803 928.847 122.783 929.171 122.83C929.489 122.874 929.79 122.979 930.076 123.144C930.565 123.426 930.74 123.765 930.6 124.161C930.46 124.55 930.054 124.939 929.381 125.327ZM939.348 119.385C939.12 119.642 938.802 119.888 938.396 120.122C937.672 120.54 936.894 120.81 936.062 120.931C935.23 121.045 934.411 121.023 933.604 120.865C932.804 120.704 932.077 120.434 931.423 120.056C930.762 119.675 930.295 119.255 930.022 118.797C929.749 118.331 929.714 117.86 929.917 117.383C930.121 116.899 930.584 116.448 931.308 116.03C932.026 115.616 932.801 115.352 933.633 115.238C934.465 115.117 935.281 115.138 936.081 115.299C936.881 115.453 937.611 115.721 938.272 116.102C938.882 116.454 939.329 116.844 939.615 117.273C939.901 117.695 939.98 118.122 939.853 118.555L941.978 118.791L940.692 119.534L939.348 119.385ZM936.548 118.186L937.958 118.34C937.977 118.102 937.885 117.862 937.681 117.62C937.478 117.378 937.192 117.151 936.824 116.938C936.386 116.685 935.925 116.5 935.443 116.382C934.954 116.261 934.458 116.228 933.957 116.283C933.461 116.335 932.991 116.489 932.547 116.745C932.102 117.002 931.832 117.275 931.737 117.565C931.642 117.855 931.699 118.141 931.908 118.423C932.112 118.702 932.432 118.967 932.871 119.22C933.29 119.462 933.731 119.644 934.195 119.765C934.665 119.882 935.141 119.923 935.624 119.886C936.106 119.842 936.567 119.708 937.005 119.484C937.195 119.382 937.351 119.277 937.472 119.171L935.262 118.929L936.548 118.186ZM947.449 114.764L946.191 115.49L945.515 115.099C945.572 115.345 945.543 115.585 945.429 115.82C945.308 116.051 945.08 116.264 944.743 116.458C944.368 116.674 943.971 116.815 943.552 116.881C943.133 116.94 942.704 116.924 942.266 116.832C941.834 116.737 941.412 116.57 940.999 116.331L937.913 114.549L939.199 113.807L942.133 115.501C942.444 115.681 942.765 115.781 943.095 115.803C943.419 115.822 943.74 115.739 944.057 115.556C944.235 115.453 944.365 115.334 944.448 115.198C944.53 115.055 944.534 114.9 944.457 114.731C944.387 114.559 944.206 114.388 943.914 114.219L941.199 112.652L942.495 111.904L947.449 114.764ZM951.211 112.724C950.703 113.017 950.147 113.209 949.544 113.301C948.941 113.385 948.347 113.373 947.763 113.263C947.172 113.149 946.629 112.949 946.134 112.663C945.638 112.377 945.292 112.064 945.095 111.723C944.898 111.382 944.876 111.039 945.029 110.694C945.187 110.346 945.521 110.025 946.029 109.732C946.543 109.435 947.099 109.242 947.696 109.154C948.287 109.062 948.884 109.081 949.487 109.209C950.09 109.33 950.665 109.548 951.211 109.864L951.497 110.029L947.82 112.152C948.099 112.276 948.379 112.361 948.658 112.405C948.937 112.441 949.211 112.441 949.477 112.405C949.744 112.361 949.989 112.274 950.211 112.146C950.49 111.985 950.668 111.82 950.744 111.651C950.821 111.475 950.808 111.299 950.706 111.123L951.964 110.397C952.3 110.782 952.408 111.182 952.288 111.596C952.167 112.003 951.808 112.379 951.211 112.724ZM949.306 110.26C948.899 110.098 948.499 110.021 948.106 110.029C947.705 110.032 947.347 110.126 947.029 110.309C946.705 110.496 946.54 110.705 946.534 110.936C946.521 111.163 946.654 111.394 946.934 111.629L949.306 110.26ZM959.318 107.911L958.061 108.637L957.385 108.246C957.442 108.492 957.413 108.732 957.299 108.967C957.178 109.198 956.95 109.41 956.613 109.605C956.238 109.821 955.841 109.962 955.422 110.028C955.003 110.087 954.574 110.07 954.136 109.979C953.704 109.883 953.282 109.717 952.869 109.478L949.783 107.696L951.069 106.954L954.003 108.648C954.314 108.827 954.635 108.928 954.965 108.95C955.289 108.969 955.61 108.886 955.927 108.703C956.105 108.6 956.235 108.481 956.318 108.345C956.4 108.202 956.403 108.046 956.327 107.878C956.257 107.705 956.076 107.535 955.784 107.366L953.069 105.799L954.365 105.051L959.318 107.911ZM963.081 105.87C962.573 106.164 962.017 106.356 961.414 106.448C960.811 106.532 960.217 106.519 959.632 106.409C959.042 106.296 958.499 106.096 958.003 105.81C957.508 105.524 957.162 105.21 956.965 104.869C956.768 104.528 956.746 104.186 956.898 103.841C957.057 103.493 957.391 103.172 957.899 102.878C958.413 102.581 958.969 102.389 959.566 102.301C960.156 102.209 960.753 102.228 961.357 102.356C961.96 102.477 962.535 102.695 963.081 103.01L963.367 103.175L959.69 105.298C959.969 105.423 960.249 105.507 960.528 105.551C960.807 105.588 961.08 105.588 961.347 105.551C961.614 105.507 961.858 105.421 962.081 105.293C962.36 105.132 962.538 104.967 962.614 104.798C962.69 104.622 962.678 104.446 962.576 104.27L963.834 103.544C964.17 103.929 964.278 104.329 964.157 104.743C964.037 105.15 963.678 105.526 963.081 105.87ZM961.176 103.406C960.769 103.245 960.369 103.168 959.975 103.175C959.575 103.179 959.216 103.273 958.899 103.456C958.575 103.643 958.41 103.852 958.404 104.083C958.391 104.31 958.524 104.541 958.804 104.776L961.176 103.406Z" fill="#5F52FF"/>
|
|
16
|
+
<path id="Thought Queue" d="M1123.91 262.929L1121.74 264.178L1120.5 263.457L1126.23 260.146L1127.48 260.867L1125.32 262.115L1130.93 265.355L1129.52 266.169L1123.91 262.929ZM1127.25 259.559L1128.54 258.811L1131.08 260.274C1131.03 260.036 1131.07 259.805 1131.19 259.581C1131.31 259.357 1131.54 259.152 1131.86 258.965C1132.23 258.749 1132.63 258.611 1133.05 258.552C1133.47 258.486 1133.89 258.501 1134.33 258.596C1134.76 258.688 1135.19 258.853 1135.6 259.091L1138.69 260.873L1137.4 261.616L1134.47 259.922C1134.16 259.742 1133.84 259.643 1133.52 259.625C1133.19 259.603 1132.86 259.684 1132.55 259.867C1132.37 259.97 1132.24 260.092 1132.15 260.235C1132.07 260.371 1132.07 260.525 1132.14 260.697C1132.21 260.866 1132.4 261.035 1132.69 261.203L1135.4 262.771L1134.11 263.519L1127.25 259.559ZM1142.5 258.806C1141.98 259.106 1141.41 259.304 1140.8 259.4C1140.19 259.488 1139.59 259.478 1139 259.372C1138.41 259.258 1137.87 259.059 1137.37 258.773C1136.88 258.487 1136.53 258.173 1136.34 257.832C1136.15 257.487 1136.13 257.141 1136.29 256.793C1136.45 256.441 1136.8 256.114 1137.32 255.814C1137.84 255.509 1138.41 255.311 1139.01 255.22C1139.62 255.124 1140.22 255.133 1140.81 255.247C1141.4 255.361 1141.95 255.561 1142.44 255.847C1142.94 256.133 1143.28 256.446 1143.48 256.787C1143.67 257.124 1143.69 257.471 1143.53 257.827C1143.37 258.175 1143.03 258.501 1142.5 258.806ZM1141.43 258.19C1141.71 258.028 1141.88 257.86 1141.93 257.684C1141.99 257.504 1141.94 257.326 1141.8 257.15C1141.66 256.967 1141.44 256.785 1141.13 256.606C1140.82 256.426 1140.5 256.296 1140.18 256.215C1139.87 256.131 1139.57 256.107 1139.26 256.144C1138.96 256.173 1138.66 256.268 1138.38 256.43C1138.11 256.587 1137.95 256.756 1137.89 256.936C1137.83 257.108 1137.87 257.286 1138.01 257.469C1138.15 257.652 1138.38 257.834 1138.69 258.014C1139 258.193 1139.31 258.323 1139.63 258.404C1139.94 258.481 1140.25 258.505 1140.56 258.476C1140.87 258.443 1141.16 258.347 1141.43 258.19ZM1150.66 253.961L1149.4 254.687L1148.73 254.297C1148.79 254.542 1148.76 254.783 1148.64 255.017C1148.52 255.248 1148.29 255.461 1147.96 255.655C1147.58 255.872 1147.18 256.013 1146.77 256.079C1146.35 256.137 1145.92 256.121 1145.48 256.029C1145.05 255.934 1144.63 255.767 1144.21 255.529L1141.13 253.747L1142.41 253.004L1145.35 254.698C1145.66 254.878 1145.98 254.979 1146.31 255.001C1146.63 255.019 1146.95 254.937 1147.27 254.753C1147.45 254.651 1147.58 254.531 1147.66 254.396C1147.74 254.253 1147.75 254.097 1147.67 253.928C1147.6 253.756 1147.42 253.585 1147.13 253.417L1144.41 251.849L1145.71 251.101L1150.66 253.961ZM1156.3 253.037C1155.6 253.441 1154.9 253.664 1154.21 253.708C1153.51 253.752 1152.87 253.628 1152.28 253.334L1153.56 252.597C1153.85 252.729 1154.14 252.779 1154.44 252.746C1154.75 252.709 1155.05 252.605 1155.35 252.432C1155.7 252.231 1155.9 252.016 1155.95 251.789C1156.01 251.562 1155.83 251.323 1155.4 251.074L1154.8 250.727C1154.85 250.955 1154.81 251.177 1154.67 251.393C1154.54 251.602 1154.31 251.802 1153.98 251.992C1153.51 252.26 1153.01 252.427 1152.46 252.493C1151.92 252.559 1151.37 252.533 1150.82 252.416C1150.27 252.295 1149.75 252.095 1149.27 251.816C1148.78 251.534 1148.44 251.235 1148.23 250.92C1148.02 250.601 1147.98 250.284 1148.09 249.968C1148.2 249.653 1148.49 249.362 1148.96 249.094C1149.3 248.896 1149.66 248.76 1150.04 248.687C1150.43 248.61 1150.83 248.592 1151.24 248.632L1150.61 248.269L1151.87 247.543L1156.69 250.326C1157.17 250.601 1157.45 250.894 1157.55 251.206C1157.65 251.521 1157.59 251.835 1157.37 252.146C1157.15 252.458 1156.79 252.755 1156.3 253.037ZM1153.28 251.217C1153.55 251.063 1153.71 250.9 1153.77 250.727C1153.82 250.551 1153.78 250.375 1153.65 250.199C1153.52 250.02 1153.3 249.842 1153 249.666C1152.69 249.49 1152.38 249.363 1152.07 249.286C1151.76 249.209 1151.46 249.187 1151.16 249.22C1150.85 249.25 1150.57 249.341 1150.3 249.495C1150.03 249.653 1149.86 249.82 1149.81 249.996C1149.76 250.168 1149.79 250.344 1149.93 250.524C1150.07 250.7 1150.29 250.876 1150.59 251.052C1150.9 251.228 1151.2 251.356 1151.51 251.437C1151.81 251.51 1152.12 251.532 1152.42 251.503C1152.72 251.47 1153.01 251.375 1153.28 251.217ZM1151.33 245.654L1152.63 244.906L1155.16 246.369C1155.12 246.131 1155.16 245.9 1155.28 245.676C1155.4 245.452 1155.62 245.247 1155.94 245.06C1156.32 244.844 1156.71 244.706 1157.13 244.647C1157.55 244.581 1157.98 244.596 1158.41 244.691C1158.85 244.783 1159.27 244.948 1159.69 245.186L1162.77 246.968L1161.49 247.711L1158.55 246.017C1158.24 245.837 1157.92 245.738 1157.6 245.72C1157.27 245.698 1156.95 245.779 1156.63 245.962C1156.45 246.065 1156.32 246.187 1156.24 246.33C1156.16 246.466 1156.15 246.62 1156.22 246.792C1156.3 246.961 1156.48 247.13 1156.77 247.298L1159.49 248.866L1158.19 249.614L1151.33 245.654ZM1166.08 245.06C1165.77 245.24 1165.48 245.368 1165.2 245.445C1164.92 245.519 1164.63 245.535 1164.32 245.495C1164.01 245.451 1163.69 245.33 1163.34 245.132L1160.68 243.592L1159.82 244.087L1158.84 243.52L1159.7 243.025L1158.17 242.145L1159.47 241.397L1160.99 242.277L1162.23 241.562L1163.21 242.129L1161.97 242.844L1164.51 244.307C1164.67 244.398 1164.82 244.446 1164.96 244.45C1165.1 244.45 1165.26 244.4 1165.43 244.301L1166.2 243.856L1167.18 244.422L1166.08 245.06ZM1141.52 270.184C1141.29 270.441 1140.97 270.686 1140.57 270.921C1139.84 271.339 1139.07 271.608 1138.23 271.729C1137.4 271.843 1136.58 271.821 1135.78 271.663C1134.98 271.502 1134.25 271.233 1133.59 270.855C1132.93 270.474 1132.47 270.054 1132.19 269.595C1131.92 269.13 1131.89 268.659 1132.09 268.182C1132.29 267.698 1132.76 267.247 1133.48 266.829C1134.2 266.415 1134.97 266.151 1135.8 266.037C1136.64 265.916 1137.45 265.936 1138.25 266.097C1139.05 266.251 1139.78 266.519 1140.44 266.9C1141.05 267.252 1141.5 267.643 1141.79 268.072C1142.07 268.494 1142.15 268.921 1142.03 269.353L1144.15 269.59L1142.86 270.332L1141.52 270.184ZM1138.72 268.985L1140.13 269.139C1140.15 268.901 1140.06 268.66 1139.85 268.418C1139.65 268.176 1139.36 267.949 1139 267.736C1138.56 267.483 1138.1 267.298 1137.61 267.181C1137.13 267.06 1136.63 267.027 1136.13 267.082C1135.63 267.133 1135.16 267.287 1134.72 267.544C1134.27 267.801 1134 268.074 1133.91 268.363C1133.81 268.653 1133.87 268.939 1134.08 269.221C1134.28 269.5 1134.6 269.766 1135.04 270.019C1135.46 270.261 1135.9 270.442 1136.37 270.563C1136.84 270.681 1137.31 270.721 1137.8 270.684C1138.28 270.64 1138.74 270.507 1139.18 270.283C1139.37 270.18 1139.52 270.076 1139.64 269.969L1137.43 269.727L1138.72 268.985ZM1149.62 265.562L1148.36 266.288L1147.69 265.898C1147.74 266.144 1147.72 266.384 1147.6 266.618C1147.48 266.849 1147.25 267.062 1146.92 267.256C1146.54 267.473 1146.14 267.614 1145.72 267.68C1145.31 267.739 1144.88 267.722 1144.44 267.63C1144.01 267.535 1143.58 267.368 1143.17 267.13L1140.08 265.348L1141.37 264.605L1144.3 266.299C1144.62 266.479 1144.94 266.58 1145.27 266.602C1145.59 266.62 1145.91 266.538 1146.23 266.354C1146.41 266.252 1146.54 266.133 1146.62 265.997C1146.7 265.854 1146.71 265.698 1146.63 265.529C1146.56 265.357 1146.38 265.187 1146.09 265.018L1143.37 263.45L1144.67 262.702L1149.62 265.562ZM1153.38 263.522C1152.88 263.815 1152.32 264.008 1151.72 264.1C1151.11 264.184 1150.52 264.171 1149.93 264.061C1149.34 263.947 1148.8 263.748 1148.31 263.462C1147.81 263.176 1147.46 262.862 1147.27 262.521C1147.07 262.18 1147.05 261.837 1147.2 261.493C1147.36 261.144 1147.69 260.823 1148.2 260.53C1148.72 260.233 1149.27 260.041 1149.87 259.953C1150.46 259.861 1151.06 259.879 1151.66 260.008C1152.26 260.129 1152.84 260.347 1153.38 260.662L1153.67 260.827L1149.99 262.95C1150.27 263.075 1150.55 263.159 1150.83 263.203C1151.11 263.24 1151.38 263.24 1151.65 263.203C1151.92 263.159 1152.16 263.073 1152.38 262.945C1152.66 262.783 1152.84 262.618 1152.92 262.45C1152.99 262.274 1152.98 262.098 1152.88 261.922L1154.14 261.196C1154.47 261.581 1154.58 261.98 1154.46 262.395C1154.34 262.802 1153.98 263.177 1153.38 263.522ZM1151.48 261.058C1151.07 260.897 1150.67 260.82 1150.28 260.827C1149.88 260.831 1149.52 260.924 1149.2 261.108C1148.88 261.295 1148.71 261.504 1148.71 261.735C1148.69 261.962 1148.83 262.193 1149.11 262.428L1151.48 261.058ZM1161.49 258.709L1160.23 259.435L1159.56 259.045C1159.61 259.29 1159.59 259.531 1159.47 259.765C1159.35 259.996 1159.12 260.209 1158.79 260.403C1158.41 260.62 1158.01 260.761 1157.59 260.827C1157.18 260.885 1156.75 260.869 1156.31 260.777C1155.88 260.682 1155.45 260.515 1155.04 260.277L1151.95 258.495L1153.24 257.752L1156.17 259.446C1156.49 259.626 1156.81 259.727 1157.14 259.749C1157.46 259.767 1157.78 259.685 1158.1 259.501C1158.28 259.399 1158.41 259.279 1158.49 259.144C1158.57 259.001 1158.58 258.845 1158.5 258.676C1158.43 258.504 1158.25 258.333 1157.96 258.165L1155.24 256.597L1156.54 255.849L1161.49 258.709ZM1165.25 256.669C1164.74 256.962 1164.19 257.155 1163.59 257.246C1162.98 257.331 1162.39 257.318 1161.8 257.208C1161.21 257.094 1160.67 256.894 1160.18 256.608C1159.68 256.322 1159.33 256.009 1159.14 255.668C1158.94 255.327 1158.92 254.984 1159.07 254.639C1159.23 254.291 1159.56 253.97 1160.07 253.677C1160.59 253.38 1161.14 253.187 1161.74 253.099C1162.33 253.008 1162.93 253.026 1163.53 253.154C1164.13 253.275 1164.71 253.494 1165.25 253.809L1165.54 253.974L1161.86 256.097C1162.14 256.222 1162.42 256.306 1162.7 256.35C1162.98 256.387 1163.25 256.387 1163.52 256.35C1163.79 256.306 1164.03 256.22 1164.25 256.091C1164.53 255.93 1164.71 255.765 1164.79 255.596C1164.86 255.42 1164.85 255.244 1164.75 255.068L1166.01 254.342C1166.34 254.727 1166.45 255.127 1166.33 255.541C1166.21 255.948 1165.85 256.324 1165.25 256.669ZM1163.35 254.205C1162.94 254.044 1162.54 253.967 1162.15 253.974C1161.75 253.978 1161.39 254.071 1161.07 254.254C1160.75 254.441 1160.58 254.65 1160.58 254.881C1160.56 255.109 1160.7 255.34 1160.98 255.574L1163.35 254.205Z" fill="#5F52FF"/>
|
|
17
|
+
<path id="Round complete" d="M803.925 306.71L807.04 304.911C807.853 304.442 808.647 304.196 809.421 304.174C810.196 304.145 810.895 304.31 811.517 304.669C811.86 304.867 812.082 305.102 812.184 305.373C812.292 305.641 812.273 305.931 812.127 306.242C812.514 306.158 812.883 306.136 813.232 306.176C813.587 306.213 813.943 306.308 814.299 306.462L816.471 307.386L815.042 308.211L813.194 307.408C812.921 307.287 812.66 307.21 812.413 307.177C812.171 307.141 811.939 307.146 811.717 307.194C811.489 307.238 811.26 307.326 811.031 307.458L809.517 308.332L812.174 309.867L810.784 310.67L803.925 306.71ZM809.945 306.82C810.352 306.585 810.571 306.363 810.603 306.154C810.641 305.942 810.498 305.742 810.174 305.555C809.85 305.368 809.504 305.285 809.136 305.307C808.774 305.326 808.389 305.452 807.983 305.687L806.459 306.567L808.421 307.7L809.945 306.82ZM820.002 305.48C819.481 305.78 818.916 305.978 818.306 306.074C817.697 306.162 817.097 306.153 816.506 306.046C815.915 305.933 815.372 305.733 814.877 305.447C814.382 305.161 814.035 304.847 813.839 304.506C813.648 304.162 813.632 303.815 813.791 303.467C813.956 303.115 814.299 302.788 814.82 302.488C815.347 302.183 815.912 301.985 816.515 301.894C817.125 301.798 817.725 301.808 818.316 301.921C818.907 302.035 819.45 302.235 819.945 302.521C820.44 302.807 820.786 303.12 820.983 303.461C821.174 303.799 821.19 304.145 821.031 304.501C820.872 304.849 820.529 305.175 820.002 305.48ZM818.935 304.864C819.215 304.702 819.38 304.534 819.43 304.358C819.488 304.178 819.446 304 819.307 303.824C819.167 303.641 818.941 303.459 818.63 303.28C818.319 303.1 818.005 302.97 817.687 302.889C817.376 302.805 817.068 302.781 816.763 302.818C816.458 302.847 816.166 302.942 815.887 303.104C815.614 303.261 815.448 303.43 815.391 303.61C815.334 303.782 815.375 303.96 815.515 304.143C815.655 304.327 815.88 304.508 816.192 304.688C816.503 304.867 816.817 304.998 817.135 305.078C817.446 305.155 817.754 305.179 818.059 305.15C818.37 305.117 818.662 305.021 818.935 304.864ZM828.164 300.635L826.907 301.361L826.23 300.971C826.287 301.217 826.259 301.457 826.145 301.691C826.024 301.922 825.795 302.135 825.459 302.329C825.084 302.546 824.687 302.687 824.268 302.753C823.849 302.812 823.42 302.795 822.982 302.703C822.55 302.608 822.128 302.441 821.715 302.203L818.628 300.421L819.914 299.678L822.848 301.372C823.16 301.552 823.48 301.653 823.811 301.675C824.135 301.693 824.455 301.611 824.773 301.427C824.951 301.325 825.081 301.206 825.163 301.07C825.246 300.927 825.249 300.771 825.173 300.602C825.103 300.43 824.922 300.26 824.63 300.091L821.915 298.523L823.21 297.775L828.164 300.635ZM824.582 296.984L825.839 296.258L826.516 296.648C826.459 296.402 826.49 296.164 826.611 295.933C826.725 295.698 826.951 295.484 827.287 295.29C827.662 295.073 828.059 294.936 828.478 294.877C828.897 294.811 829.323 294.826 829.755 294.921C830.193 295.013 830.618 295.178 831.031 295.416L834.118 297.198L832.832 297.941L829.898 296.247C829.586 296.067 829.269 295.968 828.945 295.95C828.615 295.928 828.291 296.008 827.973 296.192C827.795 296.294 827.665 296.417 827.583 296.56C827.5 296.696 827.494 296.85 827.564 297.022C827.64 297.191 827.824 297.359 828.116 297.528L830.831 299.096L829.536 299.844L824.582 296.984ZM837.594 295.323C837.131 295.59 836.623 295.755 836.07 295.818C835.511 295.876 834.952 295.843 834.394 295.719C833.828 295.59 833.298 295.383 832.803 295.097C832.301 294.808 831.942 294.501 831.726 294.179C831.504 293.852 831.447 293.53 831.555 293.211C831.663 292.892 831.949 292.598 832.412 292.331C832.742 292.14 833.092 292.008 833.46 291.935C833.835 291.858 834.222 291.836 834.622 291.869L832.126 290.428L833.422 289.68L840.281 293.64L839.023 294.366L838.366 293.986C838.442 294.228 838.42 294.461 838.299 294.685C838.179 294.908 837.944 295.121 837.594 295.323ZM836.851 294.52C837.118 294.366 837.277 294.201 837.328 294.025C837.378 293.849 837.337 293.671 837.204 293.491C837.064 293.308 836.839 293.126 836.527 292.947C836.216 292.767 835.902 292.637 835.584 292.556C835.267 292.476 834.959 292.452 834.66 292.485C834.355 292.514 834.07 292.606 833.803 292.76C833.53 292.917 833.368 293.084 833.317 293.26C833.26 293.433 833.301 293.61 833.441 293.794C833.587 293.973 833.816 294.153 834.127 294.333C834.438 294.512 834.749 294.644 835.06 294.729C835.372 294.806 835.68 294.83 835.984 294.8C836.289 294.771 836.578 294.677 836.851 294.52ZM822.625 314.965C822.117 315.259 821.564 315.449 820.967 315.537C820.37 315.618 819.78 315.603 819.195 315.493C818.605 315.38 818.062 315.18 817.566 314.894C817.071 314.608 816.725 314.294 816.528 313.953C816.331 313.612 816.306 313.271 816.452 312.93C816.604 312.586 816.934 312.267 817.442 311.973C818.122 311.581 818.833 311.368 819.576 311.335C820.319 311.302 821.021 311.433 821.682 311.726L820.386 312.474C820.069 312.357 819.745 312.309 819.414 312.331C819.084 312.346 818.782 312.432 818.509 312.589C818.255 312.736 818.106 312.896 818.062 313.068C818.011 313.237 818.055 313.413 818.195 313.596C818.341 313.776 818.57 313.955 818.881 314.135C819.192 314.315 819.503 314.447 819.815 314.531C820.126 314.608 820.431 314.634 820.729 314.608C821.028 314.582 821.304 314.496 821.558 314.349C821.844 314.184 821.996 314.005 822.015 313.81C822.04 313.612 821.929 313.416 821.682 313.222L822.977 312.474C823.504 312.866 823.746 313.284 823.701 313.728C823.65 314.168 823.292 314.58 822.625 314.965ZM828.365 311.651C827.845 311.952 827.279 312.15 826.67 312.245C826.06 312.333 825.46 312.324 824.869 312.218C824.279 312.104 823.736 311.904 823.24 311.618C822.745 311.332 822.399 311.019 822.202 310.678C822.011 310.333 821.996 309.986 822.154 309.638C822.319 309.286 822.662 308.96 823.183 308.659C823.71 308.355 824.276 308.157 824.879 308.065C825.489 307.97 826.089 307.979 826.679 308.093C827.27 308.206 827.813 308.406 828.308 308.692C828.804 308.978 829.15 309.292 829.347 309.633C829.537 309.97 829.553 310.316 829.394 310.672C829.236 311.02 828.893 311.347 828.365 311.651ZM827.299 311.035C827.578 310.874 827.743 310.705 827.794 310.529C827.851 310.349 827.81 310.172 827.67 309.996C827.53 309.812 827.305 309.631 826.994 309.451C826.682 309.271 826.368 309.141 826.051 309.061C825.739 308.976 825.431 308.952 825.127 308.989C824.822 309.018 824.53 309.114 824.25 309.275C823.977 309.433 823.812 309.601 823.755 309.781C823.698 309.953 823.739 310.131 823.879 310.315C824.018 310.498 824.244 310.679 824.555 310.859C824.866 311.039 825.181 311.169 825.498 311.25C825.809 311.327 826.117 311.35 826.422 311.321C826.733 311.288 827.025 311.193 827.299 311.035ZM826.992 306.592L828.249 305.866L828.954 306.273C828.865 306.031 828.868 305.798 828.964 305.575C829.059 305.351 829.275 305.142 829.611 304.948C829.954 304.75 830.329 304.625 830.736 304.574C831.142 304.522 831.561 304.544 831.993 304.64C831.898 304.372 831.904 304.112 832.012 303.859C832.12 303.598 832.352 303.366 832.708 303.16C833.05 302.962 833.425 302.838 833.832 302.786C834.244 302.731 834.667 302.751 835.099 302.847C835.53 302.942 835.95 303.107 836.356 303.342L839.443 305.124L838.147 305.872L835.213 304.178C834.908 304.002 834.597 303.899 834.279 303.87C833.962 303.84 833.666 303.905 833.393 304.062C833.12 304.22 832.981 304.411 832.974 304.634C832.974 304.854 833.193 305.091 833.632 305.344L836.347 306.911L835.051 307.659L832.117 305.965C831.812 305.789 831.498 305.688 831.174 305.663C830.856 305.633 830.564 305.696 830.297 305.85C830.018 306.011 829.875 306.204 829.869 306.427C829.869 306.647 830.088 306.884 830.526 307.137L833.241 308.704L831.945 309.452L826.992 306.592ZM838.544 299.791C839.007 299.523 839.515 299.358 840.068 299.296C840.62 299.233 841.179 299.266 841.744 299.395C842.303 299.519 842.834 299.727 843.335 300.016C843.831 300.302 844.189 300.608 844.412 300.935C844.628 301.257 844.685 301.58 844.583 301.903C844.475 302.222 844.189 302.515 843.726 302.783C843.396 302.973 843.043 303.107 842.668 303.184C842.294 303.254 841.906 303.272 841.506 303.239L844.012 304.686L842.716 305.434L835.857 301.474L837.115 300.748L837.772 301.127C837.696 300.885 837.718 300.652 837.839 300.429C837.959 300.205 838.194 299.992 838.544 299.791ZM839.287 300.594C839.02 300.748 838.861 300.913 838.81 301.089C838.753 301.261 838.794 301.439 838.934 301.622C839.074 301.806 839.299 301.987 839.61 302.167C839.922 302.346 840.236 302.477 840.554 302.557C840.865 302.634 841.173 302.658 841.478 302.629C841.782 302.599 842.068 302.508 842.335 302.354C842.608 302.196 842.77 302.029 842.821 301.853C842.872 301.677 842.827 301.501 842.687 301.325C842.548 301.142 842.322 300.96 842.011 300.781C841.7 300.601 841.386 300.471 841.068 300.39C840.757 300.306 840.452 300.28 840.153 300.313C839.849 300.343 839.56 300.436 839.287 300.594ZM840.11 296.818L841.406 296.07L848.265 300.03L846.969 300.778L840.11 296.818ZM852.03 297.989C851.522 298.282 850.966 298.474 850.363 298.566C849.759 298.65 849.165 298.638 848.581 298.528C847.991 298.414 847.448 298.214 846.952 297.928C846.457 297.642 846.111 297.329 845.914 296.988C845.717 296.647 845.695 296.304 845.847 295.959C846.006 295.611 846.339 295.29 846.847 294.997C847.362 294.7 847.918 294.507 848.515 294.419C849.105 294.327 849.702 294.346 850.305 294.474C850.909 294.595 851.484 294.813 852.03 295.129L852.315 295.294L848.638 297.417C848.918 297.541 849.197 297.626 849.477 297.67C849.756 297.706 850.029 297.706 850.296 297.67C850.563 297.626 850.807 297.539 851.029 297.411C851.309 297.25 851.487 297.085 851.563 296.916C851.639 296.74 851.626 296.564 851.525 296.388L852.782 295.662C853.119 296.047 853.227 296.447 853.106 296.861C852.986 297.268 852.627 297.644 852.03 297.989ZM850.124 295.525C849.718 295.363 849.318 295.286 848.924 295.294C848.524 295.297 848.165 295.391 847.848 295.574C847.524 295.761 847.359 295.97 847.352 296.201C847.34 296.428 847.473 296.659 847.752 296.894L850.124 295.525ZM857.489 294.705C857.178 294.884 856.885 295.013 856.612 295.09C856.333 295.163 856.038 295.18 855.726 295.139C855.422 295.095 855.098 294.974 854.755 294.776L852.087 293.236L851.23 293.731L850.249 293.165L851.106 292.67L849.582 291.79L850.878 291.042L852.402 291.922L853.64 291.207L854.621 291.773L853.383 292.488L855.917 293.951C856.076 294.043 856.228 294.091 856.374 294.094C856.514 294.094 856.67 294.045 856.841 293.946L857.613 293.5L858.594 294.067L857.489 294.705ZM862.104 292.172C861.596 292.465 861.04 292.658 860.437 292.75C859.834 292.834 859.24 292.821 858.656 292.711C858.065 292.597 857.522 292.398 857.027 292.112C856.531 291.826 856.185 291.512 855.988 291.171C855.791 290.83 855.769 290.487 855.922 290.143C856.08 289.794 856.414 289.473 856.922 289.18C857.436 288.883 857.992 288.691 858.589 288.603C859.18 288.511 859.777 288.529 860.38 288.658C860.983 288.779 861.558 288.997 862.104 289.312L862.39 289.477L858.713 291.6C858.992 291.725 859.272 291.809 859.551 291.853C859.831 291.89 860.104 291.89 860.37 291.853C860.637 291.809 860.882 291.723 861.104 291.595C861.383 291.433 861.561 291.268 861.637 291.1C861.714 290.924 861.701 290.748 861.599 290.572L862.857 289.846C863.193 290.231 863.301 290.63 863.181 291.045C863.06 291.452 862.701 291.827 862.104 292.172ZM860.199 289.708C859.792 289.547 859.392 289.47 858.999 289.477C858.598 289.481 858.24 289.574 857.922 289.758C857.598 289.945 857.433 290.154 857.427 290.385C857.414 290.612 857.547 290.843 857.827 291.078L860.199 289.708Z" fill="#5F52FF"/>
|
|
18
|
+
<path id="Gathering
Context" d="M1165.85 499.031C1165.18 499.416 1164.45 499.658 1163.64 499.757C1162.83 499.856 1162.03 499.827 1161.24 499.669C1160.45 499.504 1159.72 499.233 1159.07 498.855C1158.41 498.474 1157.94 498.054 1157.67 497.595C1157.39 497.13 1157.36 496.659 1157.56 496.182C1157.77 495.698 1158.23 495.247 1158.95 494.829C1159.54 494.488 1160.17 494.248 1160.83 494.108C1161.49 493.969 1162.15 493.927 1162.8 493.982C1163.45 494.033 1164.06 494.174 1164.62 494.405L1163.2 495.225C1162.73 495.067 1162.22 495.012 1161.68 495.06C1161.14 495.108 1160.64 495.265 1160.17 495.533C1159.73 495.79 1159.46 496.065 1159.37 496.358C1159.28 496.648 1159.34 496.934 1159.54 497.216C1159.75 497.498 1160.08 497.766 1160.52 498.019C1160.95 498.268 1161.41 498.453 1161.9 498.574C1162.39 498.695 1162.89 498.73 1163.39 498.679C1163.89 498.624 1164.37 498.468 1164.81 498.211C1165.31 497.925 1165.58 497.619 1165.62 497.293C1165.66 496.963 1165.5 496.627 1165.16 496.286L1163.03 497.513L1161.91 496.864L1165.48 494.801L1169.21 496.957L1168.18 497.551L1166.99 496.864C1167.18 497.238 1167.19 497.608 1167.01 497.975C1166.84 498.334 1166.45 498.686 1165.85 499.031ZM1172.23 495.351C1171.68 495.666 1171.11 495.844 1170.52 495.884C1169.92 495.921 1169.39 495.802 1168.91 495.527C1168.62 495.358 1168.44 495.178 1168.38 494.988C1168.31 494.79 1168.36 494.573 1168.51 494.339C1168.67 494.1 1168.94 493.829 1169.31 493.525L1170.47 492.568L1170.22 492.419C1169.99 492.291 1169.76 492.234 1169.52 492.249C1169.28 492.263 1169.01 492.359 1168.7 492.535C1168.42 492.7 1168.24 492.868 1168.19 493.041C1168.14 493.209 1168.23 493.365 1168.46 493.508L1167.18 494.251C1166.62 493.924 1166.41 493.559 1166.54 493.156C1166.67 492.745 1167.06 492.351 1167.71 491.974C1168.42 491.567 1169.08 491.336 1169.69 491.281C1170.31 491.222 1170.86 491.328 1171.33 491.6L1174.91 493.668L1173.68 494.377L1173.13 494.058C1173.16 494.311 1173.1 494.544 1172.95 494.757C1172.8 494.962 1172.56 495.16 1172.23 495.351ZM1171.62 494.625C1171.83 494.5 1171.99 494.364 1172.09 494.218C1172.2 494.067 1172.23 493.911 1172.18 493.75C1172.13 493.589 1171.98 493.437 1171.73 493.294L1171.31 493.052L1170.39 493.86C1170.14 494.069 1170 494.24 1169.96 494.372C1169.91 494.5 1169.99 494.621 1170.19 494.735C1170.38 494.845 1170.6 494.894 1170.84 494.883C1171.09 494.865 1171.35 494.779 1171.62 494.625ZM1178.09 491.831C1177.78 492.011 1177.49 492.139 1177.22 492.216C1176.94 492.29 1176.64 492.306 1176.33 492.266C1176.03 492.222 1175.7 492.101 1175.36 491.903L1172.69 490.363L1171.83 490.858L1170.85 490.291L1171.71 489.796L1170.19 488.916L1171.48 488.168L1173.01 489.048L1174.24 488.333L1175.23 488.9L1173.99 489.615L1176.52 491.078C1176.68 491.169 1176.83 491.217 1176.98 491.221C1177.12 491.221 1177.27 491.171 1177.44 491.072L1178.22 490.627L1179.2 491.193L1178.09 491.831ZM1173.46 486.587L1174.75 485.839L1177.29 487.302C1177.24 487.064 1177.28 486.833 1177.4 486.609C1177.52 486.385 1177.74 486.18 1178.07 485.993C1178.44 485.777 1178.84 485.639 1179.26 485.581C1179.68 485.515 1180.1 485.529 1180.54 485.625C1180.97 485.716 1181.4 485.881 1181.81 486.12L1184.9 487.902L1183.61 488.644L1180.68 486.95C1180.37 486.77 1180.05 486.671 1179.73 486.653C1179.4 486.631 1179.07 486.712 1178.75 486.895C1178.58 486.998 1178.45 487.121 1178.36 487.264C1178.28 487.399 1178.28 487.553 1178.34 487.726C1178.42 487.894 1178.61 488.063 1178.9 488.232L1181.61 489.799L1180.32 490.547L1173.46 486.587ZM1188.66 485.861C1188.15 486.155 1187.6 486.347 1186.99 486.439C1186.39 486.523 1185.8 486.51 1185.21 486.4C1184.62 486.287 1184.08 486.087 1183.58 485.801C1183.09 485.515 1182.74 485.201 1182.55 484.86C1182.35 484.519 1182.33 484.177 1182.48 483.832C1182.64 483.484 1182.97 483.163 1183.48 482.869C1183.99 482.572 1184.55 482.38 1185.15 482.292C1185.74 482.2 1186.33 482.219 1186.94 482.347C1187.54 482.468 1188.12 482.686 1188.66 483.001L1188.95 483.166L1185.27 485.289C1185.55 485.414 1185.83 485.498 1186.11 485.542C1186.39 485.579 1186.66 485.579 1186.93 485.542C1187.19 485.498 1187.44 485.412 1187.66 485.284C1187.94 485.123 1188.12 484.958 1188.19 484.789C1188.27 484.613 1188.26 484.437 1188.16 484.261L1189.41 483.535C1189.75 483.92 1189.86 484.32 1189.74 484.734C1189.62 485.141 1189.26 485.517 1188.66 485.861ZM1186.76 483.397C1186.35 483.236 1185.95 483.159 1185.56 483.166C1185.16 483.17 1184.8 483.264 1184.48 483.447C1184.16 483.634 1183.99 483.843 1183.98 484.074C1183.97 484.301 1184.1 484.532 1184.38 484.767L1186.76 483.397ZM1187.23 480.834L1188.49 480.108L1189.35 480.603C1189.18 480.324 1189.15 480.073 1189.26 479.85C1189.36 479.622 1189.58 479.413 1189.91 479.223L1190.31 478.992L1191.5 479.679L1191.04 479.943C1190.75 480.112 1190.55 480.282 1190.44 480.455C1190.33 480.623 1190.33 480.805 1190.43 480.999C1190.54 481.186 1190.78 481.386 1191.15 481.599L1193.48 482.946L1192.19 483.694L1187.23 480.834ZM1191.47 478.391L1192.76 477.643L1197.71 480.503L1196.42 481.251L1191.47 478.391ZM1189.56 477.291L1190.86 476.543L1192.01 477.208L1190.71 477.956L1189.56 477.291ZM1194.13 476.855L1195.38 476.129L1196.06 476.519C1196 476.273 1196.03 476.035 1196.15 475.804C1196.27 475.569 1196.49 475.355 1196.83 475.161C1197.21 474.944 1197.6 474.807 1198.02 474.748C1198.44 474.682 1198.87 474.697 1199.3 474.792C1199.74 474.884 1200.16 475.049 1200.58 475.287L1203.66 477.069L1202.38 477.812L1199.44 476.118C1199.13 475.938 1198.81 475.839 1198.49 475.821C1198.16 475.799 1197.83 475.879 1197.52 476.063C1197.34 476.165 1197.21 476.288 1197.13 476.431C1197.04 476.567 1197.04 476.721 1197.11 476.893C1197.18 477.062 1197.37 477.23 1197.66 477.399L1200.38 478.967L1199.08 479.715L1194.13 476.855ZM1209.3 476.145C1208.6 476.549 1207.9 476.772 1207.21 476.816C1206.51 476.86 1205.87 476.736 1205.28 476.442L1206.56 475.705C1206.85 475.837 1207.14 475.887 1207.44 475.854C1207.75 475.817 1208.05 475.713 1208.35 475.54C1208.7 475.339 1208.9 475.124 1208.95 474.897C1209.01 474.669 1208.83 474.431 1208.4 474.182L1207.8 473.835C1207.85 474.063 1207.81 474.284 1207.67 474.501C1207.54 474.71 1207.31 474.91 1206.98 475.1C1206.51 475.368 1206.01 475.535 1205.46 475.601C1204.92 475.667 1204.37 475.641 1203.82 475.524C1203.27 475.403 1202.75 475.203 1202.27 474.924C1201.78 474.642 1201.44 474.343 1201.23 474.028C1201.02 473.709 1200.97 473.392 1201.09 473.076C1201.2 472.761 1201.49 472.469 1201.96 472.202C1202.3 472.004 1202.66 471.868 1203.04 471.795C1203.43 471.718 1203.83 471.699 1204.24 471.74L1203.61 471.377L1204.87 470.651L1209.69 473.434C1210.17 473.709 1210.45 474.002 1210.55 474.314C1210.65 474.629 1210.59 474.943 1210.37 475.254C1210.15 475.566 1209.79 475.863 1209.3 476.145ZM1206.28 474.325C1206.55 474.171 1206.71 474.008 1206.77 473.835C1206.82 473.659 1206.78 473.483 1206.65 473.307C1206.52 473.128 1206.3 472.95 1206 472.774C1205.69 472.598 1205.38 472.471 1205.07 472.394C1204.76 472.317 1204.46 472.295 1204.16 472.328C1203.85 472.358 1203.57 472.449 1203.3 472.603C1203.03 472.761 1202.86 472.928 1202.81 473.104C1202.76 473.276 1202.79 473.452 1202.93 473.632C1203.07 473.808 1203.29 473.984 1203.59 474.16C1203.9 474.336 1204.2 474.464 1204.51 474.545C1204.81 474.618 1205.12 474.64 1205.42 474.611C1205.72 474.578 1206.01 474.482 1206.28 474.325ZM1175.57 504.421C1174.84 504.839 1174.07 505.108 1173.23 505.229C1172.4 505.343 1171.58 505.321 1170.78 505.163C1169.98 505.002 1169.25 504.733 1168.59 504.355C1167.93 503.974 1167.47 503.554 1167.19 503.095C1166.92 502.63 1166.89 502.159 1167.09 501.682C1167.29 501.198 1167.76 500.747 1168.48 500.329C1169.04 500.006 1169.65 499.781 1170.3 499.652C1170.95 499.524 1171.61 499.495 1172.26 499.564C1172.92 499.634 1173.53 499.786 1174.1 500.021L1172.69 500.835C1172.37 500.721 1172.03 500.652 1171.68 500.626C1171.34 500.597 1171 500.619 1170.65 500.692C1170.32 500.762 1170 500.879 1169.72 501.044C1169.27 501.301 1169 501.574 1168.91 501.863C1168.81 502.153 1168.87 502.439 1169.08 502.721C1169.28 503 1169.6 503.266 1170.04 503.519C1170.47 503.768 1170.93 503.953 1171.42 504.074C1171.91 504.192 1172.4 504.225 1172.91 504.173C1173.41 504.118 1173.88 503.963 1174.33 503.706C1174.64 503.526 1174.85 503.332 1174.96 503.123C1175.07 502.914 1175.08 502.703 1175.01 502.49C1174.94 502.274 1174.78 502.069 1174.55 501.874L1175.95 501.066C1176.4 501.4 1176.7 501.763 1176.84 502.155C1177 502.544 1176.97 502.936 1176.75 503.332C1176.54 503.724 1176.15 504.087 1175.57 504.421ZM1182.15 500.62C1181.63 500.921 1181.07 501.119 1180.46 501.214C1179.85 501.302 1179.25 501.293 1178.66 501.186C1178.06 501.073 1177.52 500.873 1177.03 500.587C1176.53 500.301 1176.19 499.987 1175.99 499.646C1175.8 499.302 1175.78 498.955 1175.94 498.607C1176.11 498.255 1176.45 497.929 1176.97 497.628C1177.5 497.324 1178.06 497.126 1178.67 497.034C1179.27 496.939 1179.87 496.948 1180.47 497.061C1181.06 497.175 1181.6 497.375 1182.09 497.661C1182.59 497.947 1182.94 498.26 1183.13 498.601C1183.32 498.939 1183.34 499.285 1183.18 499.641C1183.02 499.989 1182.68 500.316 1182.15 500.62ZM1181.08 500.004C1181.36 499.843 1181.53 499.674 1181.58 499.498C1181.64 499.318 1181.6 499.14 1181.46 498.964C1181.32 498.781 1181.09 498.6 1180.78 498.42C1180.47 498.24 1180.15 498.11 1179.84 498.029C1179.53 497.945 1179.22 497.921 1178.91 497.958C1178.61 497.987 1178.32 498.083 1178.04 498.244C1177.76 498.402 1177.6 498.57 1177.54 498.75C1177.48 498.922 1177.53 499.1 1177.66 499.283C1177.8 499.467 1178.03 499.648 1178.34 499.828C1178.65 500.008 1178.97 500.138 1179.28 500.218C1179.6 500.295 1179.9 500.319 1180.21 500.29C1180.52 500.257 1180.81 500.162 1181.08 500.004ZM1180.78 495.561L1182.04 494.835L1182.71 495.225C1182.65 494.98 1182.69 494.741 1182.81 494.51C1182.92 494.276 1183.15 494.061 1183.48 493.867C1183.86 493.651 1184.26 493.513 1184.67 493.454C1185.09 493.388 1185.52 493.403 1185.95 493.498C1186.39 493.59 1186.81 493.755 1187.23 493.993L1190.31 495.775L1189.03 496.518L1186.09 494.824C1185.78 494.644 1185.46 494.545 1185.14 494.527C1184.81 494.505 1184.49 494.586 1184.17 494.769C1183.99 494.872 1183.86 494.994 1183.78 495.137C1183.7 495.273 1183.69 495.427 1183.76 495.599C1183.84 495.768 1184.02 495.937 1184.31 496.105L1187.03 497.673L1185.73 498.421L1180.78 495.561ZM1193.62 493.867C1193.31 494.047 1193.02 494.175 1192.74 494.252C1192.46 494.326 1192.17 494.342 1191.86 494.302C1191.55 494.258 1191.23 494.137 1190.88 493.939L1188.22 492.399L1187.36 492.894L1186.38 492.327L1187.24 491.832L1185.71 490.952L1187.01 490.204L1188.53 491.084L1189.77 490.369L1190.75 490.936L1189.51 491.651L1192.05 493.114C1192.21 493.205 1192.36 493.253 1192.5 493.257C1192.64 493.257 1192.8 493.207 1192.97 493.108L1193.74 492.663L1194.72 493.229L1193.62 493.867ZM1198.23 491.335C1197.73 491.628 1197.17 491.82 1196.57 491.912C1195.96 491.996 1195.37 491.984 1194.79 491.874C1194.2 491.76 1193.65 491.56 1193.16 491.274C1192.66 490.988 1192.32 490.675 1192.12 490.334C1191.92 489.993 1191.9 489.65 1192.05 489.305C1192.21 488.957 1192.54 488.636 1193.05 488.343C1193.57 488.046 1194.12 487.853 1194.72 487.765C1195.31 487.673 1195.91 487.692 1196.51 487.82C1197.11 487.941 1197.69 488.159 1198.23 488.475L1198.52 488.64L1194.84 490.763C1195.12 490.887 1195.4 490.972 1195.68 491.016C1195.96 491.052 1196.23 491.052 1196.5 491.016C1196.77 490.972 1197.01 490.885 1197.23 490.757C1197.51 490.596 1197.69 490.431 1197.77 490.262C1197.84 490.086 1197.83 489.91 1197.73 489.734L1198.99 489.008C1199.32 489.393 1199.43 489.793 1199.31 490.207C1199.19 490.614 1198.83 490.99 1198.23 491.335ZM1196.33 488.871C1195.92 488.709 1195.52 488.632 1195.13 488.64C1194.73 488.643 1194.37 488.737 1194.05 488.92C1193.73 489.107 1193.56 489.316 1193.56 489.547C1193.54 489.774 1193.68 490.005 1193.96 490.24L1196.33 488.871ZM1200.55 486.929L1196.43 486.522L1197.91 485.669L1200.24 485.889L1199.84 484.553L1201.3 483.711L1202 486.071L1206.37 486.505L1204.89 487.358L1202.32 487.105L1202.75 488.595L1201.29 489.437L1200.55 486.929ZM1209.21 484.866C1208.9 485.046 1208.61 485.174 1208.33 485.251C1208.05 485.324 1207.76 485.341 1207.45 485.3C1207.14 485.256 1206.82 485.135 1206.48 484.937L1203.81 483.397L1202.95 483.892L1201.97 483.326L1202.83 482.831L1201.3 481.951L1202.6 481.203L1204.12 482.083L1205.36 481.368L1206.34 481.934L1205.1 482.649L1207.64 484.112C1207.8 484.204 1207.95 484.252 1208.1 484.255C1208.23 484.255 1208.39 484.206 1208.56 484.107L1209.33 483.661L1210.31 484.228L1209.21 484.866Z" fill="#5F52FF"/>
|
|
19
|
+
<path id="Conscience" d="M549.174 796.344C548.45 796.762 547.672 797.032 546.84 797.153C546.008 797.267 545.189 797.245 544.383 797.087C543.582 796.926 542.855 796.656 542.201 796.278C541.541 795.897 541.074 795.477 540.801 795.019C540.528 794.553 540.493 794.082 540.696 793.605C540.899 793.121 541.363 792.67 542.087 792.252C542.646 791.93 543.252 791.704 543.906 791.576C544.56 791.448 545.215 791.418 545.869 791.488C546.523 791.558 547.136 791.71 547.707 791.944L546.297 792.758C545.973 792.645 545.637 792.575 545.288 792.549C544.945 792.52 544.602 792.542 544.259 792.615C543.922 792.685 543.611 792.802 543.325 792.967C542.881 793.224 542.611 793.497 542.515 793.787C542.42 794.077 542.477 794.363 542.687 794.645C542.89 794.924 543.211 795.189 543.649 795.442C544.081 795.692 544.541 795.877 545.03 795.998C545.513 796.115 546.008 796.148 546.516 796.097C547.018 796.042 547.491 795.886 547.936 795.629C548.247 795.45 548.457 795.255 548.565 795.046C548.673 794.837 548.688 794.627 548.612 794.414C548.542 794.198 548.39 793.992 548.155 793.798L549.555 792.989C550.006 793.323 550.305 793.686 550.451 794.078C550.603 794.467 550.572 794.859 550.356 795.255C550.146 795.648 549.752 796.011 549.174 796.344ZM555.758 792.543C555.237 792.844 554.672 793.042 554.062 793.137C553.453 793.225 552.853 793.216 552.262 793.11C551.671 792.996 551.128 792.796 550.633 792.51C550.138 792.224 549.791 791.911 549.595 791.57C549.404 791.225 549.388 790.879 549.547 790.53C549.712 790.178 550.055 789.852 550.576 789.551C551.103 789.247 551.668 789.049 552.271 788.957C552.881 788.862 553.481 788.871 554.072 788.985C554.663 789.098 555.206 789.298 555.701 789.584C556.196 789.87 556.542 790.184 556.739 790.525C556.93 790.862 556.946 791.209 556.787 791.564C556.628 791.913 556.285 792.239 555.758 792.543ZM554.691 791.927C554.971 791.766 555.136 791.597 555.187 791.421C555.244 791.242 555.202 791.064 555.063 790.888C554.923 790.704 554.698 790.523 554.386 790.343C554.075 790.164 553.761 790.033 553.443 789.953C553.132 789.868 552.824 789.845 552.519 789.881C552.214 789.911 551.922 790.006 551.643 790.167C551.37 790.325 551.205 790.494 551.147 790.673C551.09 790.846 551.132 791.023 551.271 791.207C551.411 791.39 551.636 791.572 551.948 791.751C552.259 791.931 552.573 792.061 552.891 792.142C553.202 792.219 553.51 792.243 553.815 792.213C554.126 792.18 554.418 792.085 554.691 791.927ZM554.384 787.484L555.642 786.758L556.318 787.149C556.261 786.903 556.293 786.665 556.413 786.434C556.528 786.199 556.753 785.985 557.09 785.79C557.465 785.574 557.861 785.436 558.281 785.378C558.7 785.312 559.125 785.326 559.557 785.422C559.995 785.513 560.421 785.678 560.834 785.917L563.92 787.699L562.634 788.441L559.7 786.747C559.389 786.568 559.071 786.469 558.747 786.45C558.417 786.428 558.093 786.509 557.776 786.692C557.598 786.795 557.468 786.918 557.385 787.061C557.303 787.196 557.296 787.35 557.366 787.523C557.442 787.691 557.626 787.86 557.919 788.029L560.634 789.596L559.338 790.344L554.384 787.484ZM567.387 785.829C566.682 786.236 565.99 786.474 565.311 786.544C564.637 786.61 563.98 786.48 563.339 786.154L564.596 785.428C564.933 785.585 565.253 785.649 565.558 785.62C565.87 785.587 566.193 785.473 566.53 785.279C566.803 785.121 566.975 784.967 567.044 784.817C567.108 784.663 567.054 784.537 566.882 784.438C566.762 784.368 566.641 784.328 566.52 784.317C566.4 784.306 566.228 784.331 566.006 784.394C565.784 784.449 565.479 784.559 565.092 784.724C564.495 784.966 563.98 785.131 563.548 785.219C563.116 785.307 562.739 785.33 562.415 785.29C562.097 785.246 561.795 785.142 561.51 784.977C561.04 784.705 560.862 784.383 560.976 784.009C561.091 783.635 561.468 783.262 562.11 782.892C562.821 782.481 563.517 782.256 564.196 782.216C564.869 782.172 565.476 782.298 566.016 782.595L564.815 783.288C564.51 783.119 564.209 783.055 563.91 783.096C563.612 783.136 563.313 783.242 563.015 783.415C562.767 783.558 562.612 783.702 562.548 783.849C562.491 783.992 562.545 784.111 562.71 784.207C562.831 784.276 562.961 784.315 563.101 784.322C563.24 784.322 563.421 784.291 563.644 784.229C563.866 784.159 564.167 784.043 564.549 783.882C565.133 783.64 565.638 783.477 566.063 783.393C566.482 783.305 566.854 783.284 567.178 783.332C567.495 783.376 567.797 783.481 568.083 783.646C568.572 783.928 568.746 784.267 568.607 784.663C568.467 785.052 568.061 785.44 567.387 785.829ZM572.948 782.619C572.44 782.912 571.887 783.103 571.29 783.191C570.693 783.271 570.103 783.257 569.518 783.147C568.928 783.033 568.385 782.833 567.889 782.547C567.394 782.261 567.048 781.948 566.851 781.607C566.654 781.266 566.629 780.925 566.775 780.584C566.927 780.239 567.257 779.92 567.766 779.627C568.445 779.234 569.156 779.022 569.899 778.989C570.642 778.956 571.344 779.086 572.005 779.379L570.709 780.127C570.392 780.01 570.068 779.962 569.737 779.984C569.407 779.999 569.106 780.085 568.832 780.243C568.578 780.389 568.429 780.549 568.385 780.721C568.334 780.89 568.378 781.066 568.518 781.249C568.664 781.429 568.893 781.609 569.204 781.788C569.515 781.968 569.826 782.1 570.138 782.184C570.449 782.261 570.754 782.287 571.052 782.261C571.351 782.236 571.627 782.149 571.881 782.003C572.167 781.838 572.319 781.658 572.338 781.464C572.364 781.266 572.252 781.07 572.005 780.875L573.3 780.127C573.827 780.52 574.069 780.938 574.024 781.381C573.973 781.821 573.615 782.234 572.948 782.619ZM571.287 777.726L572.582 776.978L577.536 779.838L576.24 780.586L571.287 777.726ZM569.381 776.626L570.677 775.878L571.83 776.543L570.534 777.291L569.381 776.626ZM581.292 777.801C580.784 778.095 580.228 778.287 579.625 778.379C579.021 778.463 578.428 778.45 577.843 778.34C577.253 778.227 576.71 778.027 576.214 777.741C575.719 777.455 575.373 777.141 575.176 776.8C574.979 776.459 574.957 776.116 575.109 775.772C575.268 775.423 575.602 775.103 576.11 774.809C576.624 774.512 577.18 774.32 577.777 774.232C578.367 774.14 578.964 774.158 579.568 774.287C580.171 774.408 580.746 774.626 581.292 774.941L581.578 775.106L577.901 777.229C578.18 777.354 578.459 777.438 578.739 777.482C579.018 777.519 579.291 777.519 579.558 777.482C579.825 777.438 580.069 777.352 580.292 777.224C580.571 777.062 580.749 776.897 580.825 776.729C580.901 776.553 580.889 776.377 580.787 776.201L582.044 775.475C582.381 775.86 582.489 776.259 582.368 776.674C582.248 777.081 581.889 777.457 581.292 777.801ZM579.387 775.337C578.98 775.176 578.58 775.099 578.186 775.106C577.786 775.11 577.427 775.203 577.11 775.387C576.786 775.574 576.621 775.783 576.614 776.014C576.602 776.241 576.735 776.472 577.015 776.707L579.387 775.337ZM579.863 772.774L581.121 772.048L581.797 772.438C581.74 772.193 581.772 771.954 581.893 771.723C582.007 771.489 582.232 771.274 582.569 771.08C582.944 770.864 583.341 770.726 583.76 770.667C584.179 770.601 584.604 770.616 585.036 770.711C585.474 770.803 585.9 770.968 586.313 771.206L589.399 772.988L588.113 773.731L585.179 772.037C584.868 771.857 584.55 771.758 584.226 771.74C583.896 771.718 583.572 771.799 583.255 771.982C583.077 772.085 582.947 772.207 582.864 772.35C582.782 772.486 582.775 772.64 582.845 772.812C582.921 772.981 583.106 773.15 583.398 773.318L586.113 774.886L584.817 775.634L579.863 772.774ZM593.162 770.948C592.654 771.242 592.101 771.432 591.504 771.52C590.907 771.601 590.317 771.586 589.732 771.476C589.142 771.363 588.599 771.163 588.103 770.877C587.608 770.591 587.262 770.277 587.065 769.936C586.868 769.595 586.843 769.254 586.989 768.913C587.141 768.569 587.471 768.25 587.979 767.956C588.659 767.564 589.37 767.351 590.113 767.318C590.856 767.285 591.558 767.415 592.219 767.709L590.923 768.457C590.606 768.339 590.282 768.292 589.951 768.314C589.621 768.328 589.32 768.415 589.046 768.572C588.792 768.719 588.643 768.878 588.599 769.051C588.548 769.219 588.592 769.395 588.732 769.579C588.878 769.758 589.107 769.938 589.418 770.118C589.729 770.297 590.04 770.429 590.352 770.514C590.663 770.591 590.968 770.616 591.266 770.591C591.565 770.565 591.841 770.479 592.095 770.332C592.381 770.167 592.533 769.988 592.552 769.793C592.577 769.595 592.466 769.399 592.219 769.205L593.514 768.457C594.041 768.849 594.283 769.267 594.238 769.711C594.187 770.151 593.829 770.563 593.162 770.948ZM598.855 767.661C598.347 767.955 597.791 768.147 597.188 768.239C596.584 768.323 595.991 768.31 595.406 768.2C594.816 768.087 594.273 767.887 593.777 767.601C593.282 767.315 592.936 767.001 592.739 766.66C592.542 766.319 592.52 765.976 592.672 765.632C592.831 765.283 593.164 764.963 593.673 764.669C594.187 764.372 594.743 764.18 595.34 764.092C595.93 764 596.527 764.018 597.131 764.147C597.734 764.268 598.309 764.486 598.855 764.801L599.141 764.966L595.463 767.089C595.743 767.214 596.022 767.298 596.302 767.342C596.581 767.379 596.854 767.379 597.121 767.342C597.388 767.298 597.632 767.212 597.855 767.084C598.134 766.922 598.312 766.757 598.388 766.589C598.464 766.413 598.452 766.237 598.35 766.061L599.607 765.335C599.944 765.72 600.052 766.119 599.931 766.534C599.811 766.941 599.452 767.317 598.855 767.661ZM596.95 765.197C596.543 765.036 596.143 764.959 595.749 764.966C595.349 764.97 594.99 765.063 594.673 765.247C594.349 765.434 594.184 765.643 594.177 765.874C594.165 766.101 594.298 766.332 594.578 766.567L596.95 765.197Z" fill="#5F52FF"/>
|
|
20
|
+
<path id="Option 
Handlers (10x)" d="M394.991 705.061C394.274 705.475 393.499 705.743 392.667 705.864C391.835 705.978 391.016 705.956 390.209 705.798C389.409 705.637 388.682 705.367 388.027 704.99C387.367 704.608 386.9 704.188 386.627 703.73C386.354 703.264 386.319 702.793 386.522 702.317C386.726 701.833 387.186 701.383 387.904 700.969C388.628 700.551 389.406 700.285 390.238 700.172C391.07 700.051 391.886 700.071 392.686 700.232C393.492 700.39 394.223 700.657 394.877 701.035C395.531 701.413 395.995 701.834 396.268 702.3C396.547 702.762 396.585 703.235 396.382 703.719C396.179 704.196 395.715 704.643 394.991 705.061ZM393.753 704.346C394.204 704.086 394.474 703.813 394.562 703.527C394.651 703.233 394.594 702.947 394.391 702.669C394.181 702.386 393.861 702.12 393.429 701.871C392.991 701.618 392.53 701.433 392.048 701.316C391.559 701.195 391.063 701.162 390.561 701.217C390.066 701.268 389.593 701.424 389.142 701.684C388.704 701.937 388.437 702.208 388.342 702.498C388.247 702.788 388.304 703.074 388.513 703.356C388.723 703.638 389.044 703.904 389.475 704.154C389.907 704.403 390.368 704.588 390.857 704.709C391.339 704.826 391.835 704.859 392.343 704.808C392.845 704.753 393.315 704.599 393.753 704.346ZM397.204 697.799C397.668 697.532 398.176 697.367 398.728 697.304C399.281 697.242 399.84 697.275 400.405 697.403C400.964 697.528 401.494 697.735 401.996 698.025C402.491 698.311 402.85 698.617 403.072 698.943C403.288 699.266 403.345 699.589 403.244 699.911C403.136 700.23 402.85 700.524 402.386 700.791C402.056 700.982 401.704 701.116 401.329 701.193C400.954 701.263 400.567 701.281 400.167 701.248L402.672 702.694L401.377 703.442L394.518 699.482L395.775 698.756L396.432 699.136C396.356 698.894 396.378 698.661 396.499 698.437C396.62 698.214 396.855 698.001 397.204 697.799ZM397.947 698.602C397.68 698.756 397.522 698.921 397.471 699.097C397.414 699.27 397.455 699.448 397.595 699.631C397.734 699.814 397.96 699.996 398.271 700.175C398.582 700.355 398.897 700.485 399.214 700.566C399.525 700.643 399.833 700.667 400.138 700.637C400.443 700.608 400.729 700.516 400.996 700.362C401.269 700.205 401.431 700.038 401.481 699.862C401.532 699.686 401.488 699.51 401.348 699.334C401.208 699.151 400.983 698.969 400.672 698.789C400.36 698.61 400.046 698.48 399.729 698.399C399.417 698.315 399.113 698.289 398.814 698.322C398.509 698.351 398.22 698.445 397.947 698.602ZM407.563 697.67C407.252 697.85 406.96 697.978 406.687 698.055C406.408 698.129 406.112 698.145 405.801 698.105C405.496 698.061 405.172 697.94 404.829 697.742L402.162 696.202L401.305 696.697L400.323 696.13L401.181 695.635L399.657 694.755L400.952 694.007L402.476 694.887L403.715 694.172L404.696 694.739L403.458 695.454L405.992 696.917C406.15 697.009 406.303 697.056 406.449 697.06C406.589 697.06 406.744 697.01 406.916 696.911L407.687 696.466L408.668 697.032L407.563 697.67ZM404.824 693.532L406.12 692.784L411.074 695.644L409.778 696.392L404.824 693.532ZM402.919 692.432L404.215 691.684L405.367 692.349L404.072 693.097L402.919 692.432ZM414.877 693.58C414.357 693.88 413.791 694.078 413.182 694.174C412.572 694.262 411.972 694.253 411.381 694.146C410.791 694.033 410.248 693.833 409.752 693.547C409.257 693.261 408.911 692.947 408.714 692.606C408.523 692.262 408.507 691.915 408.666 691.567C408.831 691.215 409.174 690.888 409.695 690.588C410.222 690.283 410.787 690.085 411.391 689.994C412 689.898 412.601 689.908 413.191 690.021C413.782 690.135 414.325 690.335 414.82 690.621C415.316 690.907 415.662 691.22 415.859 691.561C416.049 691.899 416.065 692.245 415.906 692.601C415.747 692.949 415.404 693.275 414.877 693.58ZM413.81 692.964C414.09 692.802 414.255 692.634 414.306 692.458C414.363 692.278 414.322 692.1 414.182 691.924C414.042 691.741 413.817 691.559 413.506 691.38C413.194 691.2 412.88 691.07 412.562 690.989C412.251 690.905 411.943 690.881 411.638 690.918C411.334 690.947 411.041 691.042 410.762 691.204C410.489 691.361 410.324 691.53 410.267 691.71C410.209 691.882 410.251 692.06 410.39 692.243C410.53 692.427 410.756 692.608 411.067 692.788C411.378 692.967 411.692 693.098 412.01 693.178C412.321 693.255 412.629 693.279 412.934 693.25C413.245 693.217 413.537 693.121 413.81 692.964ZM413.504 688.521L414.761 687.795L415.437 688.185C415.38 687.94 415.412 687.701 415.533 687.47C415.647 687.236 415.873 687.021 416.209 686.827C416.584 686.611 416.981 686.473 417.4 686.414C417.819 686.348 418.245 686.363 418.676 686.458C419.115 686.55 419.54 686.715 419.953 686.953L423.039 688.735L421.753 689.478L418.819 687.784C418.508 687.604 418.191 687.505 417.867 687.487C417.536 687.465 417.213 687.546 416.895 687.729C416.717 687.832 416.587 687.954 416.504 688.097C416.422 688.233 416.416 688.387 416.485 688.559C416.562 688.728 416.746 688.897 417.038 689.065L419.753 690.633L418.457 691.381L413.504 688.521ZM386.122 713.13L387.513 712.327L390.228 713.894L393.276 712.134L390.561 710.567L391.952 709.764L398.811 713.724L397.42 714.527L394.534 712.86L391.485 714.62L394.372 716.287L392.981 717.09L386.122 713.13ZM401.93 712.055C401.384 712.37 400.815 712.548 400.225 712.588C399.628 712.625 399.091 712.506 398.615 712.231C398.323 712.062 398.145 711.883 398.081 711.692C398.018 711.494 398.062 711.278 398.215 711.043C398.373 710.805 398.64 710.533 399.015 710.229L400.177 709.272L399.92 709.123C399.698 708.995 399.466 708.938 399.224 708.953C398.983 708.968 398.71 709.063 398.405 709.239C398.119 709.404 397.948 709.573 397.891 709.745C397.84 709.914 397.932 710.069 398.167 710.212L396.881 710.955C396.329 710.629 396.116 710.264 396.243 709.86C396.37 709.45 396.76 709.056 397.415 708.678C398.119 708.271 398.78 708.04 399.396 707.985C400.018 707.926 400.565 708.033 401.034 708.304L404.616 710.372L403.387 711.081L402.835 710.762C402.867 711.015 402.806 711.248 402.654 711.461C402.502 711.666 402.26 711.864 401.93 712.055ZM401.32 711.329C401.536 711.204 401.695 711.069 401.797 710.922C401.905 710.772 401.933 710.616 401.882 710.454C401.832 710.293 401.682 710.141 401.435 709.998L401.015 709.756L400.091 710.564C399.844 710.773 399.701 710.944 399.663 711.076C399.618 711.204 399.694 711.325 399.891 711.439C400.082 711.549 400.301 711.598 400.549 711.587C400.796 711.569 401.054 711.483 401.32 711.329ZM400.909 706.792L402.167 706.066L402.843 706.457C402.786 706.211 402.818 705.973 402.938 705.742C403.053 705.507 403.278 705.293 403.615 705.098C403.989 704.882 404.386 704.744 404.805 704.686C405.225 704.62 405.65 704.634 406.082 704.73C406.52 704.821 406.946 704.986 407.359 705.225L410.445 707.007L409.159 707.749L406.225 706.055C405.914 705.876 405.596 705.777 405.272 705.758C404.942 705.736 404.618 705.817 404.301 706C404.123 706.103 403.993 706.226 403.91 706.369C403.827 706.504 403.821 706.658 403.891 706.831C403.967 706.999 404.151 707.168 404.443 707.337L407.158 708.904L405.863 709.652L400.909 706.792ZM413.922 705.131C413.458 705.399 412.95 705.564 412.398 705.626C411.839 705.685 411.28 705.652 410.721 705.527C410.156 705.399 409.625 705.192 409.13 704.906C408.628 704.616 408.269 704.31 408.054 703.987C407.831 703.661 407.774 703.338 407.882 703.019C407.99 702.7 408.276 702.407 408.739 702.139C409.07 701.949 409.419 701.817 409.787 701.743C410.162 701.666 410.549 701.644 410.95 701.677L408.454 700.236L409.749 699.488L416.608 703.448L415.351 704.174L414.693 703.795C414.77 704.037 414.747 704.27 414.627 704.493C414.506 704.717 414.271 704.93 413.922 705.131ZM413.179 704.328C413.445 704.174 413.604 704.009 413.655 703.833C413.706 703.657 413.665 703.48 413.531 703.3C413.391 703.117 413.166 702.935 412.855 702.755C412.544 702.576 412.229 702.446 411.912 702.365C411.594 702.284 411.286 702.26 410.988 702.293C410.683 702.323 410.397 702.414 410.13 702.568C409.857 702.726 409.695 702.893 409.644 703.069C409.587 703.241 409.629 703.419 409.768 703.602C409.914 703.782 410.143 703.962 410.454 704.141C410.765 704.321 411.077 704.453 411.388 704.537C411.699 704.614 412.007 704.638 412.312 704.609C412.617 704.58 412.906 704.486 413.179 704.328ZM411.116 698.7L412.411 697.952L419.27 701.912L417.975 702.66L411.116 698.7ZM423.035 699.87C422.527 700.163 421.972 700.356 421.368 700.447C420.765 700.532 420.171 700.519 419.587 700.409C418.996 700.295 418.453 700.095 417.958 699.809C417.462 699.523 417.116 699.21 416.919 698.869C416.723 698.528 416.7 698.185 416.853 697.84C417.012 697.492 417.345 697.171 417.853 696.878C418.367 696.581 418.923 696.388 419.52 696.3C420.111 696.209 420.708 696.227 421.311 696.355C421.914 696.476 422.489 696.694 423.035 697.01L423.321 697.175L419.644 699.298C419.923 699.422 420.203 699.507 420.482 699.551C420.762 699.587 421.035 699.587 421.302 699.551C421.568 699.507 421.813 699.421 422.035 699.292C422.315 699.131 422.492 698.966 422.569 698.797C422.645 698.621 422.632 698.445 422.53 698.269L423.788 697.543C424.125 697.928 424.232 698.328 424.112 698.742C423.991 699.149 423.632 699.525 423.035 699.87ZM421.13 697.406C420.724 697.244 420.324 697.167 419.93 697.175C419.53 697.178 419.171 697.272 418.853 697.455C418.529 697.642 418.364 697.851 418.358 698.082C418.345 698.31 418.479 698.541 418.758 698.775L421.13 697.406ZM421.607 694.842L422.864 694.116L423.722 694.611C423.557 694.333 423.528 694.082 423.636 693.858C423.738 693.631 423.954 693.422 424.284 693.231L424.684 693L425.875 693.687L425.417 693.951C425.125 694.12 424.925 694.291 424.817 694.463C424.703 694.632 424.7 694.813 424.808 695.007C424.916 695.194 425.154 695.394 425.522 695.607L427.856 696.954L426.561 697.702L421.607 694.842ZM432.898 694.175C432.193 694.582 431.501 694.821 430.821 694.89C430.148 694.956 429.491 694.826 428.85 694.5L430.107 693.774C430.444 693.932 430.764 693.996 431.069 693.966C431.38 693.933 431.704 693.82 432.041 693.625C432.314 693.468 432.485 693.314 432.555 693.163C432.619 693.009 432.565 692.883 432.393 692.784C432.273 692.714 432.152 692.674 432.031 692.663C431.911 692.652 431.739 692.678 431.517 692.74C431.295 692.795 430.99 692.905 430.602 693.07C430.005 693.312 429.491 693.477 429.059 693.565C428.627 693.653 428.249 693.677 427.925 693.636C427.608 693.592 427.306 693.488 427.02 693.323C426.551 693.052 426.373 692.729 426.487 692.355C426.601 691.981 426.979 691.609 427.621 691.238C428.332 690.828 429.027 690.602 429.707 690.562C430.38 690.518 430.987 690.644 431.526 690.941L430.326 691.634C430.021 691.466 429.72 691.402 429.421 691.442C429.123 691.482 428.824 691.589 428.526 691.761C428.278 691.904 428.122 692.049 428.059 692.195C428.002 692.338 428.056 692.458 428.221 692.553C428.341 692.623 428.472 692.661 428.611 692.668C428.751 692.668 428.932 692.637 429.154 692.575C429.377 692.505 429.678 692.39 430.059 692.228C430.644 691.986 431.149 691.823 431.574 691.739C431.993 691.651 432.365 691.631 432.689 691.678C433.006 691.722 433.308 691.827 433.594 691.992C434.083 692.274 434.257 692.613 434.118 693.009C433.978 693.398 433.571 693.787 432.898 694.175ZM426.153 711.138C424.858 710.91 423.718 710.641 422.733 710.329C421.749 710.017 420.853 709.629 420.047 709.163C419.234 708.694 418.561 708.177 418.027 707.612C417.487 707.044 417.021 706.386 416.627 705.638L417.818 704.95C418.231 705.687 418.716 706.327 419.275 706.87C419.828 707.409 420.523 707.92 421.361 708.404C422.193 708.884 423.079 709.286 424.019 709.609C424.959 709.931 426.067 710.212 427.344 710.45L426.153 711.138ZM421.985 704.777L420.87 705.421L419.698 704.744L422.204 703.298L429.063 707.258L427.672 708.061L421.985 704.777ZM433.21 704.995C432.283 705.531 431.289 705.741 430.229 705.628C429.162 705.51 428.079 705.135 426.98 704.5C425.881 703.866 425.234 703.243 425.037 702.63C424.834 702.014 425.196 701.439 426.123 700.903C427.056 700.364 428.053 700.155 429.114 700.276C430.175 700.39 431.254 700.764 432.353 701.398C433.452 702.033 434.103 702.658 434.306 703.274C434.509 703.882 434.144 704.456 433.21 704.995ZM432.039 704.319C432.496 704.055 432.617 703.754 432.401 703.417C432.178 703.076 431.68 702.682 430.905 702.234C430.124 701.783 429.441 701.495 428.857 701.371C428.273 701.246 427.752 701.316 427.294 701.58C426.837 701.844 426.717 702.144 426.932 702.482C427.148 702.819 427.647 703.213 428.428 703.664C429.203 704.112 429.886 704.399 430.476 704.528C431.061 704.652 431.581 704.583 432.039 704.319ZM435.844 700.406L431.729 699.999L433.205 699.146L435.53 699.366L435.139 698.03L436.597 697.188L437.292 699.548L441.665 699.982L440.188 700.835L437.616 700.582L438.045 702.072L436.587 702.914L435.844 700.406ZM444.037 700.812C443.625 700.075 443.139 699.435 442.58 698.893C442.021 698.35 441.326 697.839 440.494 697.358C439.655 696.874 438.769 696.473 437.836 696.154C436.896 695.831 435.788 695.551 434.511 695.312L435.702 694.625C436.997 694.852 438.137 695.122 439.122 695.433C440.1 695.741 440.995 696.13 441.808 696.599C442.615 697.065 443.288 697.582 443.828 698.15C444.368 698.719 444.834 699.377 445.228 700.125L444.037 700.812Z" fill="#5F52FF"/>
|
|
21
|
+
<path id="Multi service transaction bus" d="M230.545 620.629L232.574 619.458L239.147 621.328L235.899 617.538L237.928 616.367L244.787 620.327L243.453 621.097L238.366 618.16L241.691 622.114L240.51 622.796L233.651 620.882L238.738 623.819L237.404 624.589L230.545 620.629ZM250.813 616.848L249.555 617.574L248.879 617.183C248.936 617.429 248.907 617.669 248.793 617.904C248.672 618.135 248.444 618.347 248.107 618.542C247.732 618.758 247.335 618.899 246.916 618.965C246.497 619.024 246.068 619.007 245.63 618.916C245.198 618.82 244.776 618.654 244.363 618.415L241.277 616.633L242.563 615.891L245.497 617.585C245.808 617.764 246.129 617.865 246.459 617.887C246.783 617.906 247.104 617.823 247.421 617.64C247.599 617.537 247.729 617.418 247.812 617.282C247.894 617.139 247.897 616.983 247.821 616.815C247.751 616.642 247.57 616.472 247.278 616.303L244.563 614.736L245.859 613.988L250.813 616.848ZM245.325 612.096L246.621 611.348L253.48 615.308L252.184 616.056L245.325 612.096ZM256.787 613.398C256.476 613.578 256.184 613.706 255.911 613.783C255.632 613.856 255.336 613.873 255.025 613.833C254.72 613.789 254.396 613.668 254.053 613.47L251.386 611.93L250.529 612.425L249.547 611.858L250.405 611.363L248.881 610.483L250.176 609.735L251.7 610.615L252.939 609.9L253.92 610.467L252.682 611.182L255.216 612.645C255.374 612.736 255.527 612.784 255.673 612.788C255.813 612.788 255.968 612.738 256.14 612.639L256.911 612.194L257.892 612.76L256.787 613.398ZM254.048 609.259L255.344 608.511L260.298 611.371L259.002 612.119L254.048 609.259ZM252.143 608.159L253.439 607.411L254.591 608.077L253.296 608.825L252.143 608.159ZM266.27 608.055C265.565 608.462 264.873 608.701 264.193 608.77C263.52 608.836 262.863 608.706 262.221 608.38L263.479 607.654C263.815 607.812 264.136 607.876 264.441 607.846C264.752 607.813 265.076 607.7 265.412 607.505C265.686 607.348 265.857 607.194 265.927 607.043C265.99 606.889 265.936 606.763 265.765 606.664C265.644 606.594 265.524 606.554 265.403 606.543C265.282 606.532 265.111 606.558 264.888 606.62C264.666 606.675 264.361 606.785 263.974 606.95C263.377 607.192 262.863 607.357 262.431 607.445C261.999 607.533 261.621 607.557 261.297 607.516C260.98 607.472 260.678 607.368 260.392 607.203C259.922 606.932 259.744 606.609 259.859 606.235C259.973 605.861 260.351 605.489 260.992 605.118C261.704 604.708 262.399 604.482 263.079 604.442C263.752 604.398 264.358 604.524 264.898 604.821L263.698 605.514C263.393 605.346 263.091 605.282 262.793 605.322C262.494 605.362 262.196 605.469 261.897 605.641C261.65 605.784 261.494 605.929 261.43 606.075C261.373 606.218 261.427 606.338 261.592 606.433C261.713 606.503 261.843 606.541 261.983 606.548C262.123 606.548 262.304 606.517 262.526 606.455C262.748 606.385 263.05 606.27 263.431 606.108C264.015 605.866 264.52 605.703 264.946 605.619C265.365 605.531 265.736 605.511 266.06 605.558C266.378 605.602 266.679 605.707 266.965 605.872C267.454 606.154 267.629 606.493 267.489 606.889C267.349 607.278 266.943 607.667 266.27 608.055ZM271.83 604.845C271.322 605.138 270.766 605.331 270.163 605.423C269.56 605.507 268.966 605.494 268.382 605.384C267.791 605.27 267.248 605.071 266.753 604.785C266.257 604.499 265.911 604.185 265.714 603.844C265.518 603.503 265.495 603.16 265.648 602.816C265.806 602.467 266.14 602.146 266.648 601.853C267.162 601.556 267.718 601.364 268.315 601.276C268.906 601.184 269.503 601.202 270.106 601.331C270.709 601.452 271.284 601.67 271.83 601.985L272.116 602.15L268.439 604.273C268.718 604.398 268.998 604.482 269.277 604.526C269.557 604.563 269.83 604.563 270.096 604.526C270.363 604.482 270.608 604.396 270.83 604.268C271.109 604.106 271.287 603.941 271.363 603.773C271.44 603.597 271.427 603.421 271.325 603.245L272.583 602.519C272.919 602.904 273.027 603.303 272.907 603.718C272.786 604.125 272.427 604.5 271.83 604.845ZM269.925 602.381C269.519 602.22 269.118 602.143 268.725 602.15C268.325 602.154 267.966 602.247 267.648 602.431C267.324 602.618 267.159 602.827 267.153 603.058C267.14 603.285 267.274 603.516 267.553 603.751L269.925 602.381ZM270.402 599.818L271.659 599.092L272.517 599.587C272.352 599.308 272.323 599.057 272.431 598.833C272.533 598.606 272.748 598.397 273.079 598.206L273.479 597.975L274.67 598.663L274.212 598.927C273.92 599.095 273.72 599.266 273.612 599.438C273.498 599.607 273.495 599.788 273.603 599.983C273.711 600.17 273.949 600.37 274.317 600.582L276.651 601.93L275.355 602.678L270.402 599.818ZM274.196 597.627L275.596 596.819L280.54 598.265L278.016 595.422L279.407 594.619L282.503 598.551L281.017 599.409L274.196 597.627ZM280.318 594.093L281.613 593.345L286.567 596.205L285.272 596.953L280.318 594.093ZM278.413 592.993L279.708 592.245L280.861 592.91L279.565 593.658L278.413 592.993ZM290.323 594.168C289.815 594.462 289.263 594.652 288.666 594.74C288.069 594.821 287.478 594.806 286.894 594.696C286.303 594.583 285.76 594.383 285.265 594.097C284.769 593.811 284.423 593.497 284.226 593.156C284.029 592.815 284.004 592.474 284.15 592.133C284.303 591.789 284.633 591.47 285.141 591.176C285.82 590.784 286.532 590.571 287.275 590.538C288.018 590.505 288.72 590.635 289.38 590.929L288.084 591.677C287.767 591.559 287.443 591.512 287.113 591.534C286.783 591.548 286.481 591.635 286.208 591.792C285.954 591.939 285.805 592.098 285.76 592.271C285.709 592.439 285.754 592.615 285.893 592.799C286.039 592.978 286.268 593.158 286.579 593.338C286.891 593.517 287.202 593.649 287.513 593.734C287.824 593.811 288.129 593.836 288.427 593.811C288.726 593.785 289.002 593.699 289.256 593.552C289.542 593.387 289.694 593.208 289.713 593.013C289.739 592.815 289.628 592.619 289.38 592.425L290.676 591.677C291.203 592.069 291.444 592.487 291.4 592.931C291.349 593.371 290.99 593.783 290.323 594.168ZM296.016 590.881C295.508 591.175 294.952 591.367 294.349 591.459C293.746 591.543 293.152 591.53 292.568 591.42C291.977 591.307 291.434 591.107 290.939 590.821C290.443 590.535 290.097 590.221 289.9 589.88C289.703 589.539 289.681 589.197 289.834 588.852C289.992 588.504 290.326 588.183 290.834 587.889C291.348 587.592 291.904 587.4 292.501 587.312C293.092 587.22 293.689 587.239 294.292 587.367C294.895 587.488 295.47 587.706 296.016 588.021L296.302 588.186L292.625 590.309C292.904 590.434 293.184 590.518 293.463 590.562C293.743 590.599 294.016 590.599 294.282 590.562C294.549 590.518 294.794 590.432 295.016 590.304C295.295 590.143 295.473 589.978 295.549 589.809C295.626 589.633 295.613 589.457 295.511 589.281L296.769 588.555C297.105 588.94 297.213 589.34 297.093 589.754C296.972 590.161 296.613 590.537 296.016 590.881ZM294.111 588.417C293.704 588.256 293.304 588.179 292.911 588.186C292.511 588.19 292.152 588.284 291.834 588.467C291.51 588.654 291.345 588.863 291.339 589.094C291.326 589.321 291.459 589.552 291.739 589.787L294.111 588.417ZM256.09 624.801C255.778 624.981 255.486 625.109 255.213 625.186C254.934 625.259 254.638 625.276 254.327 625.235C254.022 625.191 253.699 625.07 253.356 624.872L250.688 623.332L249.831 623.827L248.85 623.261L249.707 622.766L248.183 621.886L249.478 621.138L251.003 622.018L252.241 621.303L253.222 621.869L251.984 622.584L254.518 624.047C254.677 624.139 254.829 624.187 254.975 624.19C255.115 624.19 255.27 624.141 255.442 624.042L256.213 623.596L257.195 624.163L256.09 624.801ZM253.36 620.657L254.618 619.931L255.475 620.426C255.31 620.147 255.281 619.896 255.389 619.672C255.491 619.445 255.707 619.236 256.037 619.045L256.437 618.814L257.628 619.502L257.171 619.766C256.879 619.934 256.679 620.105 256.571 620.277C256.456 620.446 256.453 620.627 256.561 620.822C256.669 621.009 256.907 621.209 257.276 621.421L259.609 622.769L258.314 623.517L253.36 620.657ZM264.223 620.237C263.677 620.553 263.108 620.73 262.518 620.771C261.921 620.807 261.384 620.688 260.908 620.413C260.615 620.245 260.438 620.065 260.374 619.874C260.311 619.676 260.355 619.46 260.508 619.225C260.666 618.987 260.933 618.716 261.308 618.411L262.47 617.454L262.213 617.306C261.99 617.177 261.759 617.121 261.517 617.135C261.276 617.15 261.003 617.245 260.698 617.421C260.412 617.586 260.241 617.755 260.184 617.927C260.133 618.096 260.225 618.252 260.46 618.395L259.174 619.137C258.621 618.811 258.409 618.446 258.536 618.043C258.663 617.632 259.053 617.238 259.707 616.86C260.412 616.453 261.073 616.222 261.689 616.167C262.311 616.109 262.857 616.215 263.327 616.486L266.909 618.554L265.68 619.264L265.128 618.945C265.16 619.198 265.099 619.431 264.947 619.643C264.794 619.849 264.553 620.047 264.223 620.237ZM263.613 619.511C263.829 619.387 263.988 619.251 264.089 619.104C264.197 618.954 264.226 618.798 264.175 618.637C264.124 618.475 263.975 618.323 263.727 618.18L263.308 617.938L262.384 618.747C262.137 618.956 261.994 619.126 261.956 619.258C261.911 619.387 261.987 619.508 262.184 619.621C262.375 619.731 262.594 619.781 262.841 619.77C263.089 619.751 263.346 619.665 263.613 619.511ZM263.202 614.975L264.46 614.249L265.136 614.639C265.079 614.393 265.11 614.155 265.231 613.924C265.345 613.689 265.571 613.475 265.908 613.281C266.282 613.064 266.679 612.927 267.098 612.868C267.517 612.802 267.943 612.817 268.375 612.912C268.813 613.004 269.239 613.169 269.651 613.407L272.738 615.189L271.452 615.932L268.518 614.238C268.207 614.058 267.889 613.959 267.565 613.941C267.235 613.919 266.911 613.999 266.593 614.183C266.416 614.285 266.285 614.408 266.203 614.551C266.12 614.687 266.114 614.841 266.184 615.013C266.26 615.182 266.444 615.35 266.736 615.519L269.451 617.087L268.156 617.835L263.202 614.975ZM276.205 613.319C275.5 613.726 274.808 613.965 274.128 614.034C273.455 614.1 272.798 613.97 272.156 613.644L273.414 612.918C273.75 613.075 274.071 613.14 274.376 613.11C274.687 613.077 275.011 612.964 275.348 612.769C275.621 612.612 275.792 612.458 275.862 612.307C275.926 612.153 275.872 612.027 275.7 611.928C275.579 611.858 275.459 611.818 275.338 611.807C275.217 611.796 275.046 611.821 274.824 611.884C274.601 611.939 274.297 612.049 273.909 612.214C273.312 612.456 272.798 612.621 272.366 612.709C271.934 612.797 271.556 612.821 271.232 612.78C270.915 612.736 270.613 612.632 270.327 612.467C269.857 612.195 269.68 611.873 269.794 611.499C269.908 611.125 270.286 610.753 270.927 610.382C271.639 609.972 272.334 609.746 273.014 609.706C273.687 609.662 274.293 609.788 274.833 610.085L273.633 610.778C273.328 610.61 273.026 610.545 272.728 610.586C272.429 610.626 272.131 610.732 271.832 610.905C271.585 611.048 271.429 611.193 271.366 611.339C271.309 611.482 271.363 611.601 271.528 611.697C271.648 611.766 271.779 611.805 271.918 611.812C272.058 611.812 272.239 611.781 272.461 611.719C272.683 611.649 272.985 611.534 273.366 611.372C273.95 611.13 274.455 610.967 274.881 610.883C275.3 610.795 275.672 610.775 275.995 610.822C276.313 610.866 276.615 610.971 276.9 611.136C277.389 611.418 277.564 611.757 277.424 612.153C277.285 612.542 276.878 612.931 276.205 613.319ZM281.041 610.527C280.495 610.842 279.927 611.02 279.336 611.061C278.739 611.097 278.203 610.978 277.726 610.703C277.434 610.534 277.256 610.355 277.193 610.164C277.129 609.966 277.174 609.75 277.326 609.515C277.485 609.277 277.752 609.005 278.126 608.701L279.289 607.744L279.031 607.596C278.809 607.467 278.577 607.41 278.336 607.425C278.095 607.44 277.822 607.535 277.517 607.711C277.231 607.876 277.06 608.045 277.002 608.217C276.952 608.386 277.044 608.542 277.279 608.685L275.993 609.427C275.44 609.101 275.227 608.736 275.354 608.333C275.481 607.922 275.872 607.528 276.526 607.15C277.231 606.743 277.891 606.512 278.508 606.457C279.13 606.398 279.676 606.505 280.146 606.776L283.728 608.844L282.499 609.554L281.946 609.235C281.978 609.488 281.918 609.72 281.765 609.933C281.613 610.138 281.372 610.336 281.041 610.527ZM280.432 609.801C280.648 609.676 280.807 609.541 280.908 609.394C281.016 609.244 281.045 609.088 280.994 608.927C280.943 608.765 280.794 608.613 280.546 608.47L280.127 608.228L279.203 609.037C278.955 609.246 278.812 609.416 278.774 609.548C278.73 609.676 278.806 609.797 279.003 609.911C279.193 610.021 279.412 610.071 279.66 610.06C279.908 610.041 280.165 609.955 280.432 609.801ZM287.366 606.876C286.857 607.169 286.305 607.36 285.708 607.448C285.111 607.528 284.52 607.514 283.936 607.404C283.345 607.29 282.802 607.09 282.307 606.804C281.812 606.518 281.466 606.205 281.269 605.864C281.072 605.523 281.046 605.182 281.192 604.841C281.345 604.496 281.675 604.177 282.183 603.884C282.863 603.491 283.574 603.279 284.317 603.246C285.06 603.213 285.762 603.343 286.422 603.636L285.127 604.384C284.809 604.267 284.485 604.219 284.155 604.241C283.825 604.256 283.523 604.342 283.25 604.5C282.996 604.646 282.847 604.806 282.802 604.978C282.752 605.147 282.796 605.323 282.936 605.506C283.082 605.686 283.311 605.866 283.622 606.045C283.933 606.225 284.244 606.357 284.555 606.441C284.866 606.518 285.171 606.544 285.47 606.518C285.768 606.493 286.045 606.406 286.299 606.26C286.584 606.095 286.737 605.915 286.756 605.721C286.781 605.523 286.67 605.327 286.422 605.132L287.718 604.384C288.245 604.777 288.486 605.195 288.442 605.638C288.391 606.078 288.032 606.491 287.366 606.876ZM292.601 603.721C292.29 603.901 291.998 604.029 291.725 604.106C291.445 604.179 291.15 604.196 290.839 604.155C290.534 604.111 290.21 603.99 289.867 603.792L287.2 602.252L286.343 602.747L285.361 602.181L286.219 601.686L284.695 600.806L285.99 600.058L287.514 600.938L288.753 600.223L289.734 600.789L288.496 601.504L291.03 602.967C291.188 603.059 291.341 603.107 291.487 603.11C291.626 603.11 291.782 603.061 291.954 602.962L292.725 602.516L293.706 603.083L292.601 603.721ZM289.862 599.582L291.158 598.834L296.112 601.694L294.816 602.442L289.862 599.582ZM287.957 598.482L289.253 597.734L290.405 598.4L289.11 599.148L287.957 598.482ZM299.915 599.63C299.395 599.931 298.829 600.129 298.22 600.224C297.61 600.312 297.01 600.303 296.419 600.197C295.829 600.083 295.286 599.883 294.79 599.597C294.295 599.311 293.949 598.998 293.752 598.657C293.561 598.312 293.545 597.966 293.704 597.617C293.869 597.265 294.212 596.939 294.733 596.638C295.26 596.334 295.825 596.136 296.429 596.044C297.038 595.949 297.639 595.958 298.229 596.072C298.82 596.185 299.363 596.385 299.858 596.671C300.353 596.957 300.7 597.271 300.896 597.612C301.087 597.949 301.103 598.296 300.944 598.651C300.785 599 300.442 599.326 299.915 599.63ZM298.848 599.014C299.128 598.853 299.293 598.684 299.344 598.508C299.401 598.329 299.36 598.151 299.22 597.975C299.08 597.791 298.855 597.61 298.544 597.43C298.232 597.251 297.918 597.12 297.6 597.04C297.289 596.955 296.981 596.932 296.676 596.968C296.372 596.998 296.079 597.093 295.8 597.254C295.527 597.412 295.362 597.581 295.305 597.76C295.247 597.933 295.289 598.11 295.428 598.294C295.568 598.477 295.794 598.659 296.105 598.838C296.416 599.018 296.73 599.148 297.048 599.229C297.359 599.306 297.667 599.33 297.972 599.3C298.283 599.267 298.575 599.172 298.848 599.014ZM298.542 594.571L299.799 593.845L300.475 594.236C300.418 593.99 300.45 593.752 300.571 593.521C300.685 593.286 300.91 593.072 301.247 592.877C301.622 592.661 302.019 592.523 302.438 592.465C302.857 592.399 303.282 592.413 303.714 592.509C304.153 592.6 304.578 592.765 304.991 593.004L308.077 594.786L306.791 595.528L303.857 593.834C303.546 593.655 303.228 593.556 302.905 593.537C302.574 593.515 302.25 593.596 301.933 593.779C301.755 593.882 301.625 594.005 301.542 594.148C301.46 594.283 301.453 594.437 301.523 594.61C301.6 594.778 301.784 594.947 302.076 595.116L304.791 596.683L303.495 597.431L298.542 594.571ZM304.513 607.976C304.164 608.177 303.796 608.313 303.408 608.383C303.021 608.452 302.617 608.465 302.198 608.421L302.856 608.801L301.598 609.527L294.739 605.567L296.035 604.819L298.531 606.26C298.474 606.029 298.508 605.807 298.635 605.594C298.769 605.378 299.001 605.174 299.331 604.984C299.795 604.716 300.303 604.551 300.855 604.489C301.408 604.426 301.967 604.459 302.532 604.588C303.091 604.712 303.621 604.919 304.123 605.209C304.618 605.495 304.977 605.801 305.199 606.128C305.415 606.45 305.472 606.773 305.371 607.096C305.263 607.415 304.977 607.708 304.513 607.976ZM303.122 607.547C303.395 607.389 303.557 607.222 303.608 607.046C303.659 606.87 303.615 606.694 303.475 606.518C303.335 606.335 303.11 606.153 302.798 605.974C302.487 605.794 302.173 605.664 301.855 605.583C301.544 605.499 301.239 605.473 300.941 605.506C300.636 605.535 300.347 605.629 300.074 605.787C299.807 605.941 299.648 606.106 299.598 606.282C299.54 606.454 299.582 606.632 299.721 606.815C299.861 606.998 300.087 607.18 300.398 607.36C300.709 607.539 301.023 607.669 301.341 607.75C301.652 607.827 301.96 607.851 302.265 607.822C302.57 607.792 302.856 607.701 303.122 607.547ZM312.339 603.326L311.081 604.052L310.405 603.661C310.462 603.907 310.433 604.147 310.319 604.382C310.198 604.613 309.97 604.825 309.633 605.02C309.258 605.236 308.861 605.377 308.442 605.443C308.023 605.502 307.594 605.485 307.156 605.394C306.724 605.298 306.302 605.131 305.889 604.893L302.803 603.111L304.089 602.369L307.023 604.063C307.334 604.242 307.655 604.343 307.985 604.365C308.309 604.383 308.63 604.301 308.947 604.118C309.125 604.015 309.255 603.896 309.338 603.76C309.42 603.617 309.423 603.461 309.347 603.293C309.277 603.12 309.096 602.95 308.804 602.781L306.089 601.214L307.385 600.466L312.339 603.326ZM315.806 601.456C315.101 601.863 314.409 602.101 313.729 602.171C313.056 602.237 312.398 602.107 311.757 601.78L313.015 601.054C313.351 601.212 313.672 601.276 313.977 601.247C314.288 601.214 314.612 601.1 314.948 600.906C315.221 600.748 315.393 600.594 315.463 600.444C315.526 600.29 315.472 600.163 315.301 600.064C315.18 599.995 315.059 599.954 314.939 599.943C314.818 599.932 314.647 599.958 314.424 600.02C314.202 600.075 313.897 600.185 313.51 600.35C312.913 600.592 312.398 600.757 311.967 600.845C311.535 600.933 311.157 600.957 310.833 600.917C310.515 600.873 310.214 600.768 309.928 600.603C309.458 600.332 309.28 600.009 309.395 599.635C309.509 599.261 309.887 598.889 310.528 598.519C311.239 598.108 311.935 597.883 312.614 597.842C313.288 597.798 313.894 597.925 314.434 598.222L313.234 598.915C312.929 598.746 312.627 598.682 312.329 598.722C312.03 598.763 311.732 598.869 311.433 599.041C311.185 599.184 311.03 599.329 310.966 599.476C310.909 599.619 310.963 599.738 311.128 599.833C311.249 599.903 311.379 599.942 311.519 599.949C311.659 599.949 311.84 599.918 312.062 599.855C312.284 599.786 312.586 599.67 312.967 599.509C313.551 599.267 314.056 599.104 314.482 599.019C314.901 598.931 315.272 598.911 315.596 598.959C315.914 599.003 316.215 599.107 316.501 599.272C316.99 599.555 317.165 599.894 317.025 600.29C316.885 600.679 316.479 601.067 315.806 601.456Z" fill="#5F52FF"/>
|
|
22
|
+
<path id="Vector 101" d="M891.757 501.671L998.979 439.766L1054.41 471.771" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
23
|
+
<path id="Vector 102" d="M895.454 514.04L998.979 454.27L1054.41 486.275" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
24
|
+
<path id="Vector 103" d="M897.046 527.625L998.979 468.774L1054.41 500.779" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
25
|
+
<g id="1-context">
|
|
26
|
+
<g id="Group 218">
|
|
27
|
+
<path id="Rectangle 113" d="M1080.68 495.354L1142.88 531.266L1080.68 567.177L1018.48 531.266L1080.68 495.354Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
28
|
+
<rect id="Rectangle 115" x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1016.98 517.544)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
29
|
+
<rect id="Rectangle 116" x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1016.98 502.544)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
30
|
+
<rect id="Rectangle 117" x="1.73205" width="71.8235" height="71.8235" transform="matrix(0.866025 -0.5 0.866025 0.5 1016.98 487.544)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
31
|
+
<path id="Vector 113" d="M1080.75 494.762V522.262" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
32
|
+
<rect id="Rectangle 118" x="1.73205" width="43.616" height="43.616" transform="matrix(0.866025 -0.5 0.866025 0.5 1041.41 473.44)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
33
|
+
</g>
|
|
34
|
+
</g>
|
|
35
|
+
<path id="Vector 104" d="M951.749 561.645L1049.39 505.27" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
36
|
+
<path id="Vector 105" d="M951.749 576.645L1049.39 520.27" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
37
|
+
<path id="Vector 106" d="M951.749 591.645L1049.39 535.27" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
38
|
+
<path id="Vector 107" d="M1113.24 505.271L1165.29 535.323L1039.27 608.08" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
39
|
+
<path id="Vector 131" d="M577.321 436.703L335.7 576.203" stroke="#E9725A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
40
|
+
<path id="Vector 148" d="M566.134 428L324.513 567.5" stroke="#6CD3FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
41
|
+
<path id="Vector 108" d="M868.685 609.048L780.26 557.996L861.376 511.164" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
42
|
+
<path id="Vector 163" d="M437.659 625.5L357.552 579.25L761.383 346.098L841.491 392.348" stroke="#18D895" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
43
|
+
<path id="Vector 109" d="M1113.24 519.271L1165.87 549.656L1041.45 621.491" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
44
|
+
<path id="Vector 110" d="M1113.75 533.567L1166.5 564.023L1042.75 635.47" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
45
|
+
<path id="Vector 111" d="M1015.71 598.629L933.235 646.243L869.075 609.2" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
46
|
+
<path id="Vector 112" d="M816.749 634.266L950.983 556.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
47
|
+
<path id="Vector 124" d="M577.552 429.944L896.294 246.021" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
48
|
+
<path id="Vector 118" d="M621.002 732.266L492.83 658.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
49
|
+
<path id="Vector 117" d="M618.002 744.266L486.366 668.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
50
|
+
<path id="Vector 127" d="M442.385 642.766L333.266 579.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
51
|
+
<path id="Vector 128" d="M460.197 645.766L332.892 572.266" stroke="#E9725A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
52
|
+
<path id="Vector 116" d="M618.002 737.266L483.768 659.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
53
|
+
<path id="Vector 122" d="M1062 274.266L838.568 145.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
54
|
+
<path id="Task complete" d="M783.334 188.092L781.172 186.843L782.42 186.122L788.155 189.434L786.907 190.154L784.744 188.906L779.133 192.145L777.723 191.331L783.334 188.092ZM783.371 194.724C782.825 194.408 782.517 194.08 782.447 193.739C782.383 193.394 782.59 193.085 783.066 192.81C783.358 192.641 783.669 192.538 783.999 192.502C784.342 192.465 784.717 192.491 785.124 192.579C785.536 192.67 786.006 192.824 786.533 193.041L788.191 193.712L788.448 193.563C788.671 193.435 788.769 193.301 788.744 193.162C788.718 193.022 788.553 192.865 788.248 192.689C787.962 192.524 787.67 192.425 787.372 192.392C787.08 192.362 786.81 192.415 786.562 192.551L785.276 191.809C785.841 191.49 786.473 191.367 787.172 191.44C787.883 191.513 788.566 191.739 789.22 192.117C789.925 192.524 790.325 192.905 790.42 193.261C790.522 193.62 790.338 193.935 789.868 194.207L786.286 196.275L785.057 195.565L785.609 195.246C785.171 195.264 784.768 195.23 784.4 195.142C784.044 195.054 783.701 194.914 783.371 194.724ZM784.628 194.372C784.844 194.496 785.079 194.588 785.333 194.647C785.594 194.709 785.863 194.725 786.143 194.696C786.422 194.667 786.686 194.581 786.934 194.438L787.353 194.196L785.952 193.662C785.59 193.519 785.295 193.437 785.066 193.415C784.844 193.389 784.635 193.433 784.438 193.547C784.247 193.657 784.161 193.783 784.18 193.926C784.212 194.069 784.361 194.218 784.628 194.372ZM789.018 197.984C788.313 197.577 787.901 197.178 787.78 196.785C787.666 196.397 787.891 196.017 788.456 195.647L789.714 196.373C789.441 196.567 789.33 196.752 789.38 196.928C789.438 197.108 789.634 197.295 789.971 197.489C790.244 197.647 790.511 197.746 790.771 197.786C791.038 197.823 791.257 197.792 791.429 197.693C791.549 197.623 791.619 197.553 791.638 197.484C791.657 197.414 791.613 197.315 791.505 197.187C791.41 197.058 791.219 196.882 790.933 196.659C790.514 196.314 790.228 196.017 790.076 195.768C789.923 195.518 789.882 195.3 789.952 195.113C790.028 194.93 790.209 194.756 790.495 194.591C790.965 194.319 791.524 194.217 792.172 194.283C792.819 194.349 793.464 194.567 794.105 194.937C794.817 195.348 795.207 195.749 795.277 196.142C795.353 196.53 795.134 196.881 794.62 197.192L793.42 196.499C793.712 196.323 793.823 196.149 793.753 195.977C793.683 195.804 793.499 195.632 793.2 195.46C792.953 195.317 792.702 195.227 792.448 195.19C792.2 195.157 791.994 195.188 791.829 195.284C791.708 195.353 791.641 195.429 791.629 195.509C791.629 195.59 791.683 195.694 791.791 195.823C791.911 195.951 792.111 196.125 792.391 196.345C792.81 196.683 793.092 196.974 793.239 197.22C793.391 197.462 793.426 197.676 793.343 197.863C793.267 198.047 793.086 198.221 792.8 198.386C792.311 198.668 791.724 198.769 791.038 198.688C790.365 198.608 789.692 198.373 789.018 197.984ZM798.894 195.634L800.19 196.382L796.284 198.637L800.218 198.599L801.752 199.484L797.989 199.49L796.922 202.416L795.408 201.541L796.189 199.495L794.779 199.506L793.331 200.342L792.035 199.594L798.894 195.634ZM801.733 205.325C801.225 205.032 800.895 204.713 800.743 204.368C800.603 204.024 800.628 203.683 800.819 203.345C801.016 203.004 801.362 202.691 801.857 202.405C802.352 202.119 802.895 201.919 803.486 201.805C804.077 201.692 804.667 201.677 805.258 201.761C805.855 201.849 806.407 202.04 806.916 202.333C807.595 202.726 807.963 203.136 808.021 203.565C808.078 203.994 807.852 204.399 807.344 204.781L806.049 204.033C806.252 203.849 806.334 203.662 806.296 203.472C806.271 203.281 806.122 203.107 805.849 202.949C805.595 202.803 805.318 202.716 805.02 202.691C804.728 202.661 804.423 202.687 804.105 202.768C803.794 202.852 803.483 202.984 803.172 203.164C802.861 203.343 802.632 203.523 802.486 203.703C802.352 203.882 802.308 204.058 802.352 204.231C802.397 204.403 802.546 204.563 802.8 204.709C803.086 204.874 803.397 204.962 803.734 204.973C804.077 204.988 804.416 204.924 804.753 204.781L806.049 205.529C805.369 205.833 804.645 205.972 803.877 205.947C803.115 205.917 802.4 205.71 801.733 205.325ZM807.093 208.42C806.572 208.119 806.229 207.793 806.064 207.441C805.912 207.089 805.928 206.742 806.112 206.401C806.309 206.06 806.655 205.747 807.15 205.461C807.645 205.175 808.188 204.975 808.779 204.861C809.376 204.751 809.976 204.742 810.58 204.834C811.189 204.929 811.754 205.127 812.275 205.428C812.802 205.732 813.145 206.058 813.304 206.407C813.469 206.759 813.453 207.105 813.256 207.446C813.06 207.787 812.713 208.101 812.218 208.387C811.723 208.673 811.18 208.872 810.589 208.986C810.005 209.096 809.405 209.105 808.789 209.014C808.185 208.922 807.62 208.724 807.093 208.42ZM808.16 207.804C808.439 207.965 808.731 208.06 809.036 208.09C809.347 208.123 809.655 208.099 809.96 208.018C810.278 207.937 810.592 207.807 810.903 207.628C811.215 207.448 811.44 207.266 811.58 207.083C811.726 206.903 811.767 206.726 811.704 206.55C811.653 206.374 811.488 206.205 811.208 206.044C810.935 205.886 810.643 205.791 810.332 205.758C810.033 205.725 809.725 205.748 809.408 205.829C809.09 205.91 808.776 206.04 808.465 206.22C808.153 206.399 807.928 206.581 807.788 206.764C807.655 206.944 807.614 207.122 807.664 207.298C807.722 207.477 807.887 207.646 808.16 207.804ZM815.474 207.406L816.732 208.132L816.027 208.539C816.446 208.488 816.849 208.49 817.236 208.545C817.624 208.6 817.986 208.725 818.322 208.919C818.665 209.117 818.881 209.333 818.97 209.568C819.059 209.803 819.021 210.045 818.856 210.294C819.32 210.239 819.77 210.243 820.209 210.305C820.66 210.367 821.063 210.501 821.418 210.706C821.761 210.904 821.977 211.121 822.066 211.355C822.162 211.594 822.127 211.838 821.961 212.087C821.796 212.336 821.511 212.578 821.104 212.813L818.018 214.595L816.722 213.847L819.656 212.153C819.961 211.977 820.139 211.797 820.19 211.614C820.24 211.431 820.129 211.26 819.856 211.102C819.583 210.945 819.253 210.864 818.865 210.86C818.484 210.86 818.075 210.987 817.637 211.24L814.922 212.807L813.626 212.059L816.56 210.365C816.865 210.189 817.04 210.008 817.084 209.821C817.135 209.638 817.027 209.469 816.76 209.315C816.481 209.154 816.147 209.071 815.76 209.067C815.379 209.067 814.969 209.194 814.531 209.447L811.816 211.014L810.52 210.266L815.474 207.406ZM825.768 213.449C826.156 213.519 826.524 213.654 826.873 213.856C827.337 214.124 827.62 214.419 827.721 214.741C827.829 215.06 827.772 215.383 827.55 215.709C827.334 216.032 826.978 216.336 826.483 216.622C825.981 216.912 825.448 217.121 824.882 217.249C824.324 217.374 823.768 217.405 823.215 217.343C822.663 217.281 822.155 217.116 821.691 216.848C821.361 216.657 821.129 216.454 820.996 216.237C820.869 216.025 820.834 215.803 820.891 215.572L818.395 217.013L817.1 216.265L823.958 212.305L825.216 213.031L824.559 213.41C824.978 213.366 825.381 213.379 825.768 213.449ZM825.968 214.785C825.918 214.609 825.756 214.443 825.483 214.285C825.216 214.131 824.93 214.039 824.625 214.01C824.32 213.981 824.009 214.006 823.692 214.087C823.381 214.164 823.069 214.292 822.758 214.472C822.447 214.652 822.221 214.833 822.082 215.016C821.942 215.2 821.898 215.379 821.948 215.555C822.006 215.728 822.167 215.891 822.434 216.045C822.707 216.203 822.993 216.298 823.292 216.331C823.596 216.36 823.904 216.333 824.216 216.248C824.533 216.168 824.848 216.038 825.159 215.858C825.47 215.678 825.692 215.499 825.826 215.319C825.972 215.139 826.019 214.961 825.968 214.785ZM831.65 214.546L832.946 215.294L826.087 219.254L824.791 218.506L831.65 214.546ZM829.242 221.208C828.734 220.914 828.401 220.593 828.242 220.245C828.096 219.897 828.118 219.554 828.309 219.217C828.506 218.876 828.852 218.562 829.347 218.276C829.842 217.99 830.385 217.79 830.976 217.677C831.567 217.563 832.16 217.55 832.757 217.638C833.361 217.73 833.916 217.922 834.425 218.216C834.939 218.513 835.272 218.833 835.425 219.178C835.584 219.519 835.552 219.864 835.33 220.212C835.12 220.56 834.742 220.892 834.196 221.208L833.91 221.373L830.233 219.25C830.017 219.411 829.871 219.572 829.795 219.734C829.731 219.895 829.731 220.053 829.795 220.207C829.871 220.361 830.02 220.502 830.243 220.63C830.522 220.791 830.808 220.894 831.1 220.938C831.405 220.982 831.71 220.975 832.014 220.916L833.272 221.642C832.605 221.836 831.913 221.899 831.195 221.829C830.49 221.759 829.839 221.552 829.242 221.208ZM833.51 220.108C833.789 219.873 833.923 219.642 833.91 219.415C833.904 219.184 833.742 218.976 833.424 218.793C833.1 218.606 832.738 218.511 832.338 218.507C831.945 218.5 831.544 218.577 831.138 218.738L833.51 220.108ZM834.549 224.139C834.238 223.96 834.015 223.791 833.882 223.633C833.755 223.472 833.726 223.301 833.796 223.122C833.873 222.946 834.082 222.759 834.425 222.561L837.092 221.021L836.235 220.526L837.216 219.959L838.074 220.454L839.598 219.574L840.893 220.322L839.369 221.202L840.608 221.917L839.626 222.484L838.388 221.769L835.854 223.232C835.695 223.323 835.613 223.411 835.606 223.496C835.606 223.576 835.692 223.666 835.864 223.765L836.635 224.211L835.654 224.777L834.549 224.139ZM838.555 226.584C838.046 226.291 837.713 225.97 837.554 225.621C837.408 225.273 837.43 224.93 837.621 224.593C837.818 224.252 838.164 223.938 838.659 223.652C839.155 223.366 839.698 223.167 840.288 223.053C840.879 222.939 841.473 222.926 842.07 223.014C842.673 223.106 843.229 223.299 843.737 223.592C844.251 223.889 844.585 224.21 844.737 224.554C844.896 224.895 844.864 225.24 844.642 225.588C844.432 225.937 844.054 226.269 843.508 226.584L843.222 226.749L839.545 224.626C839.329 224.787 839.183 224.949 839.107 225.11C839.044 225.271 839.044 225.429 839.107 225.583C839.183 225.737 839.333 225.878 839.555 226.006C839.834 226.168 840.12 226.27 840.412 226.314C840.717 226.358 841.022 226.351 841.327 226.292L842.584 227.018C841.917 227.213 841.225 227.275 840.507 227.205C839.802 227.136 839.152 226.929 838.555 226.584ZM842.822 225.484C843.102 225.249 843.235 225.018 843.222 224.791C843.216 224.56 843.054 224.353 842.737 224.169C842.413 223.982 842.051 223.887 841.651 223.883C841.257 223.876 840.857 223.953 840.45 224.114L842.822 225.484Z" fill="#5F52FF"/>
|
|
55
|
+
<g id="5-option-handler">
|
|
56
|
+
<path id="Rectangle 114" d="M487.182 623.065L549.882 659.266L487.182 695.466L424.481 659.266L487.182 623.065Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
57
|
+
<g id="Union">
|
|
58
|
+
<mask id="path-49-inside-1_140_2201" fill="white">
|
|
59
|
+
<path d="M507.616 669.874L487.742 681.348L423.151 644.057L443.025 632.583L507.616 669.874ZM530.472 656.678L509.603 668.727L445.013 631.435L465.881 619.387L530.472 656.678ZM552.333 644.057L532.459 655.531L467.868 618.239L487.742 606.765L552.333 644.057Z"/>
|
|
60
|
+
</mask>
|
|
61
|
+
<path d="M507.616 669.874L487.742 681.348L423.151 644.057L443.025 632.583L507.616 669.874ZM530.472 656.678L509.603 668.727L445.013 631.435L465.881 619.387L530.472 656.678ZM552.333 644.057L532.459 655.531L467.868 618.239L487.742 606.765L552.333 644.057Z" fill="#F8F7FF"/>
|
|
62
|
+
<path d="M507.616 669.874L509.348 670.874C509.807 670.609 510.065 670.249 510.065 669.874C510.065 669.499 509.807 669.139 509.348 668.874L507.616 669.874ZM487.742 681.348L486.01 682.348C486.967 682.9 488.518 682.9 489.474 682.348L487.742 681.348ZM423.151 644.057L421.419 643.057C420.463 643.609 420.463 644.504 421.419 645.057L423.151 644.057ZM443.025 632.583L444.757 631.583C444.298 631.317 443.675 631.168 443.025 631.168C442.375 631.168 441.752 631.317 441.293 631.583L443.025 632.583ZM530.472 656.678L532.204 657.678C532.663 657.413 532.921 657.053 532.921 656.678C532.921 656.303 532.663 655.943 532.204 655.678L530.472 656.678ZM509.603 668.727L507.871 669.727C508.828 670.279 510.379 670.279 511.335 669.727L509.603 668.727ZM445.013 631.435L443.281 630.435C442.821 630.7 442.563 631.06 442.563 631.435C442.563 631.81 442.821 632.17 443.281 632.435L445.013 631.435ZM465.881 619.387L467.613 618.387C466.656 617.834 465.105 617.834 464.149 618.387L465.881 619.387ZM552.333 644.057L554.065 645.057C554.524 644.791 554.782 644.432 554.782 644.057C554.782 643.682 554.524 643.322 554.065 643.057L552.333 644.057ZM532.459 655.531L530.727 656.531C531.684 657.083 533.235 657.083 534.191 656.531L532.459 655.531ZM467.868 618.239L466.136 617.239C465.677 617.504 465.419 617.864 465.419 618.239C465.419 618.614 465.677 618.974 466.136 619.239L467.868 618.239ZM487.742 606.765L489.474 605.765C489.015 605.5 488.392 605.351 487.742 605.351C487.093 605.351 486.469 605.5 486.01 605.765L487.742 606.765ZM507.616 669.874L505.884 668.874L486.01 680.348L487.742 681.348L489.474 682.348L509.348 670.874L507.616 669.874ZM487.742 681.348L489.474 680.348L424.883 643.057L423.151 644.057L421.419 645.057L486.01 682.348L487.742 681.348ZM423.151 644.057L424.883 645.057L444.757 633.583L443.025 632.583L441.293 631.583L421.419 643.057L423.151 644.057ZM443.025 632.583L441.293 633.583L505.884 670.874L507.616 669.874L509.348 668.874L444.757 631.583L443.025 632.583ZM530.472 656.678L528.74 655.678L507.871 667.727L509.603 668.727L511.335 669.727L532.204 657.678L530.472 656.678ZM509.603 668.727L511.335 667.727L446.745 630.435L445.013 631.435L443.281 632.435L507.871 669.727L509.603 668.727ZM445.013 631.435L446.745 632.435L467.613 620.387L465.881 619.387L464.149 618.387L443.281 630.435L445.013 631.435ZM465.881 619.387L464.149 620.387L528.74 657.678L530.472 656.678L532.204 655.678L467.613 618.387L465.881 619.387ZM552.333 644.057L550.601 643.057L530.727 654.531L532.459 655.531L534.191 656.531L554.065 645.057L552.333 644.057ZM532.459 655.531L534.191 654.531L469.6 617.239L467.868 618.239L466.136 619.239L530.727 656.531L532.459 655.531ZM467.868 618.239L469.6 619.239L489.474 607.765L487.742 606.765L486.01 605.765L466.136 617.239L467.868 618.239ZM487.742 606.765L486.01 607.765L550.601 645.057L552.333 644.057L554.065 643.057L489.474 605.765L487.742 606.765Z" fill="#5F52FF" mask="url(#path-49-inside-1_140_2201)"/>
|
|
63
|
+
</g>
|
|
64
|
+
<g id="Union_2">
|
|
65
|
+
<mask id="path-51-inside-2_140_2201" fill="white">
|
|
66
|
+
<path d="M507.616 654.874L487.742 666.348L423.151 629.057L443.025 617.583L507.616 654.874ZM530.472 641.678L509.603 653.727L445.013 616.435L465.881 604.387L530.472 641.678ZM552.333 629.057L532.459 640.531L467.868 603.239L487.742 591.765L552.333 629.057Z"/>
|
|
67
|
+
</mask>
|
|
68
|
+
<path d="M507.616 654.874L487.742 666.348L423.151 629.057L443.025 617.583L507.616 654.874ZM530.472 641.678L509.603 653.727L445.013 616.435L465.881 604.387L530.472 641.678ZM552.333 629.057L532.459 640.531L467.868 603.239L487.742 591.765L552.333 629.057Z" fill="#F8F7FF"/>
|
|
69
|
+
<path d="M507.616 654.874L509.348 655.874C509.807 655.609 510.065 655.249 510.065 654.874C510.065 654.499 509.807 654.139 509.348 653.874L507.616 654.874ZM487.742 666.348L486.01 667.348C486.469 667.613 487.092 667.762 487.742 667.762C488.392 667.762 489.015 667.613 489.474 667.348L487.742 666.348ZM423.151 629.057L421.419 628.057C420.463 628.609 420.463 629.504 421.419 630.057L423.151 629.057ZM443.025 617.583L444.757 616.583C443.801 616.03 442.25 616.03 441.293 616.583L443.025 617.583ZM530.472 641.678L532.204 642.678C532.663 642.413 532.921 642.053 532.921 641.678C532.921 641.303 532.663 640.943 532.204 640.678L530.472 641.678ZM509.603 653.727L507.871 654.727C508.828 655.279 510.379 655.279 511.335 654.727L509.603 653.727ZM445.013 616.435L443.281 615.435C442.821 615.7 442.563 616.06 442.563 616.435C442.563 616.81 442.821 617.17 443.281 617.435L445.013 616.435ZM465.881 604.387L467.613 603.387C466.656 602.834 465.105 602.834 464.149 603.387L465.881 604.387ZM552.333 629.057L554.065 630.057C554.524 629.791 554.782 629.432 554.782 629.057C554.782 628.682 554.524 628.322 554.065 628.057L552.333 629.057ZM532.459 640.531L530.727 641.531C531.186 641.796 531.81 641.945 532.459 641.945C533.109 641.945 533.732 641.796 534.191 641.531L532.459 640.531ZM467.868 603.239L466.136 602.239C465.18 602.792 465.18 603.687 466.136 604.239L467.868 603.239ZM487.742 591.765L489.474 590.765C488.518 590.213 486.967 590.213 486.01 590.765L487.742 591.765ZM507.616 654.874L505.884 653.874L486.01 665.348L487.742 666.348L489.474 667.348L509.348 655.874L507.616 654.874ZM487.742 666.348L489.474 665.348L424.883 628.057L423.151 629.057L421.419 630.057L486.01 667.348L487.742 666.348ZM423.151 629.057L424.883 630.057L444.757 618.583L443.025 617.583L441.293 616.583L421.419 628.057L423.151 629.057ZM443.025 617.583L441.293 618.583L505.884 655.874L507.616 654.874L509.348 653.874L444.757 616.583L443.025 617.583ZM530.472 641.678L528.74 640.678L507.871 652.727L509.603 653.727L511.335 654.727L532.204 642.678L530.472 641.678ZM509.603 653.727L511.335 652.727L446.745 615.435L445.013 616.435L443.281 617.435L507.871 654.727L509.603 653.727ZM445.013 616.435L446.745 617.435L467.613 605.387L465.881 604.387L464.149 603.387L443.281 615.435L445.013 616.435ZM465.881 604.387L464.149 605.387L528.74 642.678L530.472 641.678L532.204 640.678L467.613 603.387L465.881 604.387ZM552.333 629.057L550.601 628.057L530.727 639.531L532.459 640.531L534.191 641.531L554.065 630.057L552.333 629.057ZM532.459 640.531L534.191 639.531L469.6 602.239L467.868 603.239L466.136 604.239L530.727 641.531L532.459 640.531ZM467.868 603.239L469.6 604.239L489.474 592.765L487.742 591.765L486.01 590.765L466.136 602.239L467.868 603.239ZM487.742 591.765L486.01 592.765L550.601 630.057L552.333 629.057L554.065 628.057L489.474 590.765L487.742 591.765Z" fill="#5F52FF" mask="url(#path-51-inside-2_140_2201)"/>
|
|
70
|
+
</g>
|
|
71
|
+
<g id="Union_3">
|
|
72
|
+
<mask id="path-53-inside-3_140_2201" fill="white">
|
|
73
|
+
<path d="M507.616 639.874L487.742 651.348L423.151 614.057L443.025 602.583L507.616 639.874ZM530.472 626.678L509.603 638.727L445.013 601.435L465.881 589.387L530.472 626.678ZM552.333 614.057L532.459 625.531L467.868 588.239L487.742 576.765L552.333 614.057Z"/>
|
|
74
|
+
</mask>
|
|
75
|
+
<path d="M507.616 639.874L487.742 651.348L423.151 614.057L443.025 602.583L507.616 639.874ZM530.472 626.678L509.603 638.727L445.013 601.435L465.881 589.387L530.472 626.678ZM552.333 614.057L532.459 625.531L467.868 588.239L487.742 576.765L552.333 614.057Z" fill="#F8F7FF"/>
|
|
76
|
+
<path d="M507.616 639.874L509.348 640.874C509.807 640.609 510.065 640.249 510.065 639.874C510.065 639.499 509.807 639.139 509.348 638.874L507.616 639.874ZM487.742 651.348L486.01 652.348C486.469 652.613 487.092 652.762 487.742 652.762C488.392 652.762 489.015 652.613 489.474 652.348L487.742 651.348ZM423.151 614.057L421.419 613.057C420.463 613.609 420.463 614.504 421.419 615.057L423.151 614.057ZM443.025 602.583L444.757 601.583C443.801 601.03 442.25 601.03 441.293 601.583L443.025 602.583ZM530.472 626.678L532.204 627.678C532.663 627.413 532.921 627.053 532.921 626.678C532.921 626.303 532.663 625.943 532.204 625.678L530.472 626.678ZM509.603 638.727L507.871 639.727C508.331 639.992 508.954 640.141 509.603 640.141C510.253 640.141 510.876 639.992 511.335 639.727L509.603 638.727ZM445.013 601.435L443.281 600.435C442.324 600.987 442.324 601.883 443.281 602.435L445.013 601.435ZM465.881 589.387L467.613 588.387C466.656 587.834 465.105 587.834 464.149 588.387L465.881 589.387ZM552.333 614.057L554.065 615.057C554.524 614.791 554.782 614.432 554.782 614.057C554.782 613.682 554.524 613.322 554.065 613.057L552.333 614.057ZM532.459 625.531L530.727 626.531C531.186 626.796 531.81 626.945 532.459 626.945C533.109 626.945 533.732 626.796 534.191 626.531L532.459 625.531ZM467.868 588.239L466.136 587.239C465.18 587.792 465.18 588.687 466.136 589.239L467.868 588.239ZM487.742 576.765L489.474 575.765C488.518 575.213 486.967 575.213 486.01 575.765L487.742 576.765ZM507.616 639.874L505.884 638.874L486.01 650.348L487.742 651.348L489.474 652.348L509.348 640.874L507.616 639.874ZM487.742 651.348L489.474 650.348L424.883 613.057L423.151 614.057L421.419 615.057L486.01 652.348L487.742 651.348ZM423.151 614.057L424.883 615.057L444.757 603.583L443.025 602.583L441.293 601.583L421.419 613.057L423.151 614.057ZM443.025 602.583L441.293 603.583L505.884 640.874L507.616 639.874L509.348 638.874L444.757 601.583L443.025 602.583ZM530.472 626.678L528.74 625.678L507.871 637.727L509.603 638.727L511.335 639.727L532.204 627.678L530.472 626.678ZM509.603 638.727L511.335 637.727L446.745 600.435L445.013 601.435L443.281 602.435L507.871 639.727L509.603 638.727ZM445.013 601.435L446.745 602.435L467.613 590.387L465.881 589.387L464.149 588.387L443.281 600.435L445.013 601.435ZM465.881 589.387L464.149 590.387L528.74 627.678L530.472 626.678L532.204 625.678L467.613 588.387L465.881 589.387ZM552.333 614.057L550.601 613.057L530.727 624.531L532.459 625.531L534.191 626.531L554.065 615.057L552.333 614.057ZM532.459 625.531L534.191 624.531L469.6 587.239L467.868 588.239L466.136 589.239L530.727 626.531L532.459 625.531ZM467.868 588.239L469.6 589.239L489.474 577.765L487.742 576.765L486.01 575.765L466.136 587.239L467.868 588.239ZM487.742 576.765L486.01 577.765L550.601 615.057L552.333 614.057L554.065 613.057L489.474 575.765L487.742 576.765Z" fill="#5F52FF" mask="url(#path-53-inside-3_140_2201)"/>
|
|
77
|
+
</g>
|
|
78
|
+
</g>
|
|
79
|
+
<g id="3-perform-aspdma">
|
|
80
|
+
<rect id="Rectangle 114_2" x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 765.865 591.333)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
81
|
+
<rect id="Rectangle 115_2" x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 752.865 598.333)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
82
|
+
<circle id="Ellipse 8" cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 777.749 641.766)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
83
|
+
</g>
|
|
84
|
+
<g id="Rectangle 114_3">
|
|
85
|
+
<rect width="188.633" height="75.32" transform="matrix(0.866025 -0.5 0.866025 0.5 741.552 430.279)" fill="#7B70FF" fill-opacity="0.1"/>
|
|
86
|
+
<rect x="0.866025" width="187.633" height="74.32" transform="matrix(0.866025 -0.5 0.866025 0.5 741.668 430.712)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
|
|
87
|
+
</g>
|
|
88
|
+
<g id="local-memory-graphs">
|
|
89
|
+
<path id="Rectangle 121" d="M908.472 353L943.113 373L908.472 393L873.831 373L908.472 353Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
90
|
+
<rect id="Rectangle 120" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 872.331 365.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
91
|
+
<rect id="Rectangle 119" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 872.331 357.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
92
|
+
<rect id="Rectangle 117_2" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 872.331 349.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
93
|
+
<path id="Vector 142" d="M908.539 353V368" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
94
|
+
<rect id="Rectangle 118_2" x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 886.229 341.843)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
95
|
+
<path id="Rectangle 121_2" d="M857.472 382L892.113 402L857.472 422L822.831 402L857.472 382Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
96
|
+
<rect id="Rectangle 120_2" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 821.331 394.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
97
|
+
<path id="Vector 142_2" d="M857.539 398V413" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
98
|
+
<rect id="Rectangle 118_3" x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 835.229 386.843)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
99
|
+
<path id="Rectangle 121_3" d="M805.472 412L840.113 432L805.472 452L770.831 432L805.472 412Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
100
|
+
<rect id="Rectangle 120_3" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 769.331 424.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
101
|
+
<rect id="Rectangle 119_2" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 769.331 416.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
102
|
+
<rect id="Rectangle 117_3" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 769.331 408.866)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
103
|
+
<path id="Vector 142_3" d="M805.539 412V427" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
104
|
+
<rect id="Rectangle 118_4" x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 783.229 400.843)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
105
|
+
</g>
|
|
106
|
+
<g id="bus">
|
|
107
|
+
<g id="Group 149">
|
|
108
|
+
<path id="Vector 134" d="M328.436 558.896L358.479 563.533L366.51 580.878L344.498 593.587L314.455 588.95L306.425 571.605L328.436 558.896Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
109
|
+
<path id="Vector 135" d="M328.436 550.896L358.479 555.533L366.51 572.878L344.498 585.587L314.455 580.95L306.425 563.605L328.436 550.896Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
110
|
+
<path id="Vector 136" d="M328.436 542.896L358.479 547.533L366.51 564.878L344.498 577.587L314.455 572.95L306.425 555.605L328.436 542.896Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
111
|
+
<path id="Vector 137" d="M331.888 550.35L349.02 552.994L353.6 562.885L341.047 570.133L323.914 567.489L319.335 557.597L331.888 550.35Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
112
|
+
<path id="Vector 138" d="M331.888 545.166L349.02 547.81L353.6 557.702L341.047 564.949L323.914 562.305L319.335 552.414L331.888 545.166Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
113
|
+
</g>
|
|
114
|
+
</g>
|
|
115
|
+
<path id="Vector 113_2" d="M649.749 725.266L783.983 647.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
116
|
+
<path id="Vector 114" d="M654.749 729.266L788.983 651.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
117
|
+
<path id="Vector 115" d="M656.552 735.5L790.786 658" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
118
|
+
<g id="8-round-complete">
|
|
119
|
+
<path id="Rectangle 131" d="M808.907 282.521L803.104 287.546L802.672 287.921L803.104 288.796L808.907 300.521L784.728 286.562L784.728 268.562L808.907 282.521Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
120
|
+
<rect id="Rectangle 132" width="2" height="22.3973" transform="matrix(0.866025 0.5 -2.20305e-08 1 783.862 286.288)" fill="#5F52FF"/>
|
|
121
|
+
<path id="Ellipse 13" d="M782.554 308.571C783.807 307.847 785.84 307.848 787.094 308.571C788.347 309.295 788.347 310.469 787.094 311.192C785.84 311.916 783.807 311.916 782.554 311.192C781.3 310.469 781.3 309.295 782.554 308.571Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
|
|
122
|
+
</g>
|
|
123
|
+
<path id="Vector 162" d="M632.945 742.989C632.467 742.713 631.691 742.713 631.213 742.989C630.735 743.265 630.735 743.713 631.213 743.989L632.079 743.489L632.945 742.989ZM743.217 807.655L742.351 808.155C742.829 808.431 743.605 808.431 744.083 808.155L743.217 807.655ZM956.977 684.24L957.843 684.74C958.322 684.464 958.322 684.016 957.843 683.74L956.977 684.24ZM845.84 619.367C845.163 619.367 844.615 619.684 844.615 620.075L844.615 626.439C844.615 626.829 845.163 627.146 845.84 627.146C846.516 627.146 847.064 626.829 847.064 626.439L847.064 620.782L856.862 620.782C857.539 620.782 858.087 620.465 858.087 620.075C858.087 619.684 857.539 619.367 856.862 619.367L845.84 619.367ZM631.641 744.236C632.119 744.512 632.894 744.512 633.373 744.236C633.851 743.96 633.851 743.512 633.373 743.236L632.507 743.736L631.641 744.236ZM636.792 745.21C636.314 744.934 635.538 744.934 635.06 745.21C634.582 745.487 634.582 745.934 635.06 746.21L635.926 745.71L636.792 745.21ZM635.915 746.704C636.393 746.98 637.169 746.98 637.647 746.704C638.125 746.428 638.125 745.98 637.647 745.704L636.781 746.204L635.915 746.704ZM641.067 747.678C640.588 747.402 639.813 747.402 639.335 747.678C638.856 747.954 638.856 748.402 639.335 748.678L640.201 748.178L641.067 747.678ZM640.19 749.172C640.668 749.448 641.443 749.448 641.922 749.172C642.4 748.896 642.4 748.448 641.922 748.172L641.056 748.672L640.19 749.172ZM645.341 750.146C644.863 749.87 644.088 749.87 643.609 750.146C643.131 750.422 643.131 750.87 643.609 751.146L644.475 750.646L645.341 750.146ZM644.464 751.64C644.942 751.916 645.718 751.916 646.196 751.64C646.674 751.364 646.674 750.916 646.196 750.64L645.33 751.14L644.464 751.64ZM649.616 752.614C649.138 752.338 648.362 752.338 647.884 752.614C647.405 752.89 647.405 753.338 647.884 753.614L648.75 753.114L649.616 752.614ZM648.739 754.108C649.217 754.384 649.992 754.384 650.471 754.108C650.949 753.832 650.949 753.384 650.471 753.108L649.605 753.608L648.739 754.108ZM653.89 755.082C653.412 754.806 652.637 754.806 652.158 755.082C651.68 755.358 651.68 755.806 652.158 756.082L653.024 755.582L653.89 755.082ZM653.013 756.576C653.491 756.852 654.267 756.852 654.745 756.576C655.224 756.299 655.224 755.852 654.745 755.576L653.879 756.076L653.013 756.576ZM658.165 757.55C657.687 757.274 656.911 757.274 656.433 757.55C655.955 757.826 655.955 758.274 656.433 758.55L657.299 758.05L658.165 757.55ZM657.288 759.043C657.766 759.32 658.541 759.32 659.02 759.043C659.498 758.767 659.498 758.32 659.02 758.043L658.154 758.543L657.288 759.043ZM662.439 760.018C661.961 759.742 661.186 759.742 660.707 760.018C660.229 760.294 660.229 760.742 660.707 761.018L661.573 760.518L662.439 760.018ZM661.562 761.511C662.041 761.788 662.816 761.788 663.294 761.511C663.773 761.235 663.773 760.788 663.294 760.511L662.428 761.011L661.562 761.511ZM666.714 762.486C666.236 762.21 665.46 762.21 664.982 762.486C664.504 762.762 664.504 763.21 664.982 763.486L665.848 762.986L666.714 762.486ZM665.837 763.979C666.315 764.255 667.091 764.255 667.569 763.979C668.047 763.703 668.047 763.255 667.569 762.979L666.703 763.479L665.837 763.979ZM670.988 764.954C670.51 764.677 669.735 764.677 669.256 764.954C668.778 765.23 668.778 765.677 669.256 765.954L670.122 765.454L670.988 764.954ZM670.111 766.447C670.59 766.723 671.365 766.723 671.843 766.447C672.322 766.171 672.322 765.723 671.843 765.447L670.977 765.947L670.111 766.447ZM675.263 767.421C674.785 767.145 674.009 767.145 673.531 767.421C673.053 767.698 673.053 768.145 673.531 768.421L674.397 767.921L675.263 767.421ZM674.386 768.915C674.864 769.191 675.64 769.191 676.118 768.915C676.596 768.639 676.596 768.191 676.118 767.915L675.252 768.415L674.386 768.915ZM679.538 769.889C679.059 769.613 678.284 769.613 677.805 769.889C677.327 770.166 677.327 770.613 677.805 770.889L678.672 770.389L679.538 769.889ZM678.66 771.383C679.139 771.659 679.914 771.659 680.392 771.383C680.871 771.107 680.871 770.659 680.392 770.383L679.526 770.883L678.66 771.383ZM683.812 772.357C683.334 772.081 682.558 772.081 682.08 772.357C681.602 772.633 681.602 773.081 682.08 773.357L682.946 772.857L683.812 772.357ZM682.935 773.851C683.413 774.127 684.189 774.127 684.667 773.851C685.145 773.575 685.145 773.127 684.667 772.851L683.801 773.351L682.935 773.851ZM688.087 774.825C687.608 774.549 686.833 774.549 686.355 774.825C685.876 775.101 685.876 775.549 686.355 775.825L687.221 775.325L688.087 774.825ZM687.209 776.319C687.688 776.595 688.463 776.595 688.942 776.319C689.42 776.043 689.42 775.595 688.942 775.319L688.075 775.819L687.209 776.319ZM692.361 777.293C691.883 777.017 691.107 777.017 690.629 777.293C690.151 777.569 690.151 778.017 690.629 778.293L691.495 777.793L692.361 777.293ZM691.484 778.787C691.962 779.063 692.738 779.063 693.216 778.787C693.694 778.511 693.694 778.063 693.216 777.787L692.35 778.287L691.484 778.787ZM696.636 779.761C696.157 779.485 695.382 779.485 694.904 779.761C694.425 780.037 694.425 780.485 694.904 780.761L695.77 780.261L696.636 779.761ZM695.759 781.255C696.237 781.531 697.012 781.531 697.491 781.255C697.969 780.978 697.969 780.531 697.491 780.255L696.625 780.755L695.759 781.255ZM700.91 782.229C700.432 781.953 699.656 781.953 699.178 782.229C698.7 782.505 698.7 782.953 699.178 783.229L700.044 782.729L700.91 782.229ZM700.033 783.722C700.511 783.999 701.287 783.999 701.765 783.722C702.243 783.446 702.243 782.999 701.765 782.722L700.899 783.222L700.033 783.722ZM705.185 784.697C704.706 784.421 703.931 784.421 703.453 784.697C702.974 784.973 702.974 785.421 703.453 785.697L704.319 785.197L705.185 784.697ZM704.308 786.19C704.786 786.467 705.561 786.467 706.04 786.19C706.518 785.914 706.518 785.467 706.04 785.19L705.174 785.69L704.308 786.19ZM709.459 787.165C708.981 786.889 708.206 786.889 707.727 787.165C707.249 787.441 707.249 787.889 707.727 788.165L708.593 787.665L709.459 787.165ZM708.582 788.658C709.06 788.934 709.836 788.934 710.314 788.658C710.792 788.382 710.792 787.934 710.314 787.658L709.448 788.158L708.582 788.658ZM713.734 789.633C713.256 789.356 712.48 789.356 712.002 789.633C711.523 789.909 711.523 790.356 712.002 790.633L712.868 790.133L713.734 789.633ZM712.857 791.126C713.335 791.402 714.11 791.402 714.589 791.126C715.067 790.85 715.067 790.402 714.589 790.126L713.723 790.626L712.857 791.126ZM718.008 792.101C717.53 791.824 716.755 791.824 716.276 792.101C715.798 792.377 715.798 792.824 716.276 793.101L717.142 792.601L718.008 792.101ZM717.131 793.594C717.609 793.87 718.385 793.87 718.863 793.594C719.342 793.318 719.342 792.87 718.863 792.594L717.997 793.094L717.131 793.594ZM722.283 794.568C721.805 794.292 721.029 794.292 720.551 794.568C720.073 794.845 720.073 795.292 720.551 795.568L721.417 795.068L722.283 794.568ZM721.406 796.062C721.884 796.338 722.659 796.338 723.138 796.062C723.616 795.786 723.616 795.338 723.138 795.062L722.272 795.562L721.406 796.062ZM726.557 797.036C726.079 796.76 725.304 796.76 724.825 797.036C724.347 797.312 724.347 797.76 724.825 798.036L725.691 797.536L726.557 797.036ZM725.68 798.53C726.159 798.806 726.934 798.806 727.412 798.53C727.891 798.254 727.891 797.806 727.412 797.53L726.546 798.03L725.68 798.53ZM730.832 799.504C730.354 799.228 729.578 799.228 729.1 799.504C728.622 799.78 728.622 800.228 729.1 800.504L729.966 800.004L730.832 799.504ZM729.955 800.998C730.433 801.274 731.209 801.274 731.687 800.998C732.165 800.722 732.165 800.274 731.687 799.998L730.821 800.498L729.955 800.998ZM735.106 801.972C734.628 801.696 733.853 801.696 733.374 801.972C732.896 802.248 732.896 802.696 733.374 802.972L734.24 802.472L735.106 801.972ZM734.229 803.466C734.708 803.742 735.483 803.742 735.961 803.466C736.44 803.19 736.44 802.742 735.961 802.466L735.095 802.966L734.229 803.466ZM739.381 804.44C738.903 804.164 738.127 804.164 737.649 804.44C737.171 804.716 737.171 805.164 737.649 805.44L738.515 804.94L739.381 804.44ZM738.504 805.934C738.982 806.21 739.758 806.21 740.236 805.934C740.714 805.657 740.714 805.21 740.236 804.934L739.37 805.434L738.504 805.934ZM743.656 806.908C743.177 806.632 742.402 806.632 741.923 806.908C741.445 807.184 741.445 807.632 741.923 807.908L742.79 807.408L743.656 806.908ZM744.519 807.903C744.998 807.627 744.998 807.179 744.519 806.903C744.041 806.627 743.265 806.627 742.787 806.903L743.653 807.403L744.519 807.903ZM746.277 804.888C745.799 805.164 745.799 805.612 746.277 805.888C746.755 806.164 747.531 806.164 748.009 805.888L747.143 805.388L746.277 804.888ZM748.882 805.384C749.36 805.108 749.36 804.66 748.882 804.384C748.403 804.108 747.628 804.108 747.15 804.384L748.016 804.884L748.882 805.384ZM750.64 802.369C750.161 802.645 750.161 803.093 750.64 803.369C751.118 803.645 751.893 803.645 752.372 803.369L751.506 802.869L750.64 802.369ZM753.244 802.866C753.722 802.589 753.722 802.142 753.244 801.866C752.766 801.589 751.99 801.589 751.512 801.866L752.378 802.366L753.244 802.866ZM755.002 799.851C754.524 800.127 754.524 800.574 755.002 800.851C755.48 801.127 756.256 801.127 756.734 800.851L755.868 800.351L755.002 799.851ZM757.607 800.347C758.085 800.071 758.085 799.623 757.607 799.347C757.128 799.071 756.353 799.071 755.875 799.347L756.741 799.847L757.607 800.347ZM759.365 797.332C758.886 797.608 758.886 798.056 759.365 798.332C759.843 798.608 760.618 798.608 761.097 798.332L760.231 797.832L759.365 797.332ZM761.969 797.828C762.447 797.552 762.447 797.104 761.969 796.828C761.491 796.552 760.715 796.552 760.237 796.828L761.103 797.328L761.969 797.828ZM763.727 794.813C763.249 795.089 763.249 795.537 763.727 795.813C764.205 796.089 764.981 796.089 765.459 795.813L764.593 795.313L763.727 794.813ZM766.332 795.31C766.81 795.033 766.81 794.586 766.332 794.31C765.853 794.033 765.078 794.033 764.599 794.31L765.465 794.81L766.332 795.31ZM768.089 792.295C767.611 792.571 767.611 793.018 768.089 793.295C768.568 793.571 769.343 793.571 769.821 793.295L768.955 792.795L768.089 792.295ZM770.694 792.791C771.172 792.515 771.172 792.067 770.694 791.791C770.216 791.515 769.44 791.515 768.962 791.791L769.828 792.291L770.694 792.791ZM772.452 789.776C771.974 790.052 771.974 790.5 772.452 790.776C772.93 791.052 773.706 791.052 774.184 790.776L773.318 790.276L772.452 789.776ZM775.056 790.272C775.535 789.996 775.535 789.548 775.056 789.272C774.578 788.996 773.803 788.996 773.324 789.272L774.19 789.772L775.056 790.272ZM776.814 787.257C776.336 787.533 776.336 787.981 776.814 788.257C777.293 788.533 778.068 788.533 778.546 788.257L777.68 787.757L776.814 787.257ZM779.419 787.754C779.897 787.477 779.897 787.03 779.419 786.754C778.941 786.477 778.165 786.477 777.687 786.754L778.553 787.254L779.419 787.754ZM781.177 784.739C780.699 785.015 780.699 785.462 781.177 785.739C781.655 786.015 782.431 786.015 782.909 785.739L782.043 785.239L781.177 784.739ZM783.781 785.235C784.26 784.959 784.26 784.511 783.781 784.235C783.303 783.959 782.528 783.959 782.049 784.235L782.915 784.735L783.781 785.235ZM785.539 782.22C785.061 782.496 785.061 782.944 785.539 783.22C786.018 783.496 786.793 783.496 787.271 783.22L786.405 782.72L785.539 782.22ZM788.144 782.716C788.622 782.44 788.622 781.992 788.144 781.716C787.666 781.44 786.89 781.44 786.412 781.716L787.278 782.216L788.144 782.716ZM789.902 779.701C789.423 779.977 789.423 780.425 789.902 780.701C790.38 780.977 791.155 780.977 791.634 780.701L790.768 780.201L789.902 779.701ZM792.506 780.198C792.985 779.921 792.985 779.474 792.506 779.198C792.028 778.921 791.253 778.921 790.774 779.198L791.64 779.698L792.506 780.198ZM794.264 777.183C793.786 777.459 793.786 777.906 794.264 778.183C794.742 778.459 795.518 778.459 795.996 778.183L795.13 777.683L794.264 777.183ZM796.869 777.679C797.347 777.403 797.347 776.955 796.869 776.679C796.39 776.403 795.615 776.403 795.137 776.679L796.003 777.179L796.869 777.679ZM798.627 774.664C798.148 774.94 798.148 775.388 798.627 775.664C799.105 775.94 799.88 775.94 800.359 775.664L799.493 775.164L798.627 774.664ZM801.231 775.16C801.709 774.884 801.709 774.436 801.231 774.16C800.753 773.884 799.977 773.884 799.499 774.16L800.365 774.66L801.231 775.16ZM802.989 772.145C802.511 772.421 802.511 772.869 802.989 773.145C803.467 773.421 804.243 773.421 804.721 773.145L803.855 772.645L802.989 772.145ZM805.594 772.642C806.072 772.365 806.072 771.918 805.594 771.642C805.115 771.365 804.34 771.365 803.862 771.642L804.728 772.142L805.594 772.642ZM807.352 769.627C806.873 769.903 806.873 770.35 807.352 770.627C807.83 770.903 808.605 770.903 809.084 770.627L808.218 770.127L807.352 769.627ZM809.956 770.123C810.434 769.847 810.434 769.399 809.956 769.123C809.478 768.847 808.702 768.847 808.224 769.123L809.09 769.623L809.956 770.123ZM811.714 767.108C811.236 767.384 811.236 767.832 811.714 768.108C812.192 768.384 812.968 768.384 813.446 768.108L812.58 767.608L811.714 767.108ZM814.319 767.604C814.797 767.328 814.797 766.88 814.319 766.604C813.84 766.328 813.065 766.328 812.587 766.604L813.453 767.104L814.319 767.604ZM816.076 764.589C815.598 764.865 815.598 765.313 816.076 765.589C816.555 765.865 817.33 765.865 817.809 765.589L816.943 765.089L816.076 764.589ZM818.681 765.086C819.159 764.809 819.159 764.362 818.681 764.086C818.203 763.809 817.427 763.809 816.949 764.086L817.815 764.586L818.681 765.086ZM820.439 762.071C819.961 762.347 819.961 762.794 820.439 763.071C820.917 763.347 821.693 763.347 822.171 763.071L821.305 762.571L820.439 762.071ZM823.044 762.567C823.522 762.291 823.522 761.843 823.044 761.567C822.565 761.291 821.79 761.291 821.311 761.567L822.177 762.067L823.044 762.567ZM824.801 759.552C824.323 759.828 824.323 760.276 824.801 760.552C825.28 760.828 826.055 760.828 826.533 760.552L825.667 760.052L824.801 759.552ZM827.406 760.048C827.884 759.772 827.884 759.324 827.406 759.048C826.928 758.772 826.152 758.772 825.674 759.048L826.54 759.548L827.406 760.048ZM829.164 757.033C828.686 757.309 828.686 757.757 829.164 758.033C829.642 758.309 830.418 758.309 830.896 758.033L830.03 757.533L829.164 757.033ZM831.768 757.53C832.247 757.253 832.247 756.806 831.768 756.53C831.29 756.253 830.515 756.253 830.036 756.53L830.902 757.03L831.768 757.53ZM833.526 754.515C833.048 754.791 833.048 755.238 833.526 755.515C834.005 755.791 834.78 755.791 835.258 755.515L834.392 755.015L833.526 754.515ZM836.131 755.011C836.609 754.735 836.609 754.287 836.131 754.011C835.653 753.735 834.877 753.735 834.399 754.011L835.265 754.511L836.131 755.011ZM837.889 751.996C837.411 752.272 837.411 752.72 837.889 752.996C838.367 753.272 839.143 753.272 839.621 752.996L838.755 752.496L837.889 751.996ZM840.493 752.492C840.972 752.216 840.972 751.768 840.493 751.492C840.015 751.216 839.24 751.216 838.761 751.492L839.627 751.992L840.493 752.492ZM842.251 749.477C841.773 749.753 841.773 750.201 842.251 750.477C842.73 750.753 843.505 750.753 843.983 750.477L843.117 749.977L842.251 749.477ZM844.856 749.974C845.334 749.697 845.334 749.25 844.856 748.974C844.378 748.697 843.602 748.697 843.124 748.974L843.99 749.474L844.856 749.974ZM846.614 746.959C846.135 747.235 846.135 747.682 846.614 747.959C847.092 748.235 847.867 748.235 848.346 747.959L847.48 747.459L846.614 746.959ZM849.218 747.455C849.697 747.179 849.697 746.731 849.218 746.455C848.74 746.179 847.965 746.179 847.486 746.455L848.352 746.955L849.218 747.455ZM850.976 744.44C850.498 744.716 850.498 745.164 850.976 745.44C851.454 745.716 852.23 745.716 852.708 745.44L851.842 744.94L850.976 744.44ZM853.581 744.936C854.059 744.66 854.059 744.212 853.581 743.936C853.102 743.66 852.327 743.66 851.849 743.936L852.715 744.436L853.581 744.936ZM855.339 741.921C854.86 742.197 854.86 742.645 855.339 742.921C855.817 743.197 856.592 743.197 857.071 742.921L856.205 742.421L855.339 741.921ZM857.943 742.418C858.421 742.141 858.421 741.694 857.943 741.418C857.465 741.141 856.689 741.141 856.211 741.418L857.077 741.918L857.943 742.418ZM859.701 739.403C859.223 739.679 859.223 740.126 859.701 740.403C860.179 740.679 860.955 740.679 861.433 740.403L860.567 739.903L859.701 739.403ZM862.306 739.899C862.784 739.623 862.784 739.175 862.306 738.899C861.827 738.623 861.052 738.623 860.574 738.899L861.44 739.399L862.306 739.899ZM864.064 736.884C863.585 737.16 863.585 737.608 864.064 737.884C864.542 738.16 865.317 738.16 865.796 737.884L864.93 737.384L864.064 736.884ZM866.668 737.38C867.146 737.104 867.146 736.656 866.668 736.38C866.19 736.104 865.414 736.104 864.936 736.38L865.802 736.88L866.668 737.38ZM868.426 734.365C867.948 734.641 867.948 735.089 868.426 735.365C868.904 735.641 869.68 735.641 870.158 735.365L869.292 734.865L868.426 734.365ZM871.031 734.862C871.509 734.585 871.509 734.138 871.031 733.862C870.552 733.585 869.777 733.585 869.298 733.862L870.165 734.362L871.031 734.862ZM872.788 731.847C872.31 732.123 872.31 732.57 872.788 732.847C873.267 733.123 874.042 733.123 874.521 732.847L873.654 732.347L872.788 731.847ZM875.393 732.343C875.871 732.067 875.871 731.619 875.393 731.343C874.915 731.067 874.139 731.067 873.661 731.343L874.527 731.843L875.393 732.343ZM877.151 729.328C876.673 729.604 876.673 730.052 877.151 730.328C877.629 730.604 878.405 730.604 878.883 730.328L878.017 729.828L877.151 729.328ZM879.755 729.824C880.234 729.548 880.234 729.1 879.755 728.824C879.277 728.548 878.502 728.548 878.023 728.824L878.889 729.324L879.755 729.824ZM881.513 726.809C881.035 727.085 881.035 727.533 881.513 727.809C881.992 728.085 882.767 728.085 883.245 727.809L882.379 727.309L881.513 726.809ZM884.118 727.306C884.596 727.029 884.596 726.582 884.118 726.306C883.64 726.029 882.864 726.029 882.386 726.306L883.252 726.806L884.118 727.306ZM885.876 724.291C885.398 724.567 885.398 725.014 885.876 725.291C886.354 725.567 887.13 725.567 887.608 725.291L886.742 724.791L885.876 724.291ZM888.48 724.787C888.959 724.511 888.959 724.063 888.48 723.787C888.002 723.511 887.227 723.511 886.748 723.787L887.614 724.287L888.48 724.787ZM890.238 721.772C889.76 722.048 889.76 722.496 890.238 722.772C890.717 723.048 891.492 723.048 891.97 722.772L891.104 722.272L890.238 721.772ZM892.843 722.268C893.321 721.992 893.321 721.544 892.843 721.268C892.365 720.992 891.589 720.992 891.111 721.268L891.977 721.768L892.843 722.268ZM894.601 719.253C894.122 719.529 894.122 719.977 894.601 720.253C895.079 720.529 895.854 720.529 896.333 720.253L895.467 719.753L894.601 719.253ZM897.205 719.75C897.684 719.473 897.684 719.026 897.205 718.75C896.727 718.473 895.951 718.473 895.473 718.75L896.339 719.25L897.205 719.75ZM898.963 716.735C898.485 717.011 898.485 717.458 898.963 717.735C899.441 718.011 900.217 718.011 900.695 717.735L899.829 717.235L898.963 716.735ZM901.568 717.231C902.046 716.955 902.046 716.507 901.568 716.231C901.089 715.955 900.314 715.955 899.836 716.231L900.702 716.731L901.568 717.231ZM903.326 714.216C902.847 714.492 902.847 714.94 903.326 715.216C903.804 715.492 904.579 715.492 905.058 715.216L904.192 714.716L903.326 714.216ZM905.93 714.712C906.408 714.436 906.408 713.988 905.93 713.712C905.452 713.436 904.676 713.436 904.198 713.712L905.064 714.212L905.93 714.712ZM907.688 711.697C907.21 711.973 907.21 712.421 907.688 712.697C908.166 712.973 908.942 712.973 909.42 712.697L908.554 712.197L907.688 711.697ZM910.293 712.194C910.771 711.917 910.771 711.47 910.293 711.194C909.814 710.917 909.039 710.917 908.561 711.194L909.427 711.694L910.293 712.194ZM912.051 709.179C911.572 709.455 911.572 709.903 912.051 710.179C912.529 710.455 913.304 710.455 913.783 710.179L912.917 709.679L912.051 709.179ZM914.655 709.675C915.133 709.399 915.133 708.951 914.655 708.675C914.177 708.399 913.401 708.399 912.923 708.675L913.789 709.175L914.655 709.675ZM916.413 706.66C915.935 706.936 915.935 707.384 916.413 707.66C916.891 707.936 917.667 707.936 918.145 707.66L917.279 707.16L916.413 706.66ZM919.018 707.156C919.496 706.88 919.496 706.432 919.018 706.156C918.539 705.88 917.764 705.88 917.285 706.156L918.151 706.656L919.018 707.156ZM920.775 704.141C920.297 704.417 920.297 704.865 920.775 705.141C921.254 705.417 922.029 705.417 922.507 705.141L921.641 704.641L920.775 704.141ZM923.38 704.638C923.858 704.361 923.858 703.914 923.38 703.638C922.902 703.361 922.126 703.361 921.648 703.638L922.514 704.138L923.38 704.638ZM925.138 701.623C924.66 701.899 924.66 702.347 925.138 702.623C925.616 702.899 926.392 702.899 926.87 702.623L926.004 702.123L925.138 701.623ZM927.742 702.119C928.221 701.843 928.221 701.395 927.742 701.119C927.264 700.843 926.489 700.843 926.01 701.119L926.876 701.619L927.742 702.119ZM929.5 699.104C929.022 699.38 929.022 699.828 929.5 700.104C929.979 700.38 930.754 700.38 931.232 700.104L930.366 699.604L929.5 699.104ZM932.105 699.6C932.583 699.324 932.583 698.876 932.105 698.6C931.627 698.324 930.851 698.324 930.373 698.6L931.239 699.1L932.105 699.6ZM933.863 696.585C933.384 696.861 933.384 697.309 933.863 697.585C934.341 697.861 935.117 697.861 935.595 697.585L934.729 697.085L933.863 696.585ZM936.467 697.082C936.946 696.805 936.946 696.358 936.467 696.082C935.989 695.805 935.214 695.805 934.735 696.082L935.601 696.582L936.467 697.082ZM938.225 694.067C937.747 694.343 937.747 694.791 938.225 695.067C938.704 695.343 939.479 695.343 939.957 695.067L939.091 694.567L938.225 694.067ZM940.83 694.563C941.308 694.287 941.308 693.839 940.83 693.563C940.351 693.287 939.576 693.287 939.098 693.563L939.964 694.063L940.83 694.563ZM942.588 691.548C942.109 691.824 942.109 692.272 942.588 692.548C943.066 692.824 943.841 692.824 944.32 692.548L943.454 692.048L942.588 691.548ZM945.192 692.044C945.67 691.768 945.671 691.32 945.192 691.044C944.714 690.768 943.938 690.768 943.46 691.044L944.326 691.544L945.192 692.044ZM946.95 689.029C946.472 689.305 946.472 689.753 946.95 690.029C947.428 690.305 948.204 690.305 948.682 690.029L947.816 689.529L946.95 689.029ZM949.555 689.526C950.033 689.249 950.033 688.802 949.555 688.526C949.076 688.249 948.301 688.249 947.823 688.526L948.689 689.026L949.555 689.526ZM951.313 686.511C950.834 686.787 950.834 687.235 951.313 687.511C951.791 687.787 952.566 687.787 953.045 687.511L952.179 687.011L951.313 686.511ZM953.917 687.007C954.395 686.731 954.395 686.283 953.917 686.007C953.439 685.731 952.663 685.731 952.185 686.007L953.051 686.507L953.917 687.007ZM955.675 683.992C955.197 684.268 955.197 684.716 955.675 684.992C956.153 685.268 956.929 685.268 957.407 684.992L956.541 684.492L955.675 683.992ZM957.416 683.493C956.938 683.217 956.162 683.217 955.684 683.493C955.206 683.769 955.206 684.217 955.684 684.493L956.55 683.993L957.416 683.493ZM952.264 682.519C952.743 682.795 953.518 682.795 953.996 682.519C954.475 682.243 954.475 681.795 953.996 681.519L953.13 682.019L952.264 682.519ZM953.141 681.025C952.663 680.749 951.888 680.749 951.409 681.025C950.931 681.302 950.931 681.749 951.409 682.025L952.275 681.525L953.141 681.025ZM947.99 680.051C948.468 680.327 949.244 680.327 949.722 680.051C950.2 679.775 950.2 679.327 949.722 679.051L948.856 679.551L947.99 680.051ZM948.867 678.557C948.389 678.281 947.613 678.281 947.135 678.557C946.657 678.834 946.657 679.281 947.135 679.557L948.001 679.057L948.867 678.557ZM943.715 677.583C944.194 677.859 944.969 677.859 945.447 677.583C945.926 677.307 945.926 676.859 945.447 676.583L944.581 677.083L943.715 677.583ZM944.592 676.09C944.114 675.813 943.339 675.813 942.86 676.09C942.382 676.366 942.382 676.813 942.86 677.09L943.726 676.59L944.592 676.09ZM939.441 675.115C939.919 675.391 940.694 675.391 941.173 675.115C941.651 674.839 941.651 674.391 941.173 674.115L940.307 674.615L939.441 675.115ZM940.318 673.622C939.84 673.346 939.064 673.346 938.586 673.622C938.108 673.898 938.108 674.346 938.586 674.622L939.452 674.122L940.318 673.622ZM935.166 672.647C935.644 672.923 936.42 672.923 936.898 672.647C937.377 672.371 937.377 671.923 936.898 671.647L936.032 672.147L935.166 672.647ZM936.043 671.154C935.565 670.878 934.79 670.878 934.311 671.154C933.833 671.43 933.833 671.878 934.311 672.154L935.177 671.654L936.043 671.154ZM930.892 670.179C931.37 670.456 932.145 670.456 932.624 670.179C933.102 669.903 933.102 669.456 932.624 669.179L931.758 669.679L930.892 670.179ZM931.769 668.686C931.291 668.41 930.515 668.41 930.037 668.686C929.558 668.962 929.558 669.41 930.037 669.686L930.903 669.186L931.769 668.686ZM926.617 667.712C927.095 667.988 927.871 667.988 928.349 667.712C928.827 667.435 928.827 666.988 928.349 666.712L927.483 667.212L926.617 667.712ZM927.494 666.218C927.016 665.942 926.241 665.942 925.762 666.218C925.284 666.494 925.284 666.942 925.762 667.218L926.628 666.718L927.494 666.218ZM922.343 665.244C922.821 665.52 923.596 665.52 924.075 665.244C924.553 664.967 924.553 664.52 924.075 664.244L923.209 664.744L922.343 665.244ZM923.22 663.75C922.741 663.474 921.966 663.474 921.488 663.75C921.009 664.026 921.009 664.474 921.488 664.75L922.354 664.25L923.22 663.75ZM918.068 662.776C918.546 663.052 919.322 663.052 919.8 662.776C920.278 662.5 920.278 662.052 919.8 661.776L918.934 662.276L918.068 662.776ZM918.945 661.282C918.467 661.006 917.691 661.006 917.213 661.282C916.735 661.558 916.735 662.006 917.213 662.282L918.079 661.782L918.945 661.282ZM913.794 660.308C914.272 660.584 915.047 660.584 915.526 660.308C916.004 660.032 916.004 659.584 915.526 659.308L914.66 659.808L913.794 660.308ZM914.671 658.814C914.192 658.538 913.417 658.538 912.939 658.814C912.46 659.09 912.46 659.538 912.939 659.814L913.805 659.314L914.671 658.814ZM909.519 657.84C909.997 658.116 910.773 658.116 911.251 657.84C911.729 657.564 911.729 657.116 911.251 656.84L910.385 657.34L909.519 657.84ZM910.396 656.346C909.918 656.07 909.142 656.07 908.664 656.346C908.186 656.622 908.186 657.07 908.664 657.346L909.53 656.846L910.396 656.346ZM905.244 655.372C905.723 655.648 906.498 655.648 906.977 655.372C907.455 655.096 907.455 654.648 906.977 654.372L906.11 654.872L905.244 655.372ZM906.122 653.878C905.643 653.602 904.868 653.602 904.39 653.878C903.911 654.155 903.911 654.602 904.39 654.878L905.256 654.378L906.122 653.878ZM900.97 652.904C901.448 653.18 902.224 653.18 902.702 652.904C903.18 652.628 903.18 652.18 902.702 651.904L901.836 652.404L900.97 652.904ZM901.847 651.411C901.369 651.134 900.593 651.134 900.115 651.411C899.637 651.687 899.637 652.134 900.115 652.411L900.981 651.911L901.847 651.411ZM896.695 650.436C897.174 650.712 897.949 650.712 898.427 650.436C898.906 650.16 898.906 649.712 898.427 649.436L897.561 649.936L896.695 650.436ZM897.573 648.943C897.094 648.667 896.319 648.666 895.84 648.943C895.362 649.219 895.362 649.667 895.84 649.943L896.707 649.443L897.573 648.943ZM892.421 647.968C892.899 648.244 893.675 648.244 894.153 647.968C894.631 647.692 894.631 647.244 894.153 646.968L893.287 647.468L892.421 647.968ZM893.298 646.475C892.82 646.199 892.044 646.199 891.566 646.475C891.088 646.751 891.088 647.199 891.566 647.475L892.432 646.975L893.298 646.475ZM888.146 645.5C888.625 645.777 889.4 645.777 889.878 645.5C890.357 645.224 890.357 644.777 889.878 644.5L889.012 645L888.146 645.5ZM889.023 644.007C888.545 643.731 887.77 643.731 887.291 644.007C886.813 644.283 886.813 644.731 887.291 645.007L888.157 644.507L889.023 644.007ZM883.872 643.033C884.35 643.309 885.126 643.309 885.604 643.033C886.082 642.756 886.082 642.309 885.604 642.033L884.738 642.533L883.872 643.033ZM884.749 641.539C884.271 641.263 883.495 641.263 883.017 641.539C882.539 641.815 882.539 642.263 883.017 642.539L883.883 642.039L884.749 641.539ZM879.597 640.565C880.076 640.841 880.851 640.841 881.329 640.565C881.808 640.288 881.808 639.841 881.329 639.565L880.463 640.065L879.597 640.565ZM880.474 639.071C879.996 638.795 879.221 638.795 878.742 639.071C878.264 639.347 878.264 639.795 878.742 640.071L879.608 639.571L880.474 639.071ZM875.323 638.097C875.801 638.373 876.576 638.373 877.055 638.097C877.533 637.821 877.533 637.373 877.055 637.097L876.189 637.597L875.323 638.097ZM876.2 636.603C875.722 636.327 874.946 636.327 874.468 636.603C873.99 636.879 873.99 637.327 874.468 637.603L875.334 637.103L876.2 636.603ZM871.048 635.629C871.526 635.905 872.302 635.905 872.78 635.629C873.259 635.353 873.259 634.905 872.78 634.629L871.914 635.129L871.048 635.629ZM871.925 634.135C871.447 633.859 870.672 633.859 870.193 634.135C869.715 634.411 869.715 634.859 870.193 635.135L871.059 634.635L871.925 634.135ZM866.774 633.161C867.252 633.437 868.027 633.437 868.506 633.161C868.984 632.885 868.984 632.437 868.506 632.161L867.64 632.661L866.774 633.161ZM867.651 631.667C867.173 631.391 866.397 631.391 865.919 631.667C865.44 631.943 865.44 632.391 865.919 632.667L866.785 632.167L867.651 631.667ZM862.499 630.693C862.977 630.969 863.753 630.969 864.231 630.693C864.709 630.417 864.709 629.969 864.231 629.693L863.365 630.193L862.499 630.693ZM863.376 629.199C862.898 628.923 862.123 628.923 861.644 629.199C861.166 629.476 861.166 629.923 861.644 630.199L862.51 629.699L863.376 629.199ZM858.225 628.225C858.703 628.501 859.478 628.501 859.957 628.225C860.435 627.949 860.435 627.501 859.957 627.225L859.091 627.725L858.225 628.225ZM859.102 626.732C858.623 626.455 857.848 626.455 857.37 626.732C856.891 627.008 856.891 627.455 857.37 627.732L858.236 627.232L859.102 626.732ZM853.95 625.757C854.428 626.033 855.204 626.033 855.682 625.757C856.16 625.481 856.16 625.033 855.682 624.757L854.816 625.257L853.95 625.757ZM854.827 624.264C854.349 623.987 853.573 623.987 853.095 624.264C852.617 624.54 852.617 624.987 853.095 625.264L853.961 624.764L854.827 624.264ZM849.676 623.289C850.154 623.565 850.929 623.565 851.408 623.289C851.886 623.013 851.886 622.565 851.408 622.289L850.542 622.789L849.676 623.289ZM850.553 621.796C850.074 621.52 849.299 621.52 848.821 621.796C848.342 622.072 848.342 622.52 848.821 622.796L849.687 622.296L850.553 621.796ZM845.401 620.821C845.879 621.098 846.655 621.098 847.133 620.821C847.611 620.545 847.611 620.098 847.133 619.821L846.267 620.321L845.401 620.821ZM632.079 743.489L631.213 743.989L631.641 744.236L632.507 743.736L633.373 743.236L632.945 742.989L632.079 743.489ZM635.926 745.71L635.06 746.21L635.915 746.704L636.781 746.204L637.647 745.704L636.792 745.21L635.926 745.71ZM640.201 748.178L639.335 748.678L640.19 749.172L641.056 748.672L641.922 748.172L641.067 747.678L640.201 748.178ZM644.475 750.646L643.609 751.146L644.464 751.64L645.33 751.14L646.196 750.64L645.341 750.146L644.475 750.646ZM648.75 753.114L647.884 753.614L648.739 754.108L649.605 753.608L650.471 753.108L649.616 752.614L648.75 753.114ZM653.024 755.582L652.158 756.082L653.013 756.576L653.879 756.076L654.745 755.576L653.89 755.082L653.024 755.582ZM657.299 758.05L656.433 758.55L657.288 759.043L658.154 758.543L659.02 758.043L658.165 757.55L657.299 758.05ZM661.573 760.518L660.707 761.018L661.562 761.511L662.428 761.011L663.294 760.511L662.439 760.018L661.573 760.518ZM665.848 762.986L664.982 763.486L665.837 763.979L666.703 763.479L667.569 762.979L666.714 762.486L665.848 762.986ZM670.122 765.454L669.256 765.954L670.111 766.447L670.977 765.947L671.843 765.447L670.988 764.954L670.122 765.454ZM674.397 767.921L673.531 768.421L674.386 768.915L675.252 768.415L676.118 767.915L675.263 767.421L674.397 767.921ZM678.672 770.389L677.805 770.889L678.66 771.383L679.526 770.883L680.392 770.383L679.538 769.889L678.672 770.389ZM682.946 772.857L682.08 773.357L682.935 773.851L683.801 773.351L684.667 772.851L683.812 772.357L682.946 772.857ZM687.221 775.325L686.355 775.825L687.209 776.319L688.075 775.819L688.942 775.319L688.087 774.825L687.221 775.325ZM691.495 777.793L690.629 778.293L691.484 778.787L692.35 778.287L693.216 777.787L692.361 777.293L691.495 777.793ZM695.77 780.261L694.904 780.761L695.759 781.255L696.625 780.755L697.491 780.255L696.636 779.761L695.77 780.261ZM700.044 782.729L699.178 783.229L700.033 783.722L700.899 783.222L701.765 782.722L700.91 782.229L700.044 782.729ZM704.319 785.197L703.453 785.697L704.308 786.19L705.174 785.69L706.04 785.19L705.185 784.697L704.319 785.197ZM708.593 787.665L707.727 788.165L708.582 788.658L709.448 788.158L710.314 787.658L709.459 787.165L708.593 787.665ZM712.868 790.133L712.002 790.633L712.857 791.126L713.723 790.626L714.589 790.126L713.734 789.633L712.868 790.133ZM717.142 792.601L716.276 793.101L717.131 793.594L717.997 793.094L718.863 792.594L718.008 792.101L717.142 792.601ZM721.417 795.068L720.551 795.568L721.406 796.062L722.272 795.562L723.138 795.062L722.283 794.568L721.417 795.068ZM725.691 797.536L724.825 798.036L725.68 798.53L726.546 798.03L727.412 797.53L726.557 797.036L725.691 797.536ZM729.966 800.004L729.1 800.504L729.955 800.998L730.821 800.498L731.687 799.998L730.832 799.504L729.966 800.004ZM734.24 802.472L733.374 802.972L734.229 803.466L735.095 802.966L735.961 802.466L735.106 801.972L734.24 802.472ZM738.515 804.94L737.649 805.44L738.504 805.934L739.37 805.434L740.236 804.934L739.381 804.44L738.515 804.94ZM742.79 807.408L741.923 807.908L742.351 808.155L743.217 807.655L744.083 807.155L743.656 806.908L742.79 807.408ZM743.217 807.655L744.083 808.155L744.519 807.903L743.653 807.403L742.787 806.903L742.351 807.155L743.217 807.655ZM747.143 805.388L748.009 805.888L748.882 805.384L748.016 804.884L747.15 804.384L746.277 804.888L747.143 805.388ZM751.506 802.869L752.372 803.369L753.244 802.866L752.378 802.366L751.512 801.866L750.64 802.369L751.506 802.869ZM755.868 800.351L756.734 800.851L757.607 800.347L756.741 799.847L755.875 799.347L755.002 799.851L755.868 800.351ZM760.231 797.832L761.097 798.332L761.969 797.828L761.103 797.328L760.237 796.828L759.365 797.332L760.231 797.832ZM764.593 795.313L765.459 795.813L766.332 795.31L765.465 794.81L764.599 794.31L763.727 794.813L764.593 795.313ZM768.955 792.795L769.821 793.295L770.694 792.791L769.828 792.291L768.962 791.791L768.089 792.295L768.955 792.795ZM773.318 790.276L774.184 790.776L775.056 790.272L774.19 789.772L773.324 789.272L772.452 789.776L773.318 790.276ZM777.68 787.757L778.546 788.257L779.419 787.754L778.553 787.254L777.687 786.754L776.814 787.257L777.68 787.757ZM782.043 785.239L782.909 785.739L783.781 785.235L782.915 784.735L782.049 784.235L781.177 784.739L782.043 785.239ZM786.405 782.72L787.271 783.22L788.144 782.716L787.278 782.216L786.412 781.716L785.539 782.22L786.405 782.72ZM790.768 780.201L791.634 780.701L792.506 780.198L791.64 779.698L790.774 779.198L789.902 779.701L790.768 780.201ZM795.13 777.683L795.996 778.183L796.869 777.679L796.003 777.179L795.137 776.679L794.264 777.183L795.13 777.683ZM799.493 775.164L800.359 775.664L801.231 775.16L800.365 774.66L799.499 774.16L798.627 774.664L799.493 775.164ZM803.855 772.645L804.721 773.145L805.594 772.642L804.728 772.142L803.862 771.642L802.989 772.145L803.855 772.645ZM808.218 770.127L809.084 770.627L809.956 770.123L809.09 769.623L808.224 769.123L807.352 769.627L808.218 770.127ZM812.58 767.608L813.446 768.108L814.319 767.604L813.453 767.104L812.587 766.604L811.714 767.108L812.58 767.608ZM816.943 765.089L817.809 765.589L818.681 765.086L817.815 764.586L816.949 764.086L816.076 764.589L816.943 765.089ZM821.305 762.571L822.171 763.071L823.044 762.567L822.177 762.067L821.311 761.567L820.439 762.071L821.305 762.571ZM825.667 760.052L826.533 760.552L827.406 760.048L826.54 759.548L825.674 759.048L824.801 759.552L825.667 760.052ZM830.03 757.533L830.896 758.033L831.768 757.53L830.902 757.03L830.036 756.53L829.164 757.033L830.03 757.533ZM834.392 755.015L835.258 755.515L836.131 755.011L835.265 754.511L834.399 754.011L833.526 754.515L834.392 755.015ZM838.755 752.496L839.621 752.996L840.493 752.492L839.627 751.992L838.761 751.492L837.889 751.996L838.755 752.496ZM843.117 749.977L843.983 750.477L844.856 749.974L843.99 749.474L843.124 748.974L842.251 749.477L843.117 749.977ZM847.48 747.459L848.346 747.959L849.218 747.455L848.352 746.955L847.486 746.455L846.614 746.959L847.48 747.459ZM851.842 744.94L852.708 745.44L853.581 744.936L852.715 744.436L851.849 743.936L850.976 744.44L851.842 744.94ZM856.205 742.421L857.071 742.921L857.943 742.418L857.077 741.918L856.211 741.418L855.339 741.921L856.205 742.421ZM860.567 739.903L861.433 740.403L862.306 739.899L861.44 739.399L860.574 738.899L859.701 739.403L860.567 739.903ZM864.93 737.384L865.796 737.884L866.668 737.38L865.802 736.88L864.936 736.38L864.064 736.884L864.93 737.384ZM869.292 734.865L870.158 735.365L871.031 734.862L870.165 734.362L869.298 733.862L868.426 734.365L869.292 734.865ZM873.654 732.347L874.521 732.847L875.393 732.343L874.527 731.843L873.661 731.343L872.788 731.847L873.654 732.347ZM878.017 729.828L878.883 730.328L879.755 729.824L878.889 729.324L878.023 728.824L877.151 729.328L878.017 729.828ZM882.379 727.309L883.245 727.809L884.118 727.306L883.252 726.806L882.386 726.306L881.513 726.809L882.379 727.309ZM886.742 724.791L887.608 725.291L888.48 724.787L887.614 724.287L886.748 723.787L885.876 724.291L886.742 724.791ZM891.104 722.272L891.97 722.772L892.843 722.268L891.977 721.768L891.111 721.268L890.238 721.772L891.104 722.272ZM895.467 719.753L896.333 720.253L897.205 719.75L896.339 719.25L895.473 718.75L894.601 719.253L895.467 719.753ZM899.829 717.235L900.695 717.735L901.568 717.231L900.702 716.731L899.836 716.231L898.963 716.735L899.829 717.235ZM904.192 714.716L905.058 715.216L905.93 714.712L905.064 714.212L904.198 713.712L903.326 714.216L904.192 714.716ZM908.554 712.197L909.42 712.697L910.293 712.194L909.427 711.694L908.561 711.194L907.688 711.697L908.554 712.197ZM912.917 709.679L913.783 710.179L914.655 709.675L913.789 709.175L912.923 708.675L912.051 709.179L912.917 709.679ZM917.279 707.16L918.145 707.66L919.018 707.156L918.151 706.656L917.285 706.156L916.413 706.66L917.279 707.16ZM921.641 704.641L922.507 705.141L923.38 704.638L922.514 704.138L921.648 703.638L920.775 704.141L921.641 704.641ZM926.004 702.123L926.87 702.623L927.742 702.119L926.876 701.619L926.01 701.119L925.138 701.623L926.004 702.123ZM930.366 699.604L931.232 700.104L932.105 699.6L931.239 699.1L930.373 698.6L929.5 699.104L930.366 699.604ZM934.729 697.085L935.595 697.585L936.467 697.082L935.601 696.582L934.735 696.082L933.863 696.585L934.729 697.085ZM939.091 694.567L939.957 695.067L940.83 694.563L939.964 694.063L939.098 693.563L938.225 694.067L939.091 694.567ZM943.454 692.048L944.32 692.548L945.192 692.044L944.326 691.544L943.46 691.044L942.588 691.548L943.454 692.048ZM947.816 689.529L948.682 690.029L949.555 689.526L948.689 689.026L947.823 688.526L946.95 689.029L947.816 689.529ZM952.179 687.011L953.045 687.511L953.917 687.007L953.051 686.507L952.185 686.007L951.313 686.511L952.179 687.011ZM956.541 684.492L957.407 684.992L957.843 684.74L956.977 684.24L956.111 683.74L955.675 683.992L956.541 684.492ZM956.977 684.24L957.843 683.74L957.416 683.493L956.55 683.993L955.684 684.493L956.111 684.74L956.977 684.24ZM953.13 682.019L953.996 681.519L953.141 681.025L952.275 681.525L951.409 682.025L952.264 682.519L953.13 682.019ZM948.856 679.551L949.722 679.051L948.867 678.557L948.001 679.057L947.135 679.557L947.99 680.051L948.856 679.551ZM944.581 677.083L945.447 676.583L944.592 676.09L943.726 676.59L942.86 677.09L943.715 677.583L944.581 677.083ZM940.307 674.615L941.173 674.115L940.318 673.622L939.452 674.122L938.586 674.622L939.441 675.115L940.307 674.615ZM936.032 672.147L936.898 671.647L936.043 671.154L935.177 671.654L934.311 672.154L935.166 672.647L936.032 672.147ZM931.758 669.679L932.624 669.179L931.769 668.686L930.903 669.186L930.037 669.686L930.892 670.179L931.758 669.679ZM927.483 667.212L928.349 666.712L927.494 666.218L926.628 666.718L925.762 667.218L926.617 667.712L927.483 667.212ZM923.209 664.744L924.075 664.244L923.22 663.75L922.354 664.25L921.488 664.75L922.343 665.244L923.209 664.744ZM918.934 662.276L919.8 661.776L918.945 661.282L918.079 661.782L917.213 662.282L918.068 662.776L918.934 662.276ZM914.66 659.808L915.526 659.308L914.671 658.814L913.805 659.314L912.939 659.814L913.794 660.308L914.66 659.808ZM910.385 657.34L911.251 656.84L910.396 656.346L909.53 656.846L908.664 657.346L909.519 657.84L910.385 657.34ZM906.11 654.872L906.977 654.372L906.122 653.878L905.256 654.378L904.39 654.878L905.244 655.372L906.11 654.872ZM901.836 652.404L902.702 651.904L901.847 651.411L900.981 651.911L900.115 652.411L900.97 652.904L901.836 652.404ZM897.561 649.936L898.427 649.436L897.573 648.943L896.707 649.443L895.84 649.943L896.695 650.436L897.561 649.936ZM893.287 647.468L894.153 646.968L893.298 646.475L892.432 646.975L891.566 647.475L892.421 647.968L893.287 647.468ZM889.012 645L889.878 644.5L889.023 644.007L888.157 644.507L887.291 645.007L888.146 645.5L889.012 645ZM884.738 642.533L885.604 642.033L884.749 641.539L883.883 642.039L883.017 642.539L883.872 643.033L884.738 642.533ZM880.463 640.065L881.329 639.565L880.474 639.071L879.608 639.571L878.742 640.071L879.597 640.565L880.463 640.065ZM876.189 637.597L877.055 637.097L876.2 636.603L875.334 637.103L874.468 637.603L875.323 638.097L876.189 637.597ZM871.914 635.129L872.78 634.629L871.925 634.135L871.059 634.635L870.193 635.135L871.048 635.629L871.914 635.129ZM867.64 632.661L868.506 632.161L867.651 631.667L866.785 632.167L865.919 632.667L866.774 633.161L867.64 632.661ZM863.365 630.193L864.231 629.693L863.376 629.199L862.51 629.699L861.644 630.199L862.499 630.693L863.365 630.193ZM859.091 627.725L859.957 627.225L859.102 626.732L858.236 627.232L857.37 627.732L858.225 628.225L859.091 627.725ZM854.816 625.257L855.682 624.757L854.827 624.264L853.961 624.764L853.095 625.264L853.95 625.757L854.816 625.257ZM850.542 622.789L851.408 622.289L850.553 621.796L849.687 622.296L848.821 622.796L849.676 623.289L850.542 622.789ZM846.267 620.321L847.133 619.821L846.706 619.575L845.84 620.075L844.974 620.575L845.401 620.821L846.267 620.321Z" fill="#8C9C9D"/>
|
|
124
|
+
<g id="4-conscience">
|
|
125
|
+
<g id="Group 148">
|
|
126
|
+
<g id="Group 145">
|
|
127
|
+
<g id="Union_4">
|
|
128
|
+
<mask id="path-88-inside-4_140_2201" fill="white">
|
|
129
|
+
<path d="M661.749 727.932V744.189L633.749 760.355L605.749 744.189V727.932L633.749 711.766L661.749 727.932Z"/>
|
|
130
|
+
</mask>
|
|
131
|
+
<path d="M661.749 727.932V744.189L633.749 760.355L605.749 744.189V727.932L633.749 711.766L661.749 727.932Z" fill="#F8F7FF"/>
|
|
132
|
+
<path d="M661.749 727.932H663.749V726.777L662.749 726.2L661.749 727.932ZM661.749 744.189L662.749 745.921L663.749 745.344V744.189H661.749ZM633.749 760.355L632.749 762.088L633.749 762.665L634.749 762.088L633.749 760.355ZM605.749 744.189H603.749V745.344L604.749 745.921L605.749 744.189ZM605.749 727.932L604.749 726.2L603.749 726.777V727.932H605.749ZM633.749 711.766L634.749 710.034L633.749 709.456L632.749 710.034L633.749 711.766ZM661.749 727.932H659.749V744.189H661.749H663.749V727.932H661.749ZM661.749 744.189L660.749 742.457L632.749 758.623L633.749 760.355L634.749 762.088L662.749 745.921L661.749 744.189ZM633.749 760.355L634.749 758.623L606.749 742.457L605.749 744.189L604.749 745.921L632.749 762.088L633.749 760.355ZM605.749 744.189H607.749V727.932H605.749H603.749V744.189H605.749ZM605.749 727.932L606.749 729.664L634.749 713.498L633.749 711.766L632.749 710.034L604.749 726.2L605.749 727.932ZM633.749 711.766L632.749 713.498L660.749 729.664L661.749 727.932L662.749 726.2L634.749 710.034L633.749 711.766Z" fill="#5F52FF" mask="url(#path-88-inside-4_140_2201)"/>
|
|
133
|
+
</g>
|
|
134
|
+
<rect id="Rectangle 127" x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 605.981 728.798)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
135
|
+
<path id="Vector 149" d="M633.749 743.932L633.749 757.932" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
136
|
+
</g>
|
|
137
|
+
<g id="Group 146">
|
|
138
|
+
<g id="Union_5">
|
|
139
|
+
<mask id="path-92-inside-5_140_2201" fill="white">
|
|
140
|
+
<path d="M661.749 703.932V720.189L633.749 736.355L605.749 720.189V703.932L633.749 687.766L661.749 703.932Z"/>
|
|
141
|
+
</mask>
|
|
142
|
+
<path d="M661.749 703.932V720.189L633.749 736.355L605.749 720.189V703.932L633.749 687.766L661.749 703.932Z" fill="#F8F7FF"/>
|
|
143
|
+
<path d="M661.749 703.932H663.749V702.777L662.749 702.2L661.749 703.932ZM661.749 720.189L662.749 721.921L663.749 721.344V720.189H661.749ZM633.749 736.355L632.749 738.088L633.749 738.665L634.749 738.088L633.749 736.355ZM605.749 720.189H603.749V721.344L604.749 721.921L605.749 720.189ZM605.749 703.932L604.749 702.2L603.749 702.777V703.932H605.749ZM633.749 687.766L634.749 686.034L633.749 685.456L632.749 686.034L633.749 687.766ZM661.749 703.932H659.749V720.189H661.749H663.749V703.932H661.749ZM661.749 720.189L660.749 718.457L632.749 734.623L633.749 736.355L634.749 738.088L662.749 721.921L661.749 720.189ZM633.749 736.355L634.749 734.623L606.749 718.457L605.749 720.189L604.749 721.921L632.749 738.088L633.749 736.355ZM605.749 720.189H607.749V703.932H605.749H603.749V720.189H605.749ZM605.749 703.932L606.749 705.664L634.749 689.498L633.749 687.766L632.749 686.034L604.749 702.2L605.749 703.932ZM633.749 687.766L632.749 689.498L660.749 705.664L661.749 703.932L662.749 702.2L634.749 686.034L633.749 687.766Z" fill="#5F52FF" mask="url(#path-92-inside-5_140_2201)"/>
|
|
144
|
+
</g>
|
|
145
|
+
<rect id="Rectangle 127_2" x="1.73205" width="30.3316" height="30.3316" transform="matrix(0.866025 -0.5 0.866025 0.5 605.981 704.798)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
146
|
+
<path id="Vector 149_2" d="M633.749 719.932L633.749 733.932" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
147
|
+
</g>
|
|
148
|
+
<g id="Group 147">
|
|
149
|
+
<g id="Union_6">
|
|
150
|
+
<mask id="path-96-inside-6_140_2201" fill="white">
|
|
151
|
+
<path d="M664.749 676.061L664.747 676.062H664.749V694.062L633.749 711.959L602.749 694.062V676.062V676.061L633.749 658.163L664.749 676.061Z"/>
|
|
152
|
+
</mask>
|
|
153
|
+
<path d="M664.749 676.061L664.747 676.062H664.749V694.062L633.749 711.959L602.749 694.062V676.062V676.061L633.749 658.163L664.749 676.061Z" fill="#F8F7FF"/>
|
|
154
|
+
<path d="M664.749 676.061L665.643 677.849L668.968 676.187L665.749 674.328L664.749 676.061ZM664.747 676.062L663.853 674.273L664.747 678.062V676.062ZM664.749 676.062H666.749V674.062H664.749V676.062ZM664.749 694.062L665.749 695.794L666.749 695.216V694.062H664.749ZM633.749 711.959L632.749 713.691L633.749 714.268L634.749 713.691L633.749 711.959ZM602.749 694.062H600.749V695.216L601.749 695.794L602.749 694.062ZM602.749 676.061L601.749 674.328L600.749 674.906V676.061H602.749ZM633.749 658.163L634.749 656.431L633.749 655.854L632.749 656.431L633.749 658.163ZM664.749 676.061L663.855 674.272L663.853 674.273L664.747 676.062L665.641 677.85L665.643 677.849L664.749 676.061ZM664.747 676.062V678.062H664.749V676.062V674.062H664.747V676.062ZM664.749 676.062H662.749V694.062H664.749H666.749V676.062H664.749ZM664.749 694.062L663.749 692.329L632.749 710.227L633.749 711.959L634.749 713.691L665.749 695.794L664.749 694.062ZM633.749 711.959L634.749 710.227L603.749 692.329L602.749 694.062L601.749 695.794L632.749 713.691L633.749 711.959ZM602.749 694.062H604.749V676.062H602.749H600.749V694.062H602.749ZM602.749 676.062H604.749V676.061H602.749H600.749V676.062H602.749ZM602.749 676.061L603.749 677.793L634.749 659.895L633.749 658.163L632.749 656.431L601.749 674.328L602.749 676.061ZM633.749 658.163L632.749 659.895L663.749 677.793L664.749 676.061L665.749 674.328L634.749 656.431L633.749 658.163Z" fill="#5F52FF" mask="url(#path-96-inside-6_140_2201)"/>
|
|
155
|
+
</g>
|
|
156
|
+
<rect id="Rectangle 127_3" x="1.73205" width="33.7957" height="33.7957" transform="matrix(0.866025 -0.5 0.866025 0.5 602.981 676.928)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
157
|
+
<path id="Vector 149_3" d="M633.749 693.775L633.749 709.275" stroke="#5F52FF" stroke-width="2" stroke-linecap="square"/>
|
|
158
|
+
</g>
|
|
159
|
+
<rect id="Rectangle 120_4" x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 597.481 668.632)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
160
|
+
<path id="Vector 142_4" d="M633.689 671.766V686.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
161
|
+
<rect id="Rectangle 118_5" x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 611.379 660.608)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
162
|
+
</g>
|
|
163
|
+
</g>
|
|
164
|
+
<g id="Group 198">
|
|
165
|
+
<circle id="Ellipse 13_2" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 787.552 318.508)" fill="#210C4B"/>
|
|
166
|
+
<path id="12" d="M805.525 319.804C805.057 320.074 804.563 320.266 804.044 320.379C803.524 320.492 803.025 320.524 802.546 320.474C802.061 320.421 801.633 320.287 801.264 320.074C800.912 319.871 800.698 319.644 800.623 319.394C800.542 319.141 800.594 318.877 800.779 318.604C800.392 318.667 800.02 318.676 799.662 318.629C799.31 318.579 798.983 318.467 798.683 318.294C798.337 318.094 798.123 317.867 798.042 317.614C797.967 317.357 798.019 317.097 798.198 316.834C798.383 316.567 798.677 316.317 799.082 316.084C799.48 315.854 799.907 315.687 800.363 315.584C800.825 315.477 801.278 315.446 801.723 315.489C802.167 315.532 802.563 315.654 802.909 315.854C803.21 316.027 803.4 316.217 803.481 316.424C803.562 316.631 803.55 316.844 803.446 317.064C803.914 316.961 804.367 316.932 804.806 316.979C805.239 317.022 805.632 317.146 805.984 317.349C806.353 317.562 806.584 317.809 806.677 318.089C806.769 318.362 806.714 318.651 806.512 318.954C806.316 319.254 805.987 319.537 805.525 319.804ZM804.52 319.224C804.867 319.024 805.048 318.816 805.066 318.599C805.083 318.382 804.942 318.187 804.641 318.014C804.347 317.844 804.012 317.764 803.637 317.774C803.262 317.784 802.901 317.889 802.554 318.089C802.208 318.289 802.023 318.499 802 318.719C801.983 318.936 802.121 319.129 802.416 319.299C802.716 319.472 803.054 319.554 803.429 319.544C803.804 319.534 804.168 319.427 804.52 319.224ZM801.714 317.604C802.003 317.437 802.159 317.261 802.182 317.074C802.205 316.881 802.09 316.711 801.835 316.564C801.581 316.417 801.287 316.351 800.952 316.364C800.623 316.374 800.314 316.462 800.025 316.629C799.737 316.796 799.581 316.976 799.558 317.169C799.541 317.359 799.659 317.527 799.913 317.674C800.167 317.821 800.459 317.889 800.788 317.879C801.111 317.866 801.42 317.774 801.714 317.604Z" fill="#F8F7FF"/>
|
|
167
|
+
</g>
|
|
168
|
+
<g id="Group 199">
|
|
169
|
+
<circle id="Ellipse 13_3" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 1139.55 508.508)" fill="#210C4B"/>
|
|
170
|
+
<path id="12_2" d="M1151.57 507.151L1150.56 507.736L1149.49 507.121L1151.77 505.806L1158.01 509.406L1156.74 510.136L1151.57 507.151Z" fill="#F8F7FF"/>
|
|
171
|
+
</g>
|
|
172
|
+
<g id="Group 206">
|
|
173
|
+
<circle id="Ellipse 13_4" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 593.552 758.508)" fill="#210C4B"/>
|
|
174
|
+
<path id="12_3" d="M610.624 758.724L607.628 760.454L606.459 759.779L605.229 756.119L606.519 755.374L607.836 759.104L609.602 758.084L608.139 757.239L609.316 756.559L610.78 757.404L611.62 756.919L612.685 757.534L611.889 757.994L613.17 758.734L611.906 759.464L610.624 758.724Z" fill="#F8F7FF"/>
|
|
175
|
+
</g>
|
|
176
|
+
<g id="Group 207">
|
|
177
|
+
<circle id="Ellipse 13_5" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 425.552 683.508)" fill="#210C4B"/>
|
|
178
|
+
<path id="12_4" d="M443.095 685.052C442.459 685.419 441.778 685.619 441.051 685.652C440.323 685.686 439.645 685.557 439.016 685.267L440.219 684.572C440.502 684.696 440.811 684.751 441.146 684.737C441.481 684.724 441.793 684.634 442.081 684.467C442.295 684.344 442.431 684.209 442.488 684.062C442.552 683.912 442.54 683.762 442.454 683.612C442.361 683.459 442.205 683.319 441.986 683.192C441.761 683.062 441.518 682.972 441.259 682.922C440.999 682.872 440.742 682.867 440.488 682.907C440.234 682.941 440 683.019 439.786 683.142C439.55 683.279 439.405 683.422 439.353 683.572C439.307 683.719 439.33 683.876 439.423 684.042L438.253 684.717L435.162 682.312L438.73 680.252L439.795 680.867L437.206 682.362L438.366 683.272C438.401 683.126 438.479 682.987 438.6 682.857C438.727 682.724 438.889 682.601 439.085 682.487C439.529 682.231 440 682.069 440.496 682.002C440.993 681.929 441.472 681.939 441.934 682.032C442.402 682.122 442.823 682.276 443.198 682.492C443.626 682.739 443.909 683.012 444.047 683.312C444.186 683.612 444.171 683.914 444.004 684.217C443.836 684.521 443.533 684.799 443.095 685.052Z" fill="#F8F7FF"/>
|
|
179
|
+
</g>
|
|
180
|
+
<g id="6-handler-execution">
|
|
181
|
+
<g id="6-handler">
|
|
182
|
+
<path id="Rectangle 121_4" d="M546.504 427.252L594.566 455L559.925 475L511.863 447.252L546.504 427.252Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
183
|
+
<rect id="Rectangle 120_5" x="1.73205" width="40" height="55.2976" transform="matrix(0.866025 -0.5 0.866025 0.5 510.536 440.218)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
184
|
+
<rect id="Rectangle 119_3" x="1.73205" width="40" height="54.9647" transform="matrix(0.866025 -0.5 0.866025 0.5 510.824 432.384)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
185
|
+
<path id="Vector 142_5" d="M559.992 443V458" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
186
|
+
<rect id="Rectangle 118_6" x="1.73205" width="23.9521" height="38.9119" transform="matrix(0.866025 -0.5 0.866025 0.5 524.726 424.362)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
187
|
+
</g>
|
|
188
|
+
</g>
|
|
189
|
+
<path id="Handler
Execution" d="M579.925 471.21L581.316 470.407L584.03 471.974L587.079 470.214L584.364 468.647L585.755 467.844L592.614 471.804L591.223 472.607L588.336 470.94L585.288 472.7L588.174 474.367L586.784 475.17L579.925 471.21ZM595.733 470.135C595.187 470.451 594.618 470.628 594.028 470.669C593.431 470.705 592.894 470.586 592.418 470.311C592.125 470.143 591.948 469.963 591.884 469.772C591.821 469.574 591.865 469.358 592.018 469.123C592.176 468.885 592.443 468.614 592.818 468.309L593.98 467.352L593.723 467.204C593.5 467.075 593.269 467.019 593.027 467.033C592.786 467.048 592.513 467.143 592.208 467.319C591.922 467.484 591.751 467.653 591.694 467.825C591.643 467.994 591.735 468.15 591.97 468.293L590.684 469.035C590.131 468.709 589.919 468.344 590.046 467.941C590.173 467.53 590.563 467.136 591.217 466.758C591.922 466.351 592.583 466.12 593.199 466.065C593.821 466.007 594.367 466.113 594.837 466.384L598.419 468.452L597.19 469.162L596.638 468.843C596.67 469.096 596.609 469.329 596.457 469.541C596.304 469.747 596.063 469.945 595.733 470.135ZM595.123 469.409C595.339 469.285 595.498 469.149 595.599 469.002C595.707 468.852 595.736 468.696 595.685 468.535C595.634 468.373 595.485 468.221 595.237 468.078L594.818 467.836L593.894 468.645C593.647 468.854 593.504 469.024 593.466 469.156C593.421 469.285 593.497 469.406 593.694 469.519C593.885 469.629 594.104 469.679 594.351 469.668C594.599 469.649 594.856 469.563 595.123 469.409ZM594.712 464.872L595.97 464.146L596.646 464.537C596.589 464.291 596.62 464.053 596.741 463.822C596.855 463.587 597.081 463.373 597.418 463.178C597.792 462.962 598.189 462.825 598.608 462.766C599.027 462.7 599.453 462.715 599.885 462.81C600.323 462.902 600.749 463.067 601.161 463.305L604.248 465.087L602.962 465.829L600.028 464.135C599.717 463.956 599.399 463.857 599.075 463.838C598.745 463.816 598.421 463.897 598.103 464.08C597.926 464.183 597.795 464.306 597.713 464.449C597.63 464.585 597.624 464.739 597.694 464.911C597.77 465.08 597.954 465.248 598.246 465.417L600.961 466.984L599.666 467.732L594.712 464.872ZM607.725 463.212C607.261 463.479 606.753 463.644 606.2 463.707C605.642 463.765 605.083 463.732 604.524 463.608C603.959 463.479 603.428 463.272 602.933 462.986C602.431 462.697 602.072 462.39 601.856 462.068C601.634 461.741 601.577 461.419 601.685 461.1C601.793 460.781 602.079 460.487 602.542 460.22C602.873 460.029 603.222 459.897 603.59 459.824C603.965 459.747 604.352 459.725 604.752 459.758L602.257 458.317L603.552 457.569L610.411 461.529L609.154 462.255L608.496 461.875C608.572 462.117 608.55 462.35 608.43 462.574C608.309 462.797 608.074 463.01 607.725 463.212ZM606.982 462.409C607.248 462.255 607.407 462.09 607.458 461.914C607.509 461.738 607.467 461.56 607.334 461.38C607.194 461.197 606.969 461.015 606.658 460.836C606.346 460.656 606.032 460.526 605.715 460.445C605.397 460.365 605.089 460.341 604.79 460.374C604.486 460.403 604.2 460.495 603.933 460.649C603.66 460.806 603.498 460.973 603.447 461.149C603.39 461.322 603.431 461.499 603.571 461.683C603.717 461.862 603.946 462.042 604.257 462.222C604.568 462.401 604.879 462.533 605.191 462.618C605.502 462.695 605.81 462.719 606.115 462.689C606.419 462.66 606.708 462.566 606.982 462.409ZM604.919 456.78L606.214 456.032L613.073 459.992L611.777 460.74L604.919 456.78ZM616.838 457.95C616.33 458.243 615.774 458.436 615.171 458.527C614.568 458.612 613.974 458.599 613.39 458.489C612.799 458.375 612.256 458.175 611.761 457.889C611.265 457.603 610.919 457.29 610.722 456.949C610.525 456.608 610.503 456.265 610.656 455.92C610.814 455.572 611.148 455.251 611.656 454.958C612.17 454.661 612.726 454.468 613.323 454.38C613.914 454.289 614.511 454.307 615.114 454.435C615.717 454.556 616.292 454.775 616.838 455.09L617.124 455.255L613.447 457.378C613.726 457.503 614.006 457.587 614.285 457.631C614.565 457.668 614.838 457.668 615.104 457.631C615.371 457.587 615.616 457.501 615.838 457.372C616.117 457.211 616.295 457.046 616.371 456.877C616.448 456.701 616.435 456.525 616.333 456.349L617.591 455.623C617.927 456.008 618.035 456.408 617.915 456.822C617.794 457.229 617.435 457.605 616.838 457.95ZM614.933 455.486C614.526 455.325 614.126 455.248 613.733 455.255C613.333 455.259 612.974 455.352 612.656 455.535C612.332 455.722 612.167 455.931 612.161 456.162C612.148 456.39 612.281 456.621 612.561 456.855L614.933 455.486ZM615.41 452.923L616.667 452.197L617.525 452.692C617.359 452.413 617.331 452.162 617.439 451.938C617.54 451.711 617.756 451.502 618.087 451.311L618.487 451.08L619.678 451.768L619.22 452.032C618.928 452.2 618.728 452.371 618.62 452.543C618.506 452.712 618.503 452.893 618.611 453.088C618.719 453.275 618.957 453.475 619.325 453.687L621.659 455.035L620.363 455.783L615.41 452.923ZM589.451 476.71L594.548 473.767L595.795 474.488L592.09 476.627L593.595 477.496L597.024 475.516L598.215 476.204L594.786 478.184L596.453 479.146L600.139 477.018L601.387 477.738L596.31 480.67L589.451 476.71ZM601.34 474.829L597.225 474.422L598.701 473.569L601.026 473.789L600.635 472.453L602.093 471.611L602.788 473.971L607.161 474.405L605.684 475.258L603.112 475.005L603.541 476.495L602.083 477.337L601.34 474.829ZM610.457 472.634C609.949 472.927 609.394 473.12 608.79 473.211C608.187 473.296 607.593 473.283 607.009 473.173C606.418 473.059 605.875 472.859 605.38 472.573C604.885 472.287 604.538 471.974 604.342 471.633C604.145 471.292 604.122 470.949 604.275 470.604C604.434 470.256 604.767 469.935 605.275 469.642C605.79 469.345 606.345 469.152 606.942 469.064C607.533 468.973 608.13 468.991 608.733 469.119C609.337 469.24 609.911 469.459 610.457 469.774L610.743 469.939L607.066 472.062C607.346 472.187 607.625 472.271 607.904 472.315C608.184 472.352 608.457 472.352 608.724 472.315C608.99 472.271 609.235 472.185 609.457 472.056C609.737 471.895 609.914 471.73 609.991 471.561C610.067 471.385 610.054 471.209 609.953 471.033L611.21 470.307C611.547 470.692 611.655 471.092 611.534 471.506C611.413 471.913 611.054 472.289 610.457 472.634ZM608.552 470.17C608.146 470.009 607.746 469.932 607.352 469.939C606.952 469.943 606.593 470.036 606.275 470.219C605.952 470.406 605.786 470.615 605.78 470.846C605.767 471.074 605.901 471.305 606.18 471.539L608.552 470.17ZM616.374 469.218C615.866 469.511 615.313 469.702 614.716 469.79C614.119 469.871 613.529 469.856 612.944 469.746C612.354 469.632 611.811 469.433 611.315 469.147C610.82 468.861 610.474 468.547 610.277 468.206C610.08 467.865 610.055 467.524 610.201 467.183C610.353 466.838 610.683 466.519 611.191 466.226C611.871 465.834 612.582 465.621 613.325 465.588C614.068 465.555 614.77 465.685 615.431 465.979L614.135 466.727C613.818 466.609 613.494 466.562 613.163 466.584C612.833 466.598 612.532 466.684 612.258 466.842C612.004 466.989 611.855 467.148 611.811 467.321C611.76 467.489 611.804 467.665 611.944 467.849C612.09 468.028 612.319 468.208 612.63 468.388C612.941 468.567 613.252 468.699 613.564 468.784C613.875 468.861 614.18 468.886 614.478 468.861C614.777 468.835 615.053 468.749 615.307 468.602C615.593 468.437 615.745 468.257 615.764 468.063C615.789 467.865 615.678 467.669 615.431 467.475L616.726 466.727C617.253 467.119 617.495 467.537 617.45 467.981C617.399 468.421 617.041 468.833 616.374 469.218ZM624.258 464.534L623 465.26L622.324 464.87C622.381 465.115 622.353 465.356 622.238 465.59C622.118 465.821 621.889 466.034 621.552 466.228C621.178 466.445 620.781 466.586 620.362 466.652C619.942 466.71 619.514 466.694 619.076 466.602C618.644 466.507 618.221 466.34 617.809 466.102L614.722 464.32L616.008 463.577L618.942 465.271C619.253 465.451 619.574 465.552 619.904 465.574C620.228 465.592 620.549 465.51 620.867 465.326C621.044 465.224 621.175 465.104 621.257 464.969C621.34 464.826 621.343 464.67 621.267 464.501C621.197 464.329 621.016 464.158 620.724 463.99L618.009 462.422L619.304 461.674L624.258 464.534ZM627.563 462.626C627.252 462.806 626.96 462.934 626.687 463.011C626.407 463.084 626.112 463.101 625.801 463.06C625.496 463.016 625.172 462.895 624.829 462.697L622.162 461.157L621.304 461.652L620.323 461.086L621.181 460.591L619.656 459.711L620.952 458.963L622.476 459.843L623.715 459.128L624.696 459.694L623.457 460.409L625.991 461.872C626.15 461.964 626.302 462.012 626.449 462.015C626.588 462.015 626.744 461.966 626.915 461.867L627.687 461.421L628.668 461.988L627.563 462.626ZM624.824 458.487L626.12 457.739L631.073 460.599L629.778 461.347L624.824 458.487ZM622.919 457.387L624.214 456.639L625.367 457.305L624.072 458.053L622.919 457.387ZM634.877 458.535C634.356 458.836 633.791 459.034 633.181 459.129C632.572 459.217 631.972 459.208 631.381 459.102C630.79 458.988 630.247 458.788 629.752 458.502C629.257 458.216 628.91 457.903 628.714 457.562C628.523 457.217 628.507 456.871 628.666 456.522C628.831 456.17 629.174 455.844 629.695 455.543C630.222 455.239 630.787 455.041 631.39 454.949C632 454.854 632.6 454.863 633.191 454.977C633.782 455.09 634.325 455.29 634.82 455.576C635.315 455.862 635.661 456.176 635.858 456.517C636.049 456.854 636.065 457.201 635.906 457.556C635.747 457.905 635.404 458.231 634.877 458.535ZM633.81 457.919C634.09 457.758 634.255 457.589 634.306 457.413C634.363 457.234 634.321 457.056 634.182 456.88C634.042 456.696 633.816 456.515 633.505 456.335C633.194 456.156 632.88 456.025 632.562 455.945C632.251 455.86 631.943 455.837 631.638 455.873C631.333 455.903 631.041 455.998 630.762 456.159C630.489 456.317 630.324 456.486 630.266 456.665C630.209 456.838 630.25 457.015 630.39 457.199C630.53 457.382 630.755 457.564 631.067 457.743C631.378 457.923 631.692 458.053 632.01 458.134C632.321 458.211 632.629 458.235 632.934 458.205C633.245 458.172 633.537 458.077 633.81 457.919ZM633.503 453.476L634.761 452.75L635.437 453.141C635.38 452.895 635.412 452.657 635.532 452.426C635.647 452.191 635.872 451.977 636.209 451.782C636.584 451.566 636.98 451.428 637.4 451.37C637.819 451.304 638.244 451.318 638.676 451.414C639.114 451.505 639.54 451.67 639.953 451.909L643.039 453.691L641.753 454.433L638.819 452.739C638.508 452.56 638.19 452.461 637.866 452.442C637.536 452.42 637.212 452.501 636.895 452.684C636.717 452.787 636.587 452.91 636.504 453.053C636.422 453.188 636.415 453.342 636.485 453.515C636.561 453.683 636.745 453.852 637.038 454.021L639.753 455.588L638.457 456.336L633.503 453.476Z" fill="#5F52FF"/>
|
|
190
|
+
<path id="(API & CLI)" d="M609.708 487.181C608.4 486.983 607.247 486.732 606.25 486.428C605.247 486.12 604.335 485.729 603.516 485.256C602.697 484.783 602.024 484.259 601.497 483.683C600.963 483.104 600.525 482.437 600.182 481.681L601.068 481.17C601.43 481.929 601.881 482.585 602.421 483.139C602.954 483.689 603.643 484.208 604.488 484.695C605.332 485.183 606.234 485.583 607.193 485.894C608.146 486.202 609.279 486.461 610.594 486.67L609.708 487.181ZM604.875 479.852L606.018 479.192L615.63 481.563L614.553 482.184L612.058 481.546L608.961 483.334L610.067 484.775L609 485.391L604.875 479.852ZM610.819 481.227L606.466 480.111L608.399 482.624L610.819 481.227ZM609.253 477.325L612.063 475.702C612.59 475.398 613.13 475.196 613.682 475.097C614.235 474.998 614.762 474.991 615.264 475.075C615.765 475.159 616.219 475.319 616.626 475.554C617.032 475.788 617.309 476.05 617.455 476.34C617.601 476.63 617.588 476.934 617.417 477.253C617.239 477.568 616.886 477.878 616.359 478.183L614.568 479.217L617.131 480.696L616.112 481.285L609.253 477.325ZM615.435 477.682C615.905 477.411 616.146 477.143 616.159 476.879C616.166 476.611 615.978 476.368 615.597 476.148C615.21 475.924 614.787 475.816 614.33 475.823C613.873 475.83 613.409 475.97 612.939 476.241L611.177 477.259L613.673 478.7L615.435 477.682ZM615.135 473.928L616.154 473.34L623.013 477.3L621.994 477.888L615.135 473.928ZM627.713 474.718C627.237 474.993 626.742 475.184 626.227 475.29C625.713 475.389 625.217 475.408 624.741 475.345C624.258 475.279 623.836 475.142 623.474 474.933C623.144 474.742 622.922 474.537 622.807 474.317C622.699 474.093 622.664 473.868 622.702 473.64C622.741 473.406 622.829 473.153 622.969 472.881C622.575 472.874 622.261 472.861 622.026 472.843C621.791 472.817 621.556 472.773 621.321 472.711C621.093 472.645 620.864 472.546 620.635 472.414C620.311 472.227 620.111 472.02 620.035 471.792C619.965 471.561 620.003 471.334 620.149 471.11C620.302 470.883 620.54 470.676 620.864 470.489C621.194 470.298 621.553 470.161 621.94 470.076C622.334 469.988 622.728 469.966 623.122 470.01C623.515 470.054 623.874 470.17 624.198 470.357C624.471 470.514 624.652 470.692 624.741 470.89C624.836 471.085 624.868 471.286 624.836 471.495C624.805 471.697 624.725 471.926 624.598 472.183L627.637 472.276C627.421 471.902 627.056 471.563 626.542 471.259L627.447 470.736C628.24 471.217 628.748 471.745 628.971 472.32L631.505 472.397L630.276 473.107L629.047 473.068C629.022 473.369 628.898 473.66 628.675 473.943C628.453 474.218 628.132 474.476 627.713 474.718ZM626.856 474.212C627.142 474.047 627.361 473.866 627.513 473.668C627.659 473.466 627.739 473.252 627.751 473.024L624.217 472.92C624.122 473.129 624.062 473.318 624.036 473.486C624.011 473.648 624.03 473.802 624.093 473.948C624.15 474.091 624.281 474.221 624.484 474.339C624.674 474.449 624.9 474.524 625.16 474.564C625.421 474.605 625.7 474.597 625.999 474.542C626.291 474.484 626.576 474.374 626.856 474.212ZM623.369 472.155C623.522 471.855 623.601 471.607 623.607 471.413C623.607 471.215 623.49 471.048 623.255 470.912C623.026 470.78 622.772 470.722 622.493 470.736C622.207 470.747 621.947 470.821 621.712 470.956C621.477 471.092 621.35 471.242 621.331 471.407C621.305 471.569 621.407 471.715 621.636 471.847C621.845 471.968 622.071 472.047 622.312 472.084C622.547 472.117 622.899 472.141 623.369 472.155ZM636.656 469.555C635.951 469.962 635.189 470.219 634.369 470.325C633.55 470.432 632.747 470.404 631.959 470.243C631.165 470.078 630.441 469.806 629.787 469.429C629.133 469.051 628.666 468.635 628.387 468.18C628.101 467.722 628.05 467.256 628.235 466.783C628.419 466.31 628.863 465.87 629.568 465.463C630.089 465.163 630.657 464.955 631.273 464.842C631.889 464.721 632.512 464.695 633.141 464.765C633.769 464.827 634.354 464.97 634.893 465.194L633.865 465.788C633.509 465.648 633.134 465.564 632.74 465.535C632.347 465.498 631.953 465.52 631.559 465.601C631.172 465.678 630.816 465.81 630.492 465.997C629.991 466.286 629.686 466.598 629.578 466.932C629.47 467.258 629.53 467.583 629.759 467.905C629.994 468.224 630.359 468.527 630.854 468.813C631.35 469.099 631.874 469.31 632.426 469.445C632.985 469.577 633.55 469.614 634.122 469.555C634.693 469.489 635.23 469.311 635.732 469.022C636.081 468.82 636.319 468.598 636.446 468.356C636.573 468.114 636.589 467.87 636.494 467.625C636.405 467.375 636.214 467.141 635.922 466.921L636.951 466.327C637.396 466.657 637.691 467.011 637.837 467.388C637.989 467.762 637.967 468.138 637.77 468.516C637.573 468.893 637.202 469.24 636.656 469.555ZM633.289 463.447L634.308 462.859L640.252 466.291L643.634 464.338L644.549 464.866L640.148 467.407L633.289 463.447ZM638.222 460.599L639.241 460.011L646.1 463.971L645.081 464.559L638.222 460.599ZM648.437 464.821C648.075 464.062 647.624 463.41 647.084 462.863C646.544 462.31 645.852 461.789 645.007 461.301C644.163 460.814 643.264 460.416 642.311 460.108C641.359 459.793 640.225 459.53 638.911 459.321L639.797 458.81C641.105 459.008 642.261 459.261 643.264 459.569C644.261 459.873 645.169 460.262 645.989 460.735C646.808 461.208 647.484 461.734 648.018 462.313C648.545 462.889 648.98 463.555 649.323 464.31L648.437 464.821Z" fill="#465358"/>
|
|
191
|
+
<g id="Group 211">
|
|
192
|
+
<circle id="Ellipse 13_6" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 561.552 482.008)" fill="#210C4B"/>
|
|
193
|
+
<path id="12_5" d="M579.104 483.547C578.654 483.807 578.169 483.983 577.649 484.077C577.135 484.167 576.624 484.172 576.116 484.092C575.608 484.005 575.141 483.838 574.713 483.592C574.165 483.275 573.85 482.923 573.769 482.537L573.016 479.742L574.315 478.992L574.852 481.032C574.933 480.985 575.028 480.937 575.138 480.887C575.571 480.683 576.021 480.553 576.489 480.497C576.962 480.437 577.43 480.453 577.892 480.547C578.353 480.633 578.781 480.79 579.173 481.017C579.601 481.263 579.886 481.535 580.031 481.832C580.175 482.122 580.166 482.417 580.005 482.717C579.849 483.013 579.549 483.29 579.104 483.547ZM578.099 482.967C578.313 482.843 578.449 482.708 578.506 482.562C578.564 482.415 578.544 482.27 578.446 482.127C578.353 481.98 578.195 481.842 577.97 481.712C577.739 481.578 577.496 481.485 577.242 481.432C576.994 481.375 576.746 481.365 576.497 481.402C576.243 481.435 576.009 481.513 575.796 481.637C575.576 481.763 575.438 481.9 575.38 482.047C575.317 482.19 575.331 482.335 575.423 482.482C575.522 482.625 575.686 482.763 575.917 482.897C576.142 483.027 576.379 483.12 576.627 483.177C576.881 483.23 577.135 483.24 577.389 483.207C577.643 483.173 577.88 483.093 578.099 482.967Z" fill="#F8F7FF"/>
|
|
194
|
+
</g>
|
|
195
|
+
<g id="Group 210">
|
|
196
|
+
<circle id="Ellipse 13_7" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 618.552 379.508)" fill="#210C4B"/>
|
|
197
|
+
<path id="12_6" d="M631.663 377.521L628.684 379.241L627.618 378.626L631.862 376.176L632.849 376.746L635.846 381.076L634.547 381.826L631.663 377.521Z" fill="#F8F7FF"/>
|
|
198
|
+
</g>
|
|
199
|
+
<g id="Group 204">
|
|
200
|
+
<circle id="Ellipse 13_8" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 819.552 713.508)" fill="#210C4B"/>
|
|
201
|
+
<path id="12_7" d="M837.568 714.779C836.835 715.202 836.09 715.429 835.334 715.459C834.572 715.485 833.859 715.314 833.195 714.944L834.416 714.239C834.757 714.422 835.112 714.51 835.481 714.504C835.845 714.494 836.194 714.392 836.529 714.199C836.847 714.015 837.008 713.815 837.014 713.599C837.02 713.382 836.873 713.187 836.573 713.014C836.22 712.81 835.842 712.725 835.438 712.759C835.028 712.789 834.572 712.949 834.07 713.239L833.593 713.514L832.779 713.044L832.901 711.384L830.164 712.964L829.099 712.349L833.325 709.909L834.312 710.479L834.2 712.204C834.881 711.944 835.53 711.822 836.148 711.839C836.76 711.852 837.332 712.012 837.863 712.319C838.227 712.529 838.469 712.772 838.59 713.049C838.712 713.325 838.689 713.615 838.521 713.919C838.354 714.222 838.036 714.509 837.568 714.779Z" fill="#F8F7FF"/>
|
|
202
|
+
</g>
|
|
203
|
+
<g id="Group 202">
|
|
204
|
+
<circle id="Ellipse 13_9" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 917.552 684.508)" fill="#8C9C9D"/>
|
|
205
|
+
<path id="12_8" d="M932.655 687.461C931.922 687.884 931.177 688.111 930.421 688.141C929.659 688.167 928.946 687.996 928.282 687.626L929.503 686.921C929.844 687.104 930.199 687.192 930.568 687.186C930.932 687.176 931.281 687.074 931.616 686.881C931.934 686.697 932.095 686.497 932.101 686.281C932.107 686.064 931.96 685.869 931.659 685.696C931.307 685.492 930.929 685.407 930.525 685.441C930.115 685.471 929.659 685.631 929.157 685.921L928.68 686.196L927.866 685.726L927.987 684.066L925.251 685.646L924.186 685.031L928.412 682.591L929.399 683.161L929.287 684.886C929.968 684.626 930.617 684.504 931.235 684.521C931.847 684.534 932.419 684.694 932.95 685.001C933.314 685.211 933.556 685.454 933.677 685.731C933.799 686.007 933.775 686.297 933.608 686.601C933.441 686.904 933.123 687.191 932.655 687.461ZM929.403 682.018L931.949 680.548C932.7 680.115 933.419 679.87 934.106 679.813C934.787 679.753 935.385 679.872 935.898 680.168C936.187 680.335 936.378 680.518 936.47 680.718C936.562 680.918 936.551 681.132 936.435 681.358C936.909 681.245 937.362 681.213 937.795 681.263C938.222 681.31 938.6 681.428 938.929 681.618C939.513 681.955 939.767 682.328 939.692 682.738C939.616 683.142 939.201 683.562 938.444 683.998L935.639 685.618L929.403 682.018ZM937.388 683.398C937.729 683.202 937.916 683.017 937.951 682.843C937.98 682.667 937.858 682.5 937.587 682.343C937.322 682.19 937.039 682.123 936.738 682.143C936.432 682.16 936.109 682.267 935.768 682.463L934.236 683.348L935.855 684.283L937.388 683.398ZM934.547 682.008C934.888 681.812 935.079 681.628 935.119 681.458C935.154 681.285 935.047 681.127 934.798 680.983C934.556 680.843 934.288 680.785 933.993 680.808C933.693 680.828 933.372 680.937 933.032 681.133L931.715 681.893L933.231 682.768L934.547 682.008Z" fill="#F8F7FF"/>
|
|
206
|
+
</g>
|
|
207
|
+
<g id="Group 203">
|
|
208
|
+
<circle id="Ellipse 13_10" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 729.552 793.508)" fill="#8C9C9D"/>
|
|
209
|
+
<path id="12_9" d="M743.278 795.656L740.281 797.386L739.112 796.711L737.882 793.051L739.173 792.306L740.489 796.036L742.256 795.016L740.792 794.171L741.97 793.491L743.434 794.336L744.274 793.851L745.339 794.466L744.542 794.926L745.824 795.666L744.56 796.396L743.278 795.656ZM741.135 791.173L743.681 789.703C744.432 789.27 745.15 789.025 745.837 788.968C746.519 788.908 747.116 789.027 747.63 789.323C747.919 789.49 748.109 789.673 748.202 789.873C748.294 790.073 748.282 790.287 748.167 790.513C748.64 790.4 749.094 790.368 749.527 790.418C749.954 790.465 750.332 790.583 750.661 790.773C751.244 791.11 751.498 791.483 751.423 791.893C751.348 792.297 750.933 792.717 750.176 793.153L747.37 794.773L741.135 791.173ZM749.12 792.553C749.46 792.357 749.648 792.172 749.683 791.998C749.711 791.822 749.59 791.655 749.319 791.498C749.053 791.345 748.77 791.278 748.47 791.298C748.164 791.315 747.841 791.422 747.5 791.618L745.967 792.503L747.587 793.438L749.12 792.553ZM746.279 791.163C746.62 790.967 746.81 790.783 746.851 790.613C746.885 790.44 746.778 790.282 746.53 790.138C746.288 789.998 746.019 789.94 745.725 789.963C745.425 789.983 745.104 790.092 744.764 790.288L743.447 791.048L744.963 791.923L746.279 791.163Z" fill="#F8F7FF"/>
|
|
210
|
+
</g>
|
|
211
|
+
<g id="0-start">
|
|
212
|
+
<path id="Round number: 42 Active thoughts: 10" d="M1106.92 370.71L1110.04 368.911C1110.85 368.442 1111.65 368.196 1112.42 368.174C1113.2 368.145 1113.89 368.31 1114.52 368.669C1114.86 368.867 1115.08 369.102 1115.18 369.373C1115.29 369.641 1115.27 369.931 1115.13 370.242C1115.51 370.158 1115.88 370.136 1116.23 370.176C1116.59 370.213 1116.94 370.308 1117.3 370.462L1119.47 371.386L1118.04 372.211L1116.19 371.408C1115.92 371.287 1115.66 371.21 1115.41 371.177C1115.17 371.141 1114.94 371.146 1114.72 371.194C1114.49 371.238 1114.26 371.326 1114.03 371.458L1112.52 372.332L1115.17 373.867L1113.78 374.67L1106.92 370.71ZM1112.95 370.82C1113.35 370.585 1113.57 370.363 1113.6 370.154C1113.64 369.942 1113.5 369.742 1113.17 369.555C1112.85 369.368 1112.5 369.285 1112.14 369.307C1111.77 369.326 1111.39 369.452 1110.98 369.687L1109.46 370.567L1111.42 371.7L1112.95 370.82ZM1123 369.48C1122.48 369.78 1121.92 369.978 1121.31 370.074C1120.7 370.162 1120.1 370.153 1119.51 370.046C1118.92 369.933 1118.37 369.733 1117.88 369.447C1117.38 369.161 1117.04 368.847 1116.84 368.506C1116.65 368.162 1116.63 367.815 1116.79 367.467C1116.96 367.115 1117.3 366.788 1117.82 366.488C1118.35 366.183 1118.91 365.985 1119.52 365.894C1120.13 365.798 1120.73 365.808 1121.32 365.921C1121.91 366.035 1122.45 366.235 1122.94 366.521C1123.44 366.807 1123.79 367.12 1123.98 367.461C1124.17 367.799 1124.19 368.145 1124.03 368.501C1123.87 368.849 1123.53 369.175 1123 369.48ZM1121.94 368.864C1122.21 368.702 1122.38 368.534 1122.43 368.358C1122.49 368.178 1122.45 368 1122.31 367.824C1122.17 367.641 1121.94 367.459 1121.63 367.28C1121.32 367.1 1121 366.97 1120.69 366.889C1120.38 366.805 1120.07 366.781 1119.76 366.818C1119.46 366.847 1119.17 366.942 1118.89 367.104C1118.61 367.261 1118.45 367.43 1118.39 367.61C1118.33 367.782 1118.38 367.96 1118.52 368.143C1118.65 368.327 1118.88 368.508 1119.19 368.688C1119.5 368.867 1119.82 368.998 1120.13 369.078C1120.45 369.155 1120.75 369.179 1121.06 369.15C1121.37 369.117 1121.66 369.021 1121.94 368.864ZM1131.16 364.635L1129.91 365.361L1129.23 364.971C1129.29 365.217 1129.26 365.457 1129.14 365.691C1129.02 365.922 1128.8 366.135 1128.46 366.329C1128.08 366.546 1127.69 366.687 1127.27 366.753C1126.85 366.812 1126.42 366.795 1125.98 366.703C1125.55 366.608 1125.13 366.441 1124.71 366.203L1121.63 364.421L1122.91 363.678L1125.85 365.372C1126.16 365.552 1126.48 365.653 1126.81 365.675C1127.13 365.693 1127.46 365.611 1127.77 365.427C1127.95 365.325 1128.08 365.206 1128.16 365.07C1128.25 364.927 1128.25 364.771 1128.17 364.602C1128.1 364.43 1127.92 364.26 1127.63 364.091L1124.91 362.523L1126.21 361.775L1131.16 364.635ZM1127.58 360.984L1128.84 360.258L1129.52 360.648C1129.46 360.402 1129.49 360.164 1129.61 359.933C1129.73 359.698 1129.95 359.484 1130.29 359.29C1130.66 359.073 1131.06 358.936 1131.48 358.877C1131.9 358.811 1132.32 358.826 1132.75 358.921C1133.19 359.013 1133.62 359.178 1134.03 359.416L1137.12 361.198L1135.83 361.941L1132.9 360.247C1132.59 360.067 1132.27 359.968 1131.94 359.95C1131.61 359.928 1131.29 360.008 1130.97 360.192C1130.8 360.294 1130.67 360.417 1130.58 360.56C1130.5 360.696 1130.49 360.85 1130.56 361.022C1130.64 361.191 1130.82 361.359 1131.12 361.528L1133.83 363.096L1132.54 363.844L1127.58 360.984ZM1140.59 359.323C1140.13 359.59 1139.62 359.755 1139.07 359.818C1138.51 359.876 1137.95 359.843 1137.39 359.719C1136.83 359.59 1136.3 359.383 1135.8 359.097C1135.3 358.808 1134.94 358.501 1134.73 358.179C1134.5 357.852 1134.45 357.53 1134.55 357.211C1134.66 356.892 1134.95 356.598 1135.41 356.331C1135.74 356.14 1136.09 356.008 1136.46 355.935C1136.83 355.858 1137.22 355.836 1137.62 355.869L1135.13 354.428L1136.42 353.68L1143.28 357.64L1142.02 358.366L1141.37 357.986C1141.44 358.228 1141.42 358.461 1141.3 358.685C1141.18 358.908 1140.94 359.121 1140.59 359.323ZM1139.85 358.52C1140.12 358.366 1140.28 358.201 1140.33 358.025C1140.38 357.849 1140.34 357.671 1140.2 357.491C1140.06 357.308 1139.84 357.126 1139.53 356.947C1139.22 356.767 1138.9 356.637 1138.58 356.556C1138.27 356.476 1137.96 356.452 1137.66 356.485C1137.36 356.514 1137.07 356.606 1136.8 356.76C1136.53 356.917 1136.37 357.084 1136.32 357.26C1136.26 357.433 1136.3 357.61 1136.44 357.794C1136.59 357.973 1136.82 358.153 1137.13 358.333C1137.44 358.512 1137.75 358.644 1138.06 358.729C1138.37 358.806 1138.68 358.83 1138.98 358.8C1139.29 358.771 1139.58 358.677 1139.85 358.52ZM1142.21 352.541L1143.46 351.815L1144.14 352.205C1144.08 351.96 1144.11 351.721 1144.23 351.49C1144.35 351.256 1144.57 351.041 1144.91 350.847C1145.29 350.631 1145.68 350.493 1146.1 350.434C1146.52 350.368 1146.95 350.383 1147.38 350.478C1147.82 350.57 1148.24 350.735 1148.65 350.973L1151.74 352.755L1150.45 353.498L1147.52 351.804C1147.21 351.624 1146.89 351.525 1146.57 351.507C1146.24 351.485 1145.91 351.566 1145.6 351.749C1145.42 351.852 1145.29 351.974 1145.21 352.117C1145.12 352.253 1145.12 352.407 1145.19 352.579C1145.26 352.748 1145.45 352.917 1145.74 353.085L1148.45 354.653L1147.16 355.401L1142.21 352.541ZM1157.69 349.318L1156.44 350.044L1155.76 349.654C1155.82 349.899 1155.79 350.139 1155.67 350.374C1155.55 350.605 1155.33 350.818 1154.99 351.012C1154.61 351.228 1154.22 351.37 1153.8 351.436C1153.38 351.494 1152.95 351.478 1152.51 351.386C1152.08 351.291 1151.66 351.124 1151.25 350.886L1148.16 349.104L1149.44 348.361L1152.38 350.055C1152.69 350.235 1153.01 350.336 1153.34 350.358C1153.66 350.376 1153.99 350.293 1154.3 350.11C1154.48 350.007 1154.61 349.888 1154.69 349.753C1154.78 349.61 1154.78 349.454 1154.7 349.285C1154.63 349.113 1154.45 348.942 1154.16 348.774L1151.45 347.206L1152.74 346.458L1157.69 349.318ZM1154.11 345.666L1155.37 344.94L1156.07 345.347C1155.99 345.105 1155.99 344.872 1156.08 344.649C1156.18 344.425 1156.4 344.216 1156.73 344.022C1157.07 343.824 1157.45 343.699 1157.86 343.648C1158.26 343.596 1158.68 343.618 1159.11 343.714C1159.02 343.446 1159.02 343.186 1159.13 342.933C1159.24 342.672 1159.47 342.44 1159.83 342.234C1160.17 342.036 1160.55 341.912 1160.95 341.86C1161.36 341.805 1161.79 341.825 1162.22 341.921C1162.65 342.016 1163.07 342.181 1163.48 342.416L1166.56 344.198L1165.27 344.946L1162.33 343.252C1162.03 343.076 1161.72 342.973 1161.4 342.944C1161.08 342.914 1160.79 342.979 1160.51 343.136C1160.24 343.294 1160.1 343.485 1160.09 343.708C1160.09 343.928 1160.31 344.165 1160.75 344.418L1163.47 345.985L1162.17 346.733L1159.24 345.039C1158.93 344.863 1158.62 344.762 1158.29 344.737C1157.98 344.707 1157.68 344.77 1157.42 344.924C1157.14 345.085 1157 345.278 1156.99 345.501C1156.99 345.721 1157.21 345.958 1157.65 346.211L1160.36 347.778L1159.07 348.526L1154.11 345.666ZM1170.85 341.857C1170.5 342.058 1170.13 342.194 1169.74 342.264C1169.35 342.333 1168.95 342.346 1168.53 342.302L1169.19 342.682L1167.93 343.408L1161.07 339.448L1162.37 338.7L1164.86 340.141C1164.81 339.91 1164.84 339.688 1164.97 339.475C1165.1 339.259 1165.33 339.055 1165.66 338.865C1166.13 338.597 1166.64 338.432 1167.19 338.37C1167.74 338.307 1168.3 338.34 1168.86 338.469C1169.42 338.593 1169.95 338.801 1170.46 339.09C1170.95 339.376 1171.31 339.682 1171.53 340.009C1171.75 340.331 1171.81 340.654 1171.7 340.977C1171.6 341.296 1171.31 341.589 1170.85 341.857ZM1169.46 341.428C1169.73 341.27 1169.89 341.103 1169.94 340.927C1169.99 340.751 1169.95 340.575 1169.81 340.399C1169.67 340.216 1169.44 340.034 1169.13 339.855C1168.82 339.675 1168.51 339.545 1168.19 339.464C1167.88 339.38 1167.57 339.354 1167.27 339.387C1166.97 339.417 1166.68 339.51 1166.41 339.668C1166.14 339.822 1165.98 339.987 1165.93 340.163C1165.87 340.335 1165.91 340.513 1166.05 340.696C1166.19 340.88 1166.42 341.061 1166.73 341.241C1167.04 341.42 1167.36 341.551 1167.67 341.631C1167.99 341.708 1168.29 341.732 1168.6 341.703C1168.9 341.673 1169.19 341.582 1169.46 341.428ZM1176.48 338.604C1175.97 338.897 1175.42 339.09 1174.81 339.181C1174.21 339.266 1173.62 339.253 1173.03 339.143C1172.44 339.029 1171.9 338.829 1171.4 338.543C1170.91 338.257 1170.56 337.944 1170.36 337.603C1170.17 337.262 1170.15 336.919 1170.3 336.574C1170.46 336.226 1170.79 335.905 1171.3 335.612C1171.81 335.315 1172.37 335.122 1172.97 335.034C1173.56 334.943 1174.15 334.961 1174.76 335.089C1175.36 335.21 1175.93 335.429 1176.48 335.744L1176.77 335.909L1173.09 338.032C1173.37 338.157 1173.65 338.241 1173.93 338.285C1174.21 338.322 1174.48 338.322 1174.75 338.285C1175.01 338.241 1175.26 338.155 1175.48 338.026C1175.76 337.865 1175.94 337.7 1176.01 337.531C1176.09 337.355 1176.08 337.179 1175.98 337.003L1177.23 336.277C1177.57 336.662 1177.68 337.062 1177.56 337.476C1177.44 337.883 1177.08 338.259 1176.48 338.604ZM1174.58 336.14C1174.17 335.979 1173.77 335.902 1173.38 335.909C1172.97 335.913 1172.62 336.006 1172.3 336.189C1171.97 336.376 1171.81 336.585 1171.8 336.816C1171.79 337.044 1171.92 337.275 1172.2 337.509L1174.58 336.14ZM1175.05 333.577L1176.31 332.851L1177.17 333.346C1177 333.067 1176.97 332.816 1177.08 332.592C1177.18 332.365 1177.4 332.156 1177.73 331.965L1178.13 331.734L1179.32 332.422L1178.86 332.686C1178.57 332.854 1178.37 333.025 1178.26 333.197C1178.15 333.366 1178.15 333.547 1178.25 333.742C1178.36 333.929 1178.6 334.128 1178.97 334.341L1181.3 335.689L1180.01 336.437L1175.05 333.577ZM1179.37 331.304L1180.84 330.457L1182.39 331.353L1180.92 332.2L1179.37 331.304ZM1182.58 333.157L1184.05 332.31L1185.6 333.207L1184.13 334.054L1182.58 333.157ZM1191.08 328.416L1187.78 330.319L1186.5 329.577L1185.14 325.551L1186.56 324.731L1188.01 328.834L1189.95 327.712L1188.34 326.783L1189.64 326.035L1191.25 326.964L1192.17 326.431L1193.35 327.107L1192.47 327.613L1193.88 328.427L1192.49 329.23L1191.08 328.416ZM1194.65 326.697L1194.94 323.688C1194.96 323.435 1194.93 323.21 1194.84 323.012C1194.74 322.81 1194.57 322.636 1194.31 322.489C1194.04 322.332 1193.73 322.262 1193.4 322.28C1193.06 322.295 1192.73 322.392 1192.42 322.572C1192.19 322.704 1192.03 322.845 1191.95 322.995C1191.87 323.138 1191.87 323.289 1191.97 323.446C1192.06 323.6 1192.23 323.751 1192.48 323.897L1191.14 324.673C1190.65 324.387 1190.32 324.088 1190.16 323.776C1189.99 323.461 1190 323.146 1190.18 322.83C1190.36 322.511 1190.72 322.2 1191.25 321.895C1191.71 321.628 1192.2 321.441 1192.73 321.334C1193.26 321.221 1193.77 321.195 1194.27 321.257C1194.78 321.312 1195.22 321.45 1195.6 321.67C1196.02 321.912 1196.29 322.2 1196.43 322.533C1196.57 322.863 1196.62 323.225 1196.59 323.617L1196.43 325.602L1199.5 323.831L1200.67 324.508L1195.76 327.34L1194.65 326.697ZM1118.57 374.989L1120.19 374.048L1129.7 376.479L1128.23 377.332L1126.23 376.798L1123.33 378.476L1124.24 379.631L1122.81 380.456L1118.57 374.989ZM1124.64 376.353L1120.71 375.291L1122.56 377.557L1124.64 376.353ZM1133.05 374.68C1132.54 374.973 1131.99 375.164 1131.39 375.252C1130.79 375.332 1130.2 375.318 1129.62 375.208C1129.03 375.094 1128.49 374.894 1127.99 374.608C1127.49 374.322 1127.15 374.009 1126.95 373.668C1126.75 373.327 1126.73 372.986 1126.88 372.645C1127.03 372.3 1127.36 371.981 1127.87 371.688C1128.55 371.295 1129.26 371.083 1130 371.05C1130.74 371.017 1131.44 371.147 1132.11 371.44L1130.81 372.188C1130.49 372.071 1130.17 372.023 1129.84 372.045C1129.51 372.06 1129.21 372.146 1128.93 372.304C1128.68 372.45 1128.53 372.61 1128.49 372.782C1128.43 372.951 1128.48 373.127 1128.62 373.31C1128.76 373.49 1128.99 373.669 1129.3 373.849C1129.62 374.029 1129.93 374.161 1130.24 374.245C1130.55 374.322 1130.85 374.348 1131.15 374.322C1131.45 374.296 1131.73 374.21 1131.98 374.064C1132.27 373.899 1132.42 373.719 1132.44 373.525C1132.46 373.327 1132.35 373.13 1132.11 372.936L1133.4 372.188C1133.93 372.58 1134.17 372.998 1134.12 373.442C1134.07 373.882 1133.72 374.295 1133.05 374.68ZM1138.28 371.525C1137.97 371.704 1137.68 371.833 1137.41 371.91C1137.13 371.983 1136.83 372 1136.52 371.959C1136.22 371.915 1135.89 371.794 1135.55 371.596L1132.88 370.056L1132.03 370.551L1131.04 369.985L1131.9 369.49L1130.38 368.61L1131.67 367.862L1133.2 368.742L1134.44 368.027L1135.42 368.593L1134.18 369.308L1136.71 370.771C1136.87 370.863 1137.02 370.911 1137.17 370.914C1137.31 370.914 1137.46 370.865 1137.64 370.766L1138.41 370.32L1139.39 370.887L1138.28 371.525ZM1135.55 367.386L1136.84 366.638L1141.79 369.498L1140.5 370.246L1135.55 367.386ZM1133.64 366.286L1134.94 365.538L1136.09 366.204L1134.79 366.952L1133.64 366.286ZM1137.76 366.108L1139.16 365.3L1144.1 366.746L1141.58 363.903L1142.97 363.1L1146.06 367.032L1144.58 367.89L1137.76 366.108ZM1151.23 364.18C1150.73 364.473 1150.17 364.666 1149.57 364.757C1148.96 364.842 1148.37 364.829 1147.79 364.719C1147.19 364.605 1146.65 364.405 1146.16 364.119C1145.66 363.833 1145.32 363.52 1145.12 363.179C1144.92 362.838 1144.9 362.495 1145.05 362.15C1145.21 361.802 1145.54 361.481 1146.05 361.188C1146.57 360.891 1147.12 360.698 1147.72 360.61C1148.31 360.519 1148.91 360.537 1149.51 360.665C1150.11 360.786 1150.69 361.005 1151.23 361.32L1151.52 361.485L1147.84 363.608C1148.12 363.733 1148.4 363.817 1148.68 363.861C1148.96 363.898 1149.23 363.898 1149.5 363.861C1149.77 363.817 1150.01 363.731 1150.23 363.602C1150.51 363.441 1150.69 363.276 1150.77 363.107C1150.84 362.931 1150.83 362.755 1150.73 362.579L1151.99 361.853C1152.32 362.238 1152.43 362.638 1152.31 363.052C1152.19 363.459 1151.83 363.835 1151.23 364.18ZM1149.33 361.716C1148.92 361.555 1148.52 361.478 1148.13 361.485C1147.73 361.489 1147.37 361.582 1147.05 361.765C1146.73 361.952 1146.56 362.161 1146.56 362.392C1146.54 362.62 1146.68 362.851 1146.96 363.085L1149.33 361.716ZM1159.2 359.446C1158.89 359.626 1158.6 359.754 1158.33 359.831C1158.05 359.905 1157.75 359.921 1157.44 359.881C1157.14 359.837 1156.81 359.716 1156.47 359.518L1153.8 357.978L1152.95 358.473L1151.96 357.906L1152.82 357.411L1151.3 356.531L1152.59 355.783L1154.12 356.663L1155.36 355.948L1156.34 356.515L1155.1 357.23L1157.63 358.693C1157.79 358.784 1157.94 358.832 1158.09 358.836C1158.23 358.836 1158.39 358.786 1158.56 358.687L1159.33 358.242L1160.31 358.808L1159.2 359.446ZM1154.57 354.202L1155.87 353.454L1158.4 354.917C1158.36 354.679 1158.39 354.448 1158.51 354.224C1158.63 354 1158.86 353.795 1159.18 353.608C1159.56 353.392 1159.95 353.254 1160.37 353.196C1160.79 353.13 1161.22 353.144 1161.65 353.24C1162.09 353.331 1162.51 353.496 1162.92 353.735L1166.01 355.517L1164.72 356.259L1161.79 354.565C1161.48 354.385 1161.16 354.286 1160.84 354.268C1160.51 354.246 1160.18 354.327 1159.87 354.51C1159.69 354.613 1159.56 354.736 1159.48 354.879C1159.39 355.014 1159.39 355.168 1159.46 355.341C1159.53 355.509 1159.72 355.678 1160.01 355.847L1162.72 357.414L1161.43 358.162L1154.57 354.202ZM1169.82 353.449C1169.3 353.749 1168.74 353.947 1168.13 354.043C1167.52 354.131 1166.92 354.122 1166.32 354.015C1165.73 353.902 1165.19 353.702 1164.7 353.416C1164.2 353.13 1163.85 352.816 1163.66 352.475C1163.47 352.131 1163.45 351.784 1163.61 351.436C1163.78 351.084 1164.12 350.757 1164.64 350.457C1165.17 350.152 1165.73 349.954 1166.33 349.863C1166.94 349.767 1167.54 349.777 1168.13 349.89C1168.73 350.004 1169.27 350.204 1169.76 350.49C1170.26 350.776 1170.61 351.089 1170.8 351.43C1170.99 351.768 1171.01 352.114 1170.85 352.47C1170.69 352.818 1170.35 353.144 1169.82 353.449ZM1168.75 352.833C1169.03 352.671 1169.2 352.503 1169.25 352.327C1169.31 352.147 1169.27 351.969 1169.13 351.793C1168.99 351.61 1168.76 351.428 1168.45 351.249C1168.14 351.069 1167.82 350.939 1167.51 350.858C1167.2 350.774 1166.89 350.75 1166.58 350.787C1166.28 350.816 1165.99 350.911 1165.71 351.073C1165.43 351.23 1165.27 351.399 1165.21 351.579C1165.15 351.751 1165.19 351.929 1165.33 352.112C1165.47 352.296 1165.7 352.477 1166.01 352.657C1166.32 352.836 1166.64 352.967 1166.95 353.047C1167.26 353.124 1167.57 353.148 1167.88 353.119C1168.19 353.086 1168.48 352.99 1168.75 352.833ZM1177.98 348.604L1176.73 349.33L1176.05 348.94C1176.11 349.186 1176.08 349.426 1175.96 349.66C1175.84 349.891 1175.61 350.104 1175.28 350.298C1174.9 350.515 1174.51 350.656 1174.09 350.722C1173.67 350.781 1173.24 350.764 1172.8 350.672C1172.37 350.577 1171.95 350.41 1171.53 350.172L1168.45 348.39L1169.73 347.647L1172.67 349.341C1172.98 349.521 1173.3 349.622 1173.63 349.644C1173.95 349.662 1174.27 349.58 1174.59 349.396C1174.77 349.294 1174.9 349.175 1174.98 349.039C1175.06 348.896 1175.07 348.74 1174.99 348.571C1174.92 348.399 1174.74 348.229 1174.45 348.06L1171.73 346.492L1173.03 345.744L1177.98 348.604ZM1183.62 347.681C1182.92 348.084 1182.23 348.308 1181.53 348.352C1180.83 348.396 1180.19 348.271 1179.6 347.978L1180.88 347.241C1181.17 347.373 1181.47 347.422 1181.76 347.389C1182.07 347.352 1182.37 347.248 1182.67 347.076C1183.02 346.874 1183.22 346.659 1183.27 346.432C1183.33 346.205 1183.15 345.966 1182.72 345.717L1182.12 345.371C1182.17 345.598 1182.13 345.82 1181.99 346.036C1181.86 346.245 1181.63 346.445 1181.3 346.636C1180.83 346.903 1180.33 347.07 1179.78 347.136C1179.24 347.202 1178.69 347.176 1178.14 347.059C1177.59 346.938 1177.07 346.738 1176.59 346.46C1176.1 346.177 1175.76 345.878 1175.55 345.563C1175.34 345.244 1175.3 344.927 1175.41 344.612C1175.53 344.296 1175.81 344.005 1176.28 343.737C1176.62 343.539 1176.98 343.403 1177.36 343.33C1177.75 343.253 1178.15 343.235 1178.56 343.275L1177.94 342.912L1179.19 342.186L1184.01 344.969C1184.49 345.244 1184.78 345.537 1184.87 345.849C1184.97 346.164 1184.91 346.478 1184.69 346.79C1184.47 347.101 1184.11 347.398 1183.62 347.681ZM1180.6 345.86C1180.87 345.706 1181.03 345.543 1181.09 345.371C1181.14 345.195 1181.1 345.019 1180.97 344.843C1180.84 344.663 1180.62 344.485 1180.32 344.309C1180.01 344.133 1179.7 344.007 1179.39 343.93C1179.08 343.853 1178.78 343.831 1178.48 343.864C1178.17 343.893 1177.89 343.985 1177.62 344.139C1177.35 344.296 1177.19 344.463 1177.13 344.639C1177.08 344.811 1177.12 344.987 1177.25 345.167C1177.39 345.343 1177.61 345.519 1177.92 345.695C1178.22 345.871 1178.53 345.999 1178.83 346.08C1179.14 346.153 1179.44 346.175 1179.75 346.146C1180.04 346.113 1180.33 346.018 1180.6 345.86ZM1178.65 340.297L1179.95 339.549L1182.48 341.012C1182.44 340.774 1182.48 340.543 1182.6 340.319C1182.72 340.095 1182.94 339.89 1183.26 339.703C1183.64 339.487 1184.04 339.349 1184.46 339.291C1184.87 339.225 1185.3 339.239 1185.73 339.335C1186.17 339.426 1186.6 339.591 1187.01 339.83L1190.09 341.612L1188.81 342.354L1185.87 340.66C1185.56 340.48 1185.25 340.381 1184.92 340.363C1184.59 340.341 1184.27 340.422 1183.95 340.605C1183.77 340.708 1183.64 340.831 1183.56 340.974C1183.48 341.109 1183.47 341.263 1183.54 341.436C1183.62 341.604 1183.8 341.773 1184.09 341.942L1186.81 343.509L1185.51 344.257L1178.65 340.297ZM1193.4 339.703C1193.09 339.883 1192.8 340.011 1192.52 340.088C1192.24 340.162 1191.95 340.178 1191.64 340.138C1191.33 340.094 1191.01 339.973 1190.67 339.775L1188 338.235L1187.14 338.73L1186.16 338.163L1187.02 337.668L1185.49 336.788L1186.79 336.04L1188.31 336.92L1189.55 336.205L1190.53 336.772L1189.29 337.487L1191.83 338.95C1191.99 339.041 1192.14 339.089 1192.29 339.093C1192.43 339.093 1192.58 339.043 1192.75 338.944L1193.52 338.499L1194.51 339.065L1193.4 339.703ZM1197.72 337.341C1197.02 337.748 1196.32 337.986 1195.64 338.056C1194.97 338.122 1194.31 337.992 1193.67 337.666L1194.93 336.94C1195.27 337.097 1195.59 337.161 1195.89 337.132C1196.2 337.099 1196.53 336.985 1196.86 336.791C1197.14 336.633 1197.31 336.479 1197.38 336.329C1197.44 336.175 1197.39 336.049 1197.22 335.95C1197.09 335.88 1196.97 335.84 1196.85 335.829C1196.73 335.818 1196.56 335.843 1196.34 335.906C1196.12 335.961 1195.81 336.071 1195.42 336.236C1194.83 336.478 1194.31 336.643 1193.88 336.731C1193.45 336.819 1193.07 336.842 1192.75 336.802C1192.43 336.758 1192.13 336.654 1191.84 336.489C1191.37 336.217 1191.19 335.895 1191.31 335.521C1191.42 335.147 1191.8 334.774 1192.44 334.404C1193.15 333.993 1193.85 333.768 1194.53 333.728C1195.2 333.684 1195.81 333.81 1196.35 334.107L1195.15 334.8C1194.84 334.631 1194.54 334.567 1194.24 334.608C1193.94 334.648 1193.65 334.754 1193.35 334.927C1193.1 335.07 1192.94 335.214 1192.88 335.361C1192.82 335.504 1192.88 335.623 1193.04 335.719C1193.16 335.788 1193.29 335.827 1193.43 335.834C1193.57 335.834 1193.75 335.803 1193.98 335.741C1194.2 335.671 1194.5 335.555 1194.88 335.394C1195.47 335.152 1195.97 334.989 1196.4 334.905C1196.82 334.817 1197.19 334.796 1197.51 334.844C1197.83 334.888 1198.13 334.993 1198.42 335.158C1198.9 335.44 1199.08 335.779 1198.94 336.175C1198.8 336.564 1198.39 336.952 1197.72 337.341ZM1196.01 332.695L1197.48 331.848L1199.03 332.745L1197.56 333.592L1196.01 332.695ZM1199.22 334.549L1200.69 333.702L1202.24 334.598L1200.78 335.445L1199.22 334.549ZM1201.28 328.587L1200.17 329.23L1198.99 328.554L1201.5 327.107L1208.36 331.067L1206.97 331.87L1201.28 328.587ZM1212.51 328.805C1211.58 329.34 1210.58 329.551 1209.52 329.437C1208.46 329.32 1207.37 328.944 1206.28 328.31C1205.18 327.675 1204.53 327.052 1204.33 326.44C1204.13 325.824 1204.49 325.248 1205.42 324.713C1206.35 324.174 1207.35 323.965 1208.41 324.086C1209.47 324.199 1210.55 324.573 1211.65 325.208C1212.75 325.842 1213.4 326.467 1213.6 327.083C1213.8 327.692 1213.44 328.266 1212.51 328.805ZM1211.33 328.128C1211.79 327.864 1211.91 327.563 1211.7 327.226C1211.47 326.885 1210.98 326.491 1210.2 326.044C1209.42 325.593 1208.74 325.305 1208.15 325.18C1207.57 325.055 1207.05 325.125 1206.59 325.389C1206.13 325.653 1206.01 325.954 1206.23 326.291C1206.44 326.628 1206.94 327.023 1207.72 327.474C1208.5 327.921 1209.18 328.209 1209.77 328.337C1210.36 328.462 1210.88 328.392 1211.33 328.128Z" fill="#5F52FF"/>
|
|
213
|
+
<g id="Group 200">
|
|
214
|
+
<circle id="Ellipse 13_11" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 1090.55 382.508)" fill="#210C4B"/>
|
|
215
|
+
<path id="12_10" d="M1108.51 383.811C1107.67 384.298 1106.77 384.49 1105.8 384.386C1104.83 384.28 1103.85 383.938 1102.85 383.361C1101.85 382.785 1101.26 382.218 1101.08 381.661C1100.9 381.101 1101.23 380.578 1102.07 380.091C1102.92 379.601 1103.82 379.411 1104.79 379.521C1105.75 379.625 1106.73 379.965 1107.73 380.541C1108.73 381.118 1109.32 381.686 1109.51 382.246C1109.69 382.8 1109.36 383.321 1108.51 383.811ZM1107.45 383.196C1107.86 382.956 1107.97 382.683 1107.78 382.376C1107.57 382.066 1107.12 381.708 1106.42 381.301C1105.71 380.891 1105.09 380.63 1104.55 380.516C1104.02 380.403 1103.55 380.466 1103.13 380.706C1102.72 380.946 1102.61 381.22 1102.8 381.526C1103 381.833 1103.45 382.191 1104.16 382.601C1104.87 383.008 1105.49 383.27 1106.03 383.386C1106.56 383.5 1107.03 383.436 1107.45 383.196Z" fill="#F8F7FF"/>
|
|
216
|
+
</g>
|
|
217
|
+
</g>
|
|
218
|
+
<g id="thought-queue">
|
|
219
|
+
<g id="Group 224">
|
|
220
|
+
<g id="Group 131">
|
|
221
|
+
<circle id="Ellipse 6" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1030.55 279.45)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
222
|
+
<circle id="Ellipse 11" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1030.55 271.663)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
223
|
+
<circle id="Ellipse 12" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1030.55 264.554)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
224
|
+
<circle id="Ellipse 13_12" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 1030.55 257.445)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
225
|
+
</g>
|
|
226
|
+
<path id="23" d="M1076.99 263.518L1077.5 258.321C1077.53 257.884 1077.47 257.495 1077.32 257.153C1077.16 256.805 1076.85 256.504 1076.41 256.25C1075.94 255.978 1075.42 255.858 1074.84 255.889C1074.24 255.915 1073.68 256.083 1073.14 256.393C1072.75 256.621 1072.48 256.865 1072.33 257.124C1072.19 257.371 1072.2 257.631 1072.37 257.903C1072.52 258.169 1072.82 258.429 1073.26 258.682L1070.94 260.022C1070.08 259.528 1069.51 259.012 1069.24 258.473C1068.96 257.929 1068.97 257.384 1069.27 256.839C1069.59 256.288 1070.21 255.75 1071.12 255.224C1071.92 254.762 1072.77 254.439 1073.68 254.255C1074.59 254.059 1075.48 254.015 1076.35 254.122C1077.22 254.217 1077.98 254.455 1078.64 254.835C1079.36 255.253 1079.84 255.75 1080.07 256.326C1080.31 256.896 1080.4 257.52 1080.35 258.198L1080.07 261.627L1085.37 258.568L1087.39 259.737L1078.92 264.629L1076.99 263.518ZM1093.26 256.575C1091.87 257.379 1090.45 257.81 1089.02 257.867C1087.57 257.918 1086.21 257.591 1084.95 256.888L1087.27 255.549C1087.92 255.897 1088.59 256.065 1089.3 256.052C1089.99 256.033 1090.65 255.84 1091.29 255.473C1091.89 255.125 1092.2 254.745 1092.21 254.333C1092.22 253.921 1091.94 253.551 1091.37 253.221C1090.7 252.835 1089.98 252.674 1089.21 252.737C1088.44 252.794 1087.57 253.098 1086.61 253.649L1085.71 254.171L1084.16 253.278L1084.39 250.124L1079.19 253.126L1077.17 251.958L1085.2 247.322L1087.07 248.405L1086.86 251.682C1088.16 251.188 1089.39 250.957 1090.56 250.989C1091.73 251.014 1092.81 251.318 1093.82 251.901C1094.51 252.3 1094.97 252.762 1095.2 253.288C1095.43 253.814 1095.39 254.365 1095.07 254.941C1094.75 255.517 1094.15 256.062 1093.26 256.575Z" fill="#5F52FF"/>
|
|
227
|
+
</g>
|
|
228
|
+
</g>
|
|
229
|
+
<g id="active-tasks-queue">
|
|
230
|
+
<g id="Group 212">
|
|
231
|
+
<circle id="Ellipse 6_2" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 797.552 145.45)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
232
|
+
<circle id="Ellipse 11_2" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 797.552 137.662)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
233
|
+
<circle id="Ellipse 12_2" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 797.552 130.554)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
234
|
+
<circle id="Ellipse 13_13" cx="29.4449" cy="29.4449" r="28.4449" transform="matrix(0.866025 -0.5 0.866025 0.5 797.552 123.444)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
235
|
+
</g>
|
|
236
|
+
<path id="23_2" d="M843.991 129.518L844.501 124.321C844.534 123.884 844.473 123.495 844.32 123.153C844.155 122.805 843.854 122.504 843.415 122.25C842.943 121.978 842.417 121.858 841.835 121.889C841.243 121.915 840.678 122.083 840.14 122.393C839.745 122.621 839.477 122.865 839.334 123.124C839.192 123.371 839.202 123.631 839.367 123.903C839.521 124.169 839.817 124.429 840.256 124.682L837.935 126.022C837.08 125.528 836.515 125.012 836.241 124.473C835.955 123.929 835.966 123.384 836.274 122.839C836.592 122.288 837.206 121.75 838.116 121.224C838.917 120.762 839.773 120.439 840.683 120.255C841.594 120.059 842.482 120.015 843.349 120.122C844.216 120.217 844.978 120.455 845.636 120.835C846.36 121.253 846.837 121.75 847.068 122.326C847.309 122.896 847.402 123.52 847.347 124.198L847.068 127.627L852.366 124.568L854.39 125.737L845.916 130.629L843.991 129.518ZM860.262 122.575C858.869 123.379 857.453 123.81 856.016 123.867C854.568 123.918 853.214 123.591 851.952 122.888L854.272 121.549C854.919 121.897 855.594 122.065 856.296 122.052C856.987 122.033 857.651 121.84 858.287 121.473C858.89 121.125 859.198 120.745 859.209 120.333C859.22 119.921 858.94 119.551 858.369 119.221C857.7 118.835 856.982 118.674 856.214 118.737C855.435 118.794 854.568 119.098 853.614 119.649L852.709 120.171L851.162 119.278L851.393 116.124L846.193 119.126L844.169 117.958L852.199 113.322L854.075 114.405L853.861 117.682C855.155 117.188 856.389 116.957 857.563 116.989C858.726 117.014 859.812 117.318 860.821 117.901C861.512 118.3 861.973 118.762 862.203 119.288C862.434 119.814 862.39 120.365 862.072 120.941C861.754 121.517 861.15 122.062 860.262 122.575Z" fill="#5F52FF"/>
|
|
237
|
+
</g>
|
|
238
|
+
<g id="2-perform-dma">
|
|
239
|
+
<path id="Common Sense" d="M1001.52 675.643C1000.8 676.061 1000.02 676.331 999.189 676.452C998.357 676.565 997.538 676.543 996.731 676.386C995.931 676.224 995.204 675.955 994.55 675.577C993.889 675.196 993.422 674.776 993.149 674.318C992.876 673.852 992.841 673.381 993.045 672.904C993.248 672.42 993.711 671.969 994.435 671.551C994.994 671.228 995.601 671.003 996.255 670.875C996.909 670.746 997.563 670.717 998.217 670.787C998.871 670.856 999.484 671.008 1000.06 671.243L998.646 672.057C998.322 671.943 997.986 671.874 997.636 671.848C997.293 671.819 996.95 671.841 996.607 671.914C996.271 671.984 995.96 672.101 995.674 672.266C995.229 672.523 994.959 672.796 994.864 673.086C994.769 673.375 994.826 673.661 995.036 673.944C995.239 674.222 995.56 674.488 995.998 674.741C996.43 674.99 996.89 675.176 997.379 675.297C997.862 675.414 998.357 675.447 998.865 675.396C999.367 675.341 999.84 675.185 1000.28 674.928C1000.6 674.748 1000.81 674.554 1000.91 674.345C1001.02 674.136 1001.04 673.925 1000.96 673.713C1000.89 673.496 1000.74 673.291 1000.5 673.097L1001.9 672.288C1002.35 672.622 1002.65 672.985 1002.8 673.377C1002.95 673.766 1002.92 674.158 1002.7 674.554C1002.49 674.946 1002.1 675.309 1001.52 675.643ZM1008.11 671.842C1007.59 672.143 1007.02 672.341 1006.41 672.436C1005.8 672.524 1005.2 672.515 1004.61 672.408C1004.02 672.295 1003.48 672.095 1002.98 671.809C1002.49 671.523 1002.14 671.209 1001.94 670.868C1001.75 670.524 1001.74 670.177 1001.9 669.829C1002.06 669.477 1002.4 669.151 1002.92 668.85C1003.45 668.546 1004.02 668.348 1004.62 668.256C1005.23 668.161 1005.83 668.17 1006.42 668.283C1007.01 668.397 1007.55 668.597 1008.05 668.883C1008.54 669.169 1008.89 669.482 1009.09 669.823C1009.28 670.161 1009.29 670.507 1009.14 670.863C1008.98 671.211 1008.63 671.538 1008.11 671.842ZM1007.04 671.226C1007.32 671.065 1007.48 670.896 1007.54 670.72C1007.59 670.54 1007.55 670.362 1007.41 670.186C1007.27 670.003 1007.05 669.822 1006.73 669.642C1006.42 669.462 1006.11 669.332 1005.79 669.251C1005.48 669.167 1005.17 669.143 1004.87 669.18C1004.56 669.209 1004.27 669.305 1003.99 669.466C1003.72 669.624 1003.55 669.792 1003.5 669.972C1003.44 670.144 1003.48 670.322 1003.62 670.505C1003.76 670.689 1003.99 670.87 1004.3 671.05C1004.61 671.23 1004.92 671.36 1005.24 671.44C1005.55 671.517 1005.86 671.541 1006.16 671.512C1006.47 671.479 1006.77 671.384 1007.04 671.226ZM1006.73 666.783L1007.99 666.057L1008.7 666.464C1008.61 666.222 1008.61 665.989 1008.7 665.766C1008.8 665.542 1009.02 665.333 1009.35 665.139C1009.7 664.941 1010.07 664.816 1010.48 664.765C1010.88 664.713 1011.3 664.735 1011.73 664.831C1011.64 664.563 1011.65 664.303 1011.75 664.05C1011.86 663.789 1012.09 663.556 1012.45 663.351C1012.79 663.153 1013.17 663.028 1013.57 662.977C1013.99 662.922 1014.41 662.942 1014.84 663.038C1015.27 663.133 1015.69 663.298 1016.1 663.533L1019.18 665.315L1017.89 666.063L1014.95 664.369C1014.65 664.193 1014.34 664.09 1014.02 664.061C1013.7 664.031 1013.41 664.095 1013.13 664.253C1012.86 664.411 1012.72 664.601 1012.72 664.825C1012.72 665.045 1012.93 665.282 1013.37 665.535L1016.09 667.102L1014.79 667.85L1011.86 666.156C1011.55 665.98 1011.24 665.879 1010.92 665.854C1010.6 665.824 1010.31 665.887 1010.04 666.041C1009.76 666.202 1009.62 666.394 1009.61 666.618C1009.61 666.838 1009.83 667.075 1010.27 667.328L1012.98 668.895L1011.69 669.643L1006.73 666.783ZM1015.6 661.665L1016.86 660.939L1017.56 661.346C1017.47 661.104 1017.48 660.871 1017.57 660.647C1017.67 660.423 1017.88 660.214 1018.22 660.02C1018.56 659.822 1018.94 659.697 1019.34 659.646C1019.75 659.595 1020.17 659.617 1020.6 659.712C1020.5 659.444 1020.51 659.184 1020.62 658.931C1020.73 658.671 1020.96 658.438 1021.31 658.233C1021.66 658.035 1022.03 657.91 1022.44 657.859C1022.85 657.804 1023.27 657.824 1023.71 657.919C1024.14 658.014 1024.56 658.179 1024.96 658.414L1028.05 660.196L1026.75 660.944L1023.82 659.25C1023.51 659.074 1023.2 658.971 1022.89 658.942C1022.57 658.913 1022.27 658.977 1022 659.135C1021.73 659.292 1021.59 659.483 1021.58 659.707C1021.58 659.927 1021.8 660.163 1022.24 660.416L1024.95 661.984L1023.66 662.732L1020.72 661.038C1020.42 660.862 1020.1 660.761 1019.78 660.735C1019.46 660.706 1019.17 660.768 1018.9 660.922C1018.62 661.083 1018.48 661.276 1018.48 661.5C1018.48 661.72 1018.69 661.956 1019.13 662.209L1021.85 663.777L1020.55 664.525L1015.6 661.665ZM1031.86 658.13C1031.34 658.431 1030.77 658.629 1030.16 658.724C1029.55 658.812 1028.95 658.803 1028.36 658.697C1027.77 658.583 1027.23 658.383 1026.73 658.097C1026.24 657.811 1025.89 657.498 1025.69 657.157C1025.5 656.812 1025.49 656.466 1025.65 656.117C1025.81 655.765 1026.15 655.439 1026.67 655.138C1027.2 654.834 1027.77 654.636 1028.37 654.544C1028.98 654.449 1029.58 654.458 1030.17 654.572C1030.76 654.685 1031.3 654.885 1031.8 655.171C1032.29 655.457 1032.64 655.771 1032.84 656.112C1033.03 656.449 1033.04 656.796 1032.89 657.151C1032.73 657.5 1032.38 657.826 1031.86 658.13ZM1030.79 657.514C1031.07 657.353 1031.23 657.184 1031.28 657.008C1031.34 656.829 1031.3 656.651 1031.16 656.475C1031.02 656.291 1030.8 656.11 1030.48 655.93C1030.17 655.751 1029.86 655.62 1029.54 655.54C1029.23 655.455 1028.92 655.432 1028.62 655.468C1028.31 655.498 1028.02 655.593 1027.74 655.754C1027.47 655.912 1027.3 656.081 1027.25 656.26C1027.19 656.433 1027.23 656.61 1027.37 656.794C1027.51 656.977 1027.73 657.159 1028.05 657.338C1028.36 657.518 1028.67 657.648 1028.99 657.729C1029.3 657.806 1029.61 657.83 1029.91 657.8C1030.22 657.767 1030.52 657.672 1030.79 657.514ZM1030.48 653.071L1031.74 652.345L1032.42 652.736C1032.36 652.49 1032.39 652.252 1032.51 652.021C1032.63 651.786 1032.85 651.572 1033.19 651.377C1033.56 651.161 1033.96 651.023 1034.38 650.965C1034.8 650.899 1035.22 650.913 1035.66 651.009C1036.09 651.1 1036.52 651.265 1036.93 651.504L1040.02 653.286L1038.73 654.028L1035.8 652.334C1035.49 652.155 1035.17 652.056 1034.85 652.037C1034.52 652.015 1034.19 652.096 1033.87 652.279C1033.7 652.382 1033.57 652.505 1033.48 652.648C1033.4 652.783 1033.39 652.937 1033.46 653.11C1033.54 653.278 1033.72 653.447 1034.02 653.616L1036.73 655.183L1035.44 655.931L1030.48 653.071ZM1024.08 673.62C1023.49 673.961 1022.88 674.205 1022.26 674.352C1021.63 674.495 1021.01 674.533 1020.4 674.467C1019.8 674.398 1019.24 674.216 1018.72 673.923L1020.09 673.131C1020.58 673.398 1021.07 673.505 1021.55 673.45C1022.04 673.391 1022.52 673.222 1023 672.944C1023.4 672.713 1023.64 672.482 1023.73 672.251C1023.81 672.02 1023.7 671.82 1023.41 671.651C1023.25 671.556 1023.07 671.503 1022.87 671.492C1022.68 671.477 1022.42 671.514 1022.09 671.602C1021.76 671.682 1021.32 671.833 1020.77 672.053C1020.09 672.331 1019.48 672.526 1018.94 672.636C1018.41 672.738 1017.92 672.76 1017.46 672.702C1017.01 672.639 1016.58 672.489 1016.16 672.251C1015.78 672.031 1015.55 671.776 1015.47 671.486C1015.39 671.193 1015.46 670.887 1015.69 670.568C1015.92 670.245 1016.29 669.933 1016.81 669.633C1017.71 669.116 1018.6 668.837 1019.48 668.797C1020.36 668.756 1021.18 668.938 1021.93 669.341L1020.58 670.117C1020.16 669.9 1019.73 669.807 1019.3 669.836C1018.87 669.858 1018.41 670.007 1017.93 670.282C1017.58 670.487 1017.36 670.692 1017.29 670.898C1017.22 671.099 1017.3 671.268 1017.53 671.404C1017.71 671.503 1017.89 671.563 1018.08 671.585C1018.27 671.604 1018.53 671.574 1018.84 671.497C1019.16 671.417 1019.57 671.275 1020.09 671.074C1020.87 670.755 1021.54 670.54 1022.1 670.43C1022.66 670.317 1023.16 670.293 1023.57 670.359C1024 670.421 1024.4 670.562 1024.78 670.782C1025.23 671.039 1025.49 671.329 1025.57 671.651C1025.64 671.967 1025.55 672.295 1025.29 672.636C1025.03 672.973 1024.63 673.301 1024.08 673.62ZM1030.26 670.054C1029.75 670.348 1029.19 670.54 1028.59 670.632C1027.99 670.716 1027.39 670.703 1026.81 670.593C1026.22 670.48 1025.67 670.28 1025.18 669.994C1024.68 669.708 1024.34 669.394 1024.14 669.053C1023.94 668.712 1023.92 668.369 1024.07 668.025C1024.23 667.676 1024.57 667.356 1025.07 667.062C1025.59 666.765 1026.14 666.573 1026.74 666.485C1027.33 666.393 1027.93 666.411 1028.53 666.54C1029.13 666.661 1029.71 666.879 1030.26 667.194L1030.54 667.359L1026.86 669.482C1027.14 669.607 1027.42 669.691 1027.7 669.735C1027.98 669.772 1028.26 669.772 1028.52 669.735C1028.79 669.691 1029.03 669.605 1029.26 669.477C1029.53 669.315 1029.71 669.15 1029.79 668.982C1029.87 668.806 1029.85 668.63 1029.75 668.454L1031.01 667.728C1031.34 668.113 1031.45 668.512 1031.33 668.927C1031.21 669.334 1030.85 669.71 1030.26 670.054ZM1028.35 667.59C1027.94 667.429 1027.54 667.352 1027.15 667.359C1026.75 667.363 1026.39 667.456 1026.07 667.64C1025.75 667.827 1025.58 668.036 1025.58 668.267C1025.57 668.494 1025.7 668.725 1025.98 668.96L1028.35 667.59ZM1028.83 665.027L1030.08 664.301L1030.76 664.691C1030.7 664.446 1030.74 664.207 1030.86 663.976C1030.97 663.742 1031.2 663.527 1031.53 663.333C1031.91 663.117 1032.3 662.979 1032.72 662.92C1033.14 662.854 1033.57 662.869 1034 662.964C1034.44 663.056 1034.86 663.221 1035.28 663.459L1038.36 665.241L1037.08 665.984L1034.14 664.29C1033.83 664.11 1033.51 664.011 1033.19 663.993C1032.86 663.971 1032.54 664.052 1032.22 664.235C1032.04 664.338 1031.91 664.46 1031.83 664.603C1031.75 664.739 1031.74 664.893 1031.81 665.065C1031.89 665.234 1032.07 665.403 1032.36 665.571L1035.08 667.139L1033.78 667.887L1028.83 665.027ZM1041.83 663.372C1041.13 663.779 1040.43 664.017 1039.75 664.087C1039.08 664.153 1038.42 664.022 1037.78 663.696L1039.04 662.97C1039.38 663.128 1039.7 663.192 1040 663.163C1040.31 663.13 1040.64 663.016 1040.97 662.822C1041.25 662.664 1041.42 662.51 1041.49 662.36C1041.55 662.206 1041.5 662.079 1041.33 661.98C1041.2 661.91 1041.08 661.87 1040.96 661.859C1040.84 661.848 1040.67 661.874 1040.45 661.936C1040.23 661.991 1039.92 662.101 1039.53 662.266C1038.94 662.508 1038.42 662.673 1037.99 662.761C1037.56 662.849 1037.18 662.873 1036.86 662.833C1036.54 662.789 1036.24 662.684 1035.95 662.519C1035.48 662.248 1035.3 661.925 1035.42 661.551C1035.53 661.177 1035.91 660.805 1036.55 660.435C1037.26 660.024 1037.96 659.798 1038.64 659.758C1039.31 659.714 1039.92 659.841 1040.46 660.138L1039.26 660.831C1038.95 660.662 1038.65 660.598 1038.35 660.638C1038.05 660.678 1037.76 660.785 1037.46 660.957C1037.21 661.1 1037.05 661.245 1036.99 661.392C1036.93 661.535 1036.99 661.654 1037.15 661.749C1037.27 661.819 1037.4 661.857 1037.54 661.865C1037.68 661.865 1037.86 661.833 1038.09 661.771C1038.31 661.701 1038.61 661.586 1038.99 661.425C1039.58 661.183 1040.08 661.019 1040.51 660.935C1040.93 660.847 1041.3 660.827 1041.62 660.875C1041.94 660.919 1042.24 661.023 1042.53 661.188C1043.01 661.47 1043.19 661.81 1043.05 662.206C1042.91 662.594 1042.5 662.983 1041.83 663.372ZM1047.39 660.161C1046.88 660.455 1046.33 660.647 1045.72 660.739C1045.12 660.823 1044.53 660.81 1043.94 660.7C1043.35 660.587 1042.81 660.387 1042.31 660.101C1041.82 659.815 1041.47 659.501 1041.27 659.16C1041.08 658.819 1041.06 658.476 1041.21 658.132C1041.37 657.783 1041.7 657.463 1042.21 657.169C1042.72 656.872 1043.28 656.68 1043.88 656.592C1044.47 656.5 1045.06 656.518 1045.67 656.647C1046.27 656.768 1046.84 656.986 1047.39 657.301L1047.68 657.466L1044 659.589C1044.28 659.714 1044.56 659.798 1044.84 659.842C1045.12 659.879 1045.39 659.879 1045.66 659.842C1045.92 659.798 1046.17 659.712 1046.39 659.584C1046.67 659.422 1046.85 659.257 1046.92 659.089C1047 658.913 1046.99 658.737 1046.89 658.561L1048.14 657.835C1048.48 658.22 1048.59 658.619 1048.47 659.034C1048.35 659.441 1047.99 659.817 1047.39 660.161ZM1045.49 657.697C1045.08 657.536 1044.68 657.459 1044.29 657.466C1043.89 657.47 1043.53 657.563 1043.21 657.747C1042.88 657.934 1042.72 658.143 1042.71 658.374C1042.7 658.601 1042.83 658.832 1043.11 659.067L1045.49 657.697Z" fill="#5F52FF"/>
|
|
240
|
+
<g id="task">
|
|
241
|
+
<rect id="Rectangle 115_3" x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 836.865 457.333)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
242
|
+
<rect id="Rectangle 116_2" x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 842.865 486.816)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
243
|
+
<circle id="Ellipse 8_2" cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 849.749 499.766)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
244
|
+
<path id="Vector 82" d="M872.249 504.766L899.249 495.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
245
|
+
<path id="Vector 83" d="M838.249 460.266L843.749 489.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
246
|
+
<path id="Vector 84" d="M838.249 530.766L843.749 521.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
247
|
+
<path id="Vector 85" d="M871.749 537.266L899.249 566.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
248
|
+
</g>
|
|
249
|
+
<g id="common-sense">
|
|
250
|
+
<rect id="Rectangle 115_4" x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 991.865 546.333)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
251
|
+
<rect id="Rectangle 116_3" x="0.866025" y="1.5" width="32.641" height="32.641" transform="matrix(0.866025 0.5 -2.20305e-08 1 997.865 575.816)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
252
|
+
<circle id="Ellipse 8_3" cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 1004.75 588.766)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
253
|
+
<path id="Vector 82_2" d="M1027.25 593.766L1054.25 584.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
254
|
+
<path id="Vector 83_2" d="M993.249 549.266L998.749 578.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
255
|
+
<path id="Vector 84_2" d="M993.249 619.766L998.749 610.766" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
256
|
+
<path id="Vector 85_2" d="M1026.75 626.266L1054.25 655.266" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
257
|
+
</g>
|
|
258
|
+
<g id="ethics">
|
|
259
|
+
<rect id="Rectangle 114_4" x="0.866025" y="1.5" width="71.9008" height="71.9008" transform="matrix(0.866025 0.5 -2.20305e-08 1 914.865 502.333)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
|
|
260
|
+
<circle id="Ellipse 8_4" cx="8.48666" cy="8.48666" r="7.48666" transform="matrix(0.866025 0.5 -2.20305e-08 1 939.749 545.766)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
|
|
261
|
+
</g>
|
|
262
|
+
<g id="Group 201">
|
|
263
|
+
<circle id="Ellipse 13_14" cx="8.5084" cy="8.5084" r="8.5084" transform="matrix(0.866025 -0.5 0.866025 0.5 877.552 603.508)" fill="#210C4B"/>
|
|
264
|
+
<path id="12_11" d="M891.748 605.695L892.016 602.96C892.033 602.73 892.002 602.525 891.921 602.345C891.834 602.161 891.675 602.003 891.445 601.87C891.196 601.726 890.919 601.663 890.613 601.68C890.301 601.693 890.004 601.781 889.721 601.945C889.513 602.065 889.372 602.193 889.297 602.33C889.222 602.46 889.228 602.596 889.314 602.74C889.395 602.88 889.551 603.016 889.782 603.15L888.561 603.855C888.11 603.595 887.813 603.323 887.669 603.04C887.519 602.753 887.524 602.466 887.686 602.18C887.853 601.89 888.177 601.606 888.656 601.33C889.077 601.086 889.528 600.916 890.007 600.82C890.486 600.716 890.954 600.693 891.41 600.75C891.866 600.8 892.267 600.925 892.614 601.125C892.995 601.345 893.246 601.606 893.367 601.91C893.494 602.21 893.543 602.538 893.514 602.895L893.367 604.7L896.156 603.09L897.221 603.705L892.761 606.28L891.748 605.695Z" fill="#F8F7FF"/>
|
|
265
|
+
</g>
|
|
266
|
+
<path id="Ethics" d="M934.925 625.21L940.021 622.267L941.269 622.988L937.563 625.127L939.069 625.996L942.498 624.016L943.689 624.704L940.259 626.684L941.926 627.646L945.613 625.518L946.861 626.238L941.784 629.17L934.925 625.21ZM949.958 624.451C949.646 624.63 949.354 624.759 949.081 624.836C948.802 624.909 948.506 624.926 948.195 624.885C947.89 624.841 947.566 624.72 947.224 624.522L944.556 622.982L943.699 623.477L942.718 622.911L943.575 622.416L942.051 621.536L943.346 620.788L944.871 621.668L946.109 620.953L947.09 621.519L945.852 622.234L948.386 623.697C948.545 623.789 948.697 623.837 948.843 623.84C948.983 623.84 949.138 623.791 949.31 623.692L950.081 623.246L951.063 623.813L949.958 624.451ZM945.323 619.207L946.618 618.459L949.152 619.922C949.108 619.683 949.146 619.452 949.267 619.229C949.387 619.005 949.61 618.8 949.934 618.613C950.308 618.396 950.705 618.259 951.124 618.2C951.544 618.134 951.969 618.149 952.401 618.244C952.839 618.336 953.265 618.501 953.677 618.739L956.764 620.521L955.478 621.264L952.544 619.57C952.233 619.39 951.915 619.291 951.591 619.273C951.261 619.251 950.937 619.331 950.62 619.515C950.442 619.617 950.311 619.74 950.229 619.883C950.146 620.019 950.14 620.173 950.21 620.345C950.286 620.514 950.47 620.682 950.762 620.851L953.477 622.419L952.182 623.167L945.323 619.207ZM953.172 616.875L954.468 616.127L959.421 618.987L958.126 619.735L953.172 616.875ZM951.267 615.775L952.562 615.027L953.715 615.692L952.42 616.44L951.267 615.775ZM963.177 616.95C962.669 617.244 962.117 617.434 961.52 617.522C960.923 617.603 960.332 617.588 959.748 617.478C959.157 617.365 958.614 617.165 958.119 616.879C957.624 616.593 957.278 616.279 957.081 615.938C956.884 615.597 956.858 615.256 957.004 614.915C957.157 614.571 957.487 614.252 957.995 613.958C958.675 613.566 959.386 613.353 960.129 613.32C960.872 613.287 961.574 613.417 962.234 613.711L960.939 614.459C960.621 614.341 960.297 614.294 959.967 614.316C959.637 614.33 959.335 614.417 959.062 614.574C958.808 614.721 958.659 614.88 958.614 615.053C958.564 615.221 958.608 615.397 958.748 615.581C958.894 615.76 959.122 615.94 959.434 616.12C959.745 616.299 960.056 616.431 960.367 616.516C960.678 616.593 960.983 616.618 961.282 616.593C961.58 616.567 961.856 616.481 962.111 616.334C962.396 616.169 962.549 615.99 962.568 615.795C962.593 615.597 962.482 615.401 962.234 615.207L963.53 614.459C964.057 614.851 964.298 615.269 964.254 615.713C964.203 616.153 963.844 616.565 963.177 616.95ZM968.575 613.834C967.87 614.241 967.178 614.479 966.498 614.549C965.825 614.615 965.168 614.485 964.527 614.158L965.784 613.432C966.121 613.59 966.441 613.654 966.746 613.625C967.057 613.592 967.381 613.478 967.718 613.284C967.991 613.126 968.162 612.972 968.232 612.822C968.296 612.668 968.242 612.541 968.07 612.442C967.95 612.373 967.829 612.332 967.708 612.321C967.588 612.31 967.416 612.336 967.194 612.398C966.972 612.453 966.667 612.563 966.279 612.728C965.682 612.97 965.168 613.135 964.736 613.223C964.304 613.311 963.926 613.335 963.602 613.295C963.285 613.251 962.983 613.146 962.697 612.981C962.228 612.71 962.05 612.387 962.164 612.013C962.278 611.639 962.656 611.267 963.298 610.897C964.009 610.486 964.704 610.261 965.384 610.22C966.057 610.176 966.664 610.303 967.203 610.6L966.003 611.293C965.698 611.124 965.397 611.06 965.098 611.1C964.8 611.141 964.501 611.247 964.203 611.419C963.955 611.562 963.799 611.707 963.736 611.854C963.679 611.997 963.733 612.116 963.898 612.211C964.018 612.281 964.149 612.32 964.288 612.327C964.428 612.327 964.609 612.296 964.831 612.233C965.054 612.164 965.355 612.048 965.736 611.887C966.321 611.645 966.826 611.482 967.251 611.397C967.67 611.309 968.042 611.289 968.366 611.337C968.683 611.381 968.985 611.485 969.271 611.65C969.76 611.933 969.934 612.272 969.795 612.668C969.655 613.057 969.248 613.445 968.575 613.834Z" fill="#5F52FF"/>
|
|
267
|
+
<path id="Task" d="M868.906 577.929L866.744 579.178L865.496 578.457L871.231 575.146L872.479 575.867L870.316 577.115L875.927 580.355L874.517 581.169L868.906 577.929ZM880.775 577.688C880.228 578.004 879.66 578.182 879.069 578.222C878.472 578.259 877.936 578.139 877.459 577.864C877.167 577.696 876.989 577.516 876.926 577.325C876.862 577.127 876.907 576.911 877.059 576.676C877.218 576.438 877.485 576.167 877.86 575.862L879.022 574.905L878.765 574.757C878.542 574.629 878.31 574.572 878.069 574.586C877.828 574.601 877.555 574.696 877.25 574.872C876.964 575.037 876.793 575.206 876.735 575.378C876.685 575.547 876.777 575.703 877.012 575.846L875.726 576.588C875.173 576.262 874.96 575.897 875.087 575.494C875.214 575.083 875.605 574.689 876.259 574.311C876.964 573.904 877.625 573.673 878.241 573.618C878.863 573.56 879.409 573.666 879.879 573.937L883.461 576.005L882.232 576.715L881.68 576.396C881.711 576.649 881.651 576.882 881.499 577.094C881.346 577.3 881.105 577.498 880.775 577.688ZM880.165 576.962C880.381 576.838 880.54 576.702 880.641 576.555C880.749 576.405 880.778 576.249 880.727 576.088C880.676 575.927 880.527 575.774 880.279 575.631L879.86 575.389L878.936 576.198C878.688 576.407 878.545 576.577 878.507 576.709C878.463 576.838 878.539 576.959 878.736 577.072C878.926 577.182 879.146 577.232 879.393 577.221C879.641 577.203 879.898 577.116 880.165 576.962ZM886.803 574.208C886.098 574.615 885.406 574.853 884.727 574.923C884.053 574.989 883.396 574.859 882.755 574.532L884.012 573.806C884.349 573.964 884.669 574.028 884.974 573.999C885.285 573.966 885.609 573.852 885.946 573.658C886.219 573.5 886.39 573.346 886.46 573.196C886.524 573.042 886.47 572.915 886.298 572.816C886.178 572.747 886.057 572.706 885.936 572.695C885.816 572.684 885.644 572.71 885.422 572.772C885.2 572.827 884.895 572.937 884.507 573.102C883.91 573.344 883.396 573.509 882.964 573.597C882.532 573.685 882.154 573.709 881.831 573.669C881.513 573.625 881.211 573.52 880.926 573.355C880.456 573.084 880.278 572.761 880.392 572.387C880.506 572.013 880.884 571.641 881.526 571.271C882.237 570.86 882.932 570.635 883.612 570.594C884.285 570.55 884.892 570.677 885.432 570.974L884.231 571.667C883.926 571.498 883.625 571.434 883.326 571.474C883.028 571.515 882.729 571.621 882.431 571.793C882.183 571.936 882.027 572.081 881.964 572.228C881.907 572.371 881.961 572.49 882.126 572.585C882.247 572.655 882.377 572.693 882.516 572.701C882.656 572.701 882.837 572.67 883.059 572.607C883.282 572.538 883.583 572.422 883.964 572.261C884.549 572.019 885.054 571.856 885.479 571.771C885.898 571.683 886.27 571.663 886.594 571.711C886.911 571.755 887.213 571.859 887.499 572.024C887.988 572.307 888.162 572.646 888.023 573.042C887.883 573.43 887.476 573.819 886.803 574.208ZM883.114 568.286L884.409 567.538L888.315 569.793L888.248 567.521L889.782 566.636L889.792 568.808L894.86 569.424L893.345 570.299L889.801 569.848L889.82 570.662L891.268 571.498L889.973 572.246L883.114 568.286Z" fill="#5F52FF"/>
|
|
268
|
+
</g>
|
|
269
|
+
<g id="Group 223">
|
|
270
|
+
<rect id="Rectangle 114_5" width="51.5394" height="12.5115" rx="6.25577" transform="matrix(0.866025 -0.5 0.866025 0.5 432.428 529.031)" fill="#18D895"/>
|
|
271
|
+
<rect id="Rectangle 116_4" width="51.5394" height="12.5115" rx="6.25577" transform="matrix(0.866025 -0.5 0.866025 0.5 418.552 520.77)" fill="#E9725A"/>
|
|
272
|
+
<rect id="Rectangle 117_4" width="51.5394" height="12.5115" rx="6.25577" transform="matrix(0.866025 -0.5 0.866025 0.5 404.552 512.77)" fill="#6CD3FF"/>
|
|
273
|
+
<path id="Memory" d="M439.63 527.6L441.475 526.535L447.45 528.235L444.497 524.79L446.342 523.725L452.577 527.325L451.365 528.025L446.74 525.355L449.763 528.95L448.689 529.57L442.453 527.83L447.078 530.5L445.866 531.2L439.63 527.6ZM456.063 525.432C455.601 525.699 455.096 525.874 454.548 525.957C453.999 526.034 453.459 526.022 452.928 525.922C452.391 525.819 451.898 525.637 451.447 525.377C450.997 525.117 450.682 524.832 450.503 524.522C450.324 524.212 450.304 523.901 450.443 523.587C450.587 523.271 450.89 522.979 451.352 522.712C451.82 522.442 452.325 522.267 452.868 522.187C453.405 522.104 453.947 522.121 454.496 522.237C455.044 522.347 455.567 522.546 456.063 522.832L456.323 522.982L452.98 524.912C453.234 525.026 453.488 525.102 453.742 525.142C453.996 525.176 454.245 525.176 454.487 525.142C454.73 525.102 454.952 525.024 455.154 524.907C455.408 524.761 455.57 524.611 455.639 524.457C455.708 524.297 455.697 524.137 455.604 523.977L456.747 523.317C457.053 523.667 457.152 524.031 457.042 524.407C456.932 524.777 456.606 525.119 456.063 525.432ZM454.331 523.192C453.962 523.046 453.598 522.976 453.24 522.982C452.876 522.986 452.55 523.071 452.261 523.237C451.967 523.407 451.817 523.597 451.811 523.807C451.8 524.014 451.921 524.224 452.175 524.437L454.331 523.192ZM454.765 520.862L455.908 520.202L456.549 520.572C456.468 520.352 456.471 520.14 456.557 519.937C456.644 519.734 456.84 519.544 457.146 519.367C457.458 519.187 457.799 519.074 458.168 519.027C458.538 518.98 458.919 519 459.311 519.087C459.225 518.844 459.231 518.607 459.329 518.377C459.427 518.14 459.638 517.929 459.961 517.742C460.273 517.562 460.613 517.449 460.983 517.402C461.358 517.352 461.742 517.37 462.135 517.457C462.527 517.544 462.908 517.694 463.278 517.907L466.084 519.527L464.906 520.207L462.239 518.667C461.961 518.507 461.679 518.414 461.39 518.387C461.101 518.36 460.833 518.419 460.584 518.562C460.336 518.705 460.209 518.879 460.203 519.082C460.203 519.282 460.403 519.497 460.801 519.727L463.269 521.152L462.091 521.832L459.424 520.292C459.147 520.132 458.861 520.04 458.567 520.017C458.278 519.99 458.012 520.047 457.77 520.187C457.516 520.334 457.386 520.509 457.38 520.712C457.38 520.912 457.579 521.127 457.978 521.357L460.446 522.782L459.268 523.462L454.765 520.862ZM469.545 517.649C469.071 517.922 468.557 518.102 468.003 518.189C467.449 518.269 466.903 518.261 466.366 518.164C465.829 518.061 465.336 517.879 464.885 517.619C464.435 517.359 464.12 517.074 463.941 516.764C463.768 516.451 463.754 516.136 463.898 515.819C464.048 515.499 464.36 515.202 464.833 514.929C465.313 514.652 465.826 514.472 466.375 514.389C466.929 514.302 467.475 514.311 468.012 514.414C468.549 514.517 469.042 514.699 469.493 514.959C469.943 515.219 470.258 515.504 470.437 515.814C470.61 516.121 470.624 516.436 470.48 516.759C470.336 517.076 470.024 517.372 469.545 517.649ZM468.575 517.089C468.829 516.942 468.979 516.789 469.025 516.629C469.077 516.466 469.039 516.304 468.912 516.144C468.785 515.977 468.58 515.812 468.297 515.649C468.015 515.486 467.729 515.367 467.44 515.294C467.157 515.217 466.877 515.196 466.6 515.229C466.323 515.256 466.057 515.342 465.803 515.489C465.555 515.632 465.405 515.786 465.353 515.949C465.301 516.106 465.339 516.267 465.466 516.434C465.593 516.601 465.798 516.766 466.08 516.929C466.363 517.092 466.649 517.211 466.938 517.284C467.221 517.354 467.501 517.376 467.778 517.349C468.061 517.319 468.326 517.232 468.575 517.089ZM468.296 513.05L469.439 512.39L470.218 512.84C470.068 512.587 470.042 512.358 470.14 512.155C470.233 511.948 470.429 511.758 470.729 511.585L471.093 511.375L472.176 512L471.76 512.24C471.494 512.393 471.312 512.548 471.214 512.705C471.11 512.858 471.107 513.023 471.206 513.2C471.304 513.37 471.52 513.552 471.855 513.745L473.977 514.97L472.799 515.65L468.296 513.05ZM477.244 513.984L477.972 513.564C478.104 513.487 478.194 513.419 478.24 513.359C478.298 513.299 478.321 513.239 478.309 513.179C478.298 513.119 478.263 513.045 478.205 512.959L478.015 512.709L471.745 511.059L473.018 510.324L477.452 511.644L475.131 509.104L476.395 508.374L479.53 512.284C479.709 512.507 479.828 512.705 479.886 512.879C479.943 513.052 479.926 513.225 479.834 513.399C479.753 513.572 479.565 513.744 479.271 513.914L478.197 514.534L477.244 513.984Z" fill="#F2F2F5"/>
|
|
274
|
+
<path id="Defer" d="M425.63 519.1L428.003 517.73C428.702 517.327 429.421 517.068 430.16 516.955C430.899 516.835 431.617 516.843 432.316 516.98C433.015 517.117 433.667 517.36 434.273 517.71C434.874 518.057 435.292 518.432 435.529 518.835C435.766 519.238 435.783 519.655 435.581 520.085C435.385 520.512 434.937 520.927 434.239 521.33L431.866 522.7L425.63 519.1ZM433.147 520.7C433.569 520.457 433.829 520.207 433.927 519.95C434.025 519.687 433.987 519.432 433.814 519.185C433.635 518.935 433.349 518.697 432.957 518.47C432.558 518.24 432.146 518.075 431.718 517.975C431.285 517.872 430.844 517.85 430.393 517.91C429.949 517.967 429.516 518.117 429.094 518.36L427.986 519L432.039 521.34L433.147 520.7ZM440.617 517.767C440.155 518.034 439.65 518.209 439.102 518.292C438.553 518.369 438.013 518.357 437.482 518.257C436.945 518.154 436.452 517.972 436.001 517.712C435.551 517.452 435.236 517.167 435.057 516.857C434.878 516.547 434.858 516.236 434.997 515.922C435.141 515.606 435.444 515.314 435.906 515.047C436.374 514.777 436.879 514.602 437.421 514.522C437.958 514.439 438.501 514.456 439.05 514.572C439.598 514.682 440.121 514.881 440.617 515.167L440.877 515.317L437.534 517.247C437.788 517.361 438.042 517.437 438.296 517.477C438.55 517.511 438.798 517.511 439.041 517.477C439.283 517.437 439.506 517.359 439.708 517.242C439.962 517.096 440.123 516.946 440.193 516.792C440.262 516.632 440.251 516.472 440.158 516.312L441.301 515.652C441.607 516.002 441.705 516.366 441.596 516.742C441.486 517.112 441.16 517.454 440.617 517.767ZM438.885 515.527C438.516 515.381 438.152 515.311 437.794 515.317C437.43 515.321 437.104 515.406 436.815 515.572C436.521 515.742 436.371 515.932 436.365 516.142C436.353 516.349 436.475 516.559 436.729 516.772L438.885 515.527ZM440.67 513.447L439.89 513.897L438.998 513.382L439.778 512.932L439.223 512.612C438.917 512.435 438.73 512.267 438.66 512.107C438.597 511.944 438.626 511.79 438.747 511.647C438.862 511.5 439.062 511.345 439.345 511.182L440.349 510.602L441.241 511.117L440.54 511.522C440.384 511.612 440.306 511.694 440.306 511.767C440.306 511.84 440.378 511.919 440.522 512.002L440.955 512.252L442.081 511.602L442.973 512.117L441.847 512.767L445.459 514.852L444.281 515.532L440.67 513.447ZM449.776 512.48C449.314 512.746 448.809 512.921 448.26 513.005C447.712 513.081 447.172 513.07 446.641 512.97C446.104 512.866 445.61 512.685 445.16 512.425C444.709 512.165 444.395 511.88 444.216 511.57C444.037 511.26 444.017 510.948 444.155 510.635C444.3 510.318 444.603 510.026 445.065 509.76C445.532 509.49 446.037 509.315 446.58 509.235C447.117 509.151 447.66 509.168 448.208 509.285C448.757 509.395 449.279 509.593 449.776 509.88L450.035 510.03L446.693 511.96C446.947 512.073 447.201 512.15 447.455 512.19C447.709 512.223 447.957 512.223 448.2 512.19C448.442 512.15 448.664 512.071 448.866 511.955C449.12 511.808 449.282 511.658 449.351 511.505C449.421 511.345 449.409 511.185 449.317 511.025L450.46 510.365C450.766 510.715 450.864 511.078 450.754 511.455C450.645 511.825 450.318 512.166 449.776 512.48ZM448.044 510.24C447.674 510.093 447.31 510.023 446.952 510.03C446.589 510.033 446.263 510.118 445.974 510.285C445.679 510.455 445.529 510.645 445.524 510.855C445.512 511.061 445.633 511.271 445.887 511.485L448.044 510.24ZM448.477 507.909L449.62 507.249L450.4 507.699C450.25 507.446 450.224 507.218 450.322 507.014C450.414 506.808 450.61 506.618 450.911 506.444L451.274 506.234L452.357 506.859L451.941 507.099C451.676 507.253 451.494 507.408 451.396 507.564C451.292 507.718 451.289 507.883 451.387 508.059C451.485 508.229 451.702 508.411 452.036 508.604L454.158 509.829L452.98 510.509L448.477 507.909Z" fill="#F2F2F5"/>
|
|
275
|
+
<path id="Act" d="M414.553 509.49L416.034 508.635L424.677 510.845L423.334 511.62L421.524 511.135L418.883 512.66L419.714 513.71L418.415 514.46L414.553 509.49ZM420.078 510.73L416.501 509.765L418.181 511.825L420.078 510.73ZM427.719 509.209C427.257 509.475 426.754 509.649 426.212 509.729C425.669 509.802 425.132 509.789 424.601 509.689C424.064 509.585 423.57 509.404 423.12 509.144C422.67 508.884 422.355 508.599 422.176 508.289C421.997 507.979 421.974 507.669 422.107 507.359C422.245 507.045 422.546 506.755 423.007 506.489C423.625 506.132 424.272 505.939 424.947 505.909C425.623 505.879 426.261 505.997 426.861 506.264L425.683 506.944C425.395 506.837 425.1 506.794 424.8 506.814C424.5 506.827 424.226 506.905 423.977 507.049C423.746 507.182 423.611 507.327 423.57 507.484C423.524 507.637 423.565 507.797 423.692 507.964C423.824 508.127 424.032 508.29 424.315 508.454C424.598 508.617 424.881 508.737 425.164 508.814C425.447 508.884 425.724 508.907 425.995 508.884C426.267 508.86 426.518 508.782 426.749 508.649C427.008 508.499 427.147 508.335 427.164 508.159C427.187 507.979 427.086 507.8 426.861 507.624L428.039 506.944C428.518 507.3 428.738 507.68 428.697 508.084C428.651 508.484 428.325 508.859 427.719 509.209ZM432.478 506.341C432.196 506.504 431.93 506.621 431.682 506.691C431.428 506.757 431.159 506.772 430.876 506.736C430.599 506.696 430.305 506.586 429.993 506.406L427.568 505.006L426.789 505.456L425.897 504.941L426.676 504.491L425.29 503.691L426.468 503.011L427.854 503.811L428.98 503.161L429.872 503.676L428.746 504.326L431.049 505.656C431.194 505.739 431.332 505.782 431.465 505.786C431.592 505.786 431.734 505.741 431.89 505.651L432.591 505.246L433.483 505.761L432.478 506.341Z" fill="#F2F2F5"/>
|
|
276
|
+
</g>
|
|
277
|
+
</g>
|
|
278
|
+
</svg>
|