moex-vibe/graphify-out/graph.html
Sergey Krylov 2ed356fbcd docs: document MCP tools setup (code-index-mcp, serena, graphify)
- Add code-index-mcp and serena sections to AGENTS.md
- Update AGENTS.md MCP tools description in obligatory approach
- Add graphify hooks (post-checkout, post-commit) for auto graph rebuild
- Add serena project config
- Add graphify-out knowledge graph artifacts
- Ignore dev.db and graphify-out/cache/ in .gitignore
2026-06-24 13:32:10 +03:00

307 lines
3.5 MiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>graphify - graphify-out/graph.html</title>
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
crossorigin="anonymous"></script>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
#graph { flex: 1; }
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
#search:focus { border-color: #4E79A7; }
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item:hover { background: #2a2a4e; }
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
#info-content .field { margin-bottom: 5px; }
#info-content .field b { color: #e0e0e0; }
#info-content .empty { color: #555; font-style: italic; }
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
.neighbor-link:hover { background: #2a2a4e; }
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
.legend-item.dimmed { opacity: 0.35; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.legend-count { color: #666; font-size: 11px; }
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
#legend-controls label:hover { color: #e0e0e0; }
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
</style>
</head>
<body>
<div id="graph"></div>
<div id="sidebar">
<div id="search-wrap">
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
<div id="search-results"></div>
</div>
<div id="info-panel">
<h3>Node Info</h3>
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
</div>
<div id="legend-wrap">
<h3>Communities</h3>
<div id="legend-controls">
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
</div>
<div id="legend"></div>
</div>
<div id="stats">4069 nodes &middot; 5724 edges &middot; 284 communities</div>
</div>
<script>
const RAW_NODES = [{"id": "husky", "label": "husky.sh", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "husky.sh", "community": 10, "community_name": "Community 10", "source_file": ".husky/_/husky.sh", "file_type": "code", "degree": 2}, {"id": "users_ksv741_project_ksv741_moex_vibe_husky_husky_sh__entry", "label": "husky.sh script", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "husky.sh script", "community": 10, "community_name": "Community 10", "source_file": ".husky/_/husky.sh", "file_type": "code", "degree": 1}, {"id": "backend_eslintrc", "label": ".eslintrc.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".eslintrc.js", "community": 104, "community_name": "Community 104", "source_file": "apps/backend/.eslintrc.js", "file_type": "code", "degree": 0}, {"id": "backend_nest_cli", "label": "nest-cli.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "nest-cli.json", "community": 92, "community_name": "Community 92", "source_file": "apps/backend/nest-cli.json", "file_type": "code", "degree": 3}, {"id": "backend_nest_cli_collection", "label": "collection", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "collection", "community": 92, "community_name": "Community 92", "source_file": "apps/backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_sourceroot", "label": "sourceRoot", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceRoot", "community": 92, "community_name": "Community 92", "source_file": "apps/backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_compileroptions", "label": "compilerOptions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 92, "community_name": "Community 92", "source_file": "apps/backend/nest-cli.json", "file_type": "code", "degree": 3}, {"id": "backend_nest_cli_compileroptions_assets", "label": "assets", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "assets", "community": 92, "community_name": "Community 92", "source_file": "apps/backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_compileroptions_watchassets", "label": "watchAssets", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "watchAssets", "community": 92, "community_name": "Community 92", "source_file": "apps/backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_package", "label": "package.json", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 94, "community_name": "Community 94", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 6}, {"id": "backend_package_name", "label": "name", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 94, "community_name": "Community 94", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_version", "label": "version", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 94, "community_name": "Community 94", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_private", "label": "private", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 94, "community_name": "Community 94", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts", "label": "scripts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 9}, {"id": "backend_package_scripts_postinstall", "label": "postinstall", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "postinstall", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_build", "label": "build", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_dev", "label": "start:dev", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start:dev", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_prod", "label": "start:prod", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start:prod", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_lint", "label": "lint", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test", "label": "test", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_watch", "label": "test:watch", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:watch", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_integration", "label": "test:integration", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:integration", "community": 84, "community_name": "Community 84", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies", "label": "dependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 26}, {"id": "backend_package_dependencies_grpc_grpc_js", "label": "@grpc/grpc-js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@grpc/grpc-js", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_grpc_proto_loader", "label": "@grpc/proto-loader", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@grpc/proto-loader", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_libsql_client", "label": "@libsql/client", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@libsql/client", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_axios", "label": "@nestjs/axios", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/axios", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_cache_manager", "label": "@nestjs/cache-manager", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/cache-manager", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_common", "label": "@nestjs/common", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/common", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_config", "label": "@nestjs/config", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/config", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_core", "label": "@nestjs/core", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/core", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_jwt", "label": "@nestjs/jwt", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/jwt", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_platform_express", "label": "@nestjs/platform-express", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/platform-express", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_nestjs_swagger", "label": "@nestjs/swagger", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/swagger", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_prisma_adapter_libsql", "label": "@prisma/adapter-libsql", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/adapter-libsql", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_prisma_client", "label": "@prisma/client", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/client", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_axios", "label": "axios", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_bcrypt", "label": "bcrypt", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bcrypt", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_cache_manager", "label": "cache-manager", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cache-manager", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_class_transformer", "label": "class-transformer", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "class-transformer", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_class_validator", "label": "class-validator", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "class-validator", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_cookie_parser", "label": "cookie-parser", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cookie-parser", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_long", "label": "long", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "long", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_p_queue", "label": "p-queue", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "p-queue", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_protobufjs", "label": "protobufjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "protobufjs", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_reflect_metadata", "label": "reflect-metadata", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "reflect-metadata", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_rxjs", "label": "rxjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rxjs", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_swagger_ui_express", "label": "swagger-ui-express", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "swagger-ui-express", "community": 18, "community_name": "Community 18", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies", "label": "devDependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 16}, {"id": "backend_package_devdependencies_nestjs_cli", "label": "@nestjs/cli", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/cli", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_schematics", "label": "@nestjs/schematics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/schematics", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_testing", "label": "@nestjs/testing", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/testing", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_swc_core", "label": "@swc/core", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@swc/core", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_types_bcrypt", "label": "@types/bcrypt", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcrypt", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_types_cookie_parser", "label": "@types/cookie-parser", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/cookie-parser", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_types_express", "label": "@types/express", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/express", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_typescript_eslint_eslint_plugin", "label": "@typescript-eslint/eslint-plugin", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@typescript-eslint/eslint-plugin", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_typescript_eslint_parser", "label": "@typescript-eslint/parser", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@typescript-eslint/parser", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_prisma", "label": "prisma", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_unplugin_swc", "label": "unplugin-swc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "unplugin-swc", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_vitest", "label": "vitest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 42, "community_name": "Community 42", "source_file": "apps/backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_config", "label": "prisma.config.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma.config.ts", "community": 105, "community_name": "Community 105", "source_file": "apps/backend/prisma.config.ts", "file_type": "code", "degree": 0}, {"id": "src_app_module", "label": "app.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "app.module.ts", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/app.module.ts", "file_type": "code", "degree": 25}, {"id": "src_app_module_appmodule", "label": "AppModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AppModule", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/app.module.ts", "file_type": "code", "degree": 2}, {"id": "dto_api_response_dto", "label": "api-response.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "api-response.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/common/dto/api-response.dto.ts", "file_type": "code", "degree": 15}, {"id": "dto_api_response_dto_apiresponsemeta", "label": "ApiResponseMeta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiResponseMeta", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/common/dto/api-response.dto.ts", "file_type": "code", "degree": 22}, {"id": "dto_api_response_dto_apiresponsemeta_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/common/dto/api-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_api_response_dto_apiresponse", "label": "ApiResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiResponse", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/dto/api-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_api_response_dto_apiresponse_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/dto/api-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_pagination_dto", "label": "pagination.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pagination.dto.ts", "community": 100, "community_name": "Community 100", "source_file": "apps/backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_pagination_dto_paginationdto", "label": "PaginationDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationDto", "community": 100, "community_name": "Community 100", "source_file": "apps/backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 1}, {"id": "filters_http_exception_filter", "label": "http-exception.filter.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "http-exception.filter.ts", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 2}, {"id": "filters_http_exception_filter_httpexceptionfilter", "label": "HttpExceptionFilter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HttpExceptionFilter", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 3}, {"id": "filters_http_exception_filter_httpexceptionfilter_catch", "label": ".catch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".catch()", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 1}, {"id": "interceptors_transform_interceptor", "label": "transform.interceptor.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "transform.interceptor.ts", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/interceptors/transform.interceptor.ts", "file_type": "code", "degree": 4}, {"id": "interceptors_transform_interceptor_transforminterceptor", "label": "TransformInterceptor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TransformInterceptor", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/interceptors/transform.interceptor.ts", "file_type": "code", "degree": 3}, {"id": "interceptors_transform_interceptor_transforminterceptor_intercept", "label": ".intercept()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".intercept()", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/interceptors/transform.interceptor.ts", "file_type": "code", "degree": 2}, {"id": "middleware_request_logging_middleware", "label": "request-logging.middleware.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "request-logging.middleware.ts", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/middleware/request-logging.middleware.ts", "file_type": "code", "degree": 2}, {"id": "middleware_request_logging_middleware_requestloggingmiddleware", "label": "RequestLoggingMiddleware", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestLoggingMiddleware", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/middleware/request-logging.middleware.ts", "file_type": "code", "degree": 3}, {"id": "middleware_request_logging_middleware_requestloggingmiddleware_use", "label": ".use()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".use()", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/common/middleware/request-logging.middleware.ts", "file_type": "code", "degree": 1}, {"id": "config_configuration", "label": "configuration.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "configuration.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/config/configuration.ts", "file_type": "code", "degree": 4}, {"id": "apps_backend_src_main_ts_src_main", "label": "main.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main.ts", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/main.ts", "file_type": "code", "degree": 9}, {"id": "src_main_bootstrap", "label": "bootstrap()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bootstrap()", "community": 51, "community_name": "Community 51", "source_file": "apps/backend/src/main.ts", "file_type": "code", "degree": 1}, {"id": "auth_auth_controller", "label": "auth.controller.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.controller.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 21}, {"id": "auth_auth_controller_cookie_options", "label": "COOKIE_OPTIONS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "COOKIE_OPTIONS", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 1}, {"id": "auth_auth_controller_authcontroller", "label": "AuthController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthController", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 9}, {"id": "auth_auth_controller_authcontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_controller_authcontroller_register", "label": ".register()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_controller_authcontroller_login", "label": ".login()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_controller_authcontroller_refresh", "label": ".refresh()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".refresh()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 1}, {"id": "auth_auth_controller_authcontroller_logout", "label": ".logout()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".logout()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_controller_authcontroller_getprofile", "label": ".getProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProfile()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_controller_authcontroller_updateprofile", "label": ".updateProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProfile()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.controller.ts", "file_type": "code", "degree": 3}, {"id": "auth_auth_module", "label": "auth.module.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.module.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.module.ts", "file_type": "code", "degree": 10}, {"id": "auth_auth_module_authmodule", "label": "AuthModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModule", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.module.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_service_spec", "label": "auth.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.service.spec.ts", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/auth/auth.service.spec.ts", "file_type": "code", "degree": 4}, {"id": "auth_auth_service", "label": "auth.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.service.ts", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 14}, {"id": "auth_auth_service_authservice", "label": "AuthService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthService", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 14}, {"id": "auth_auth_service_authservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_service_authservice_register", "label": ".register()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 3}, {"id": "auth_auth_service_authservice_login", "label": ".login()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 3}, {"id": "auth_auth_service_authservice_refresh", "label": ".refresh()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".refresh()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_service_authservice_logout", "label": ".logout()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".logout()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "auth_auth_service_authservice_getprofile", "label": ".getProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProfile()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 2}, {"id": "auth_auth_service_authservice_updateprofile", "label": ".updateProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProfile()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 3}, {"id": "auth_auth_service_authservice_generatetokens", "label": ".generateTokens()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateTokens()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 5}, {"id": "auth_auth_service_authservice_sanitizeuser", "label": ".sanitizeUser()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".sanitizeUser()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/auth.service.ts", "file_type": "code", "degree": 4}, {"id": "decorators_current_user_decorator", "label": "current-user.decorator.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "current-user.decorator.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/auth/decorators/current-user.decorator.ts", "file_type": "code", "degree": 3}, {"id": "decorators_current_user_decorator_currentuser", "label": "CurrentUser", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CurrentUser", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/auth/decorators/current-user.decorator.ts", "file_type": "code", "degree": 3}, {"id": "decorators_public_decorator", "label": "public.decorator.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "public.decorator.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/auth/decorators/public.decorator.ts", "file_type": "code", "degree": 4}, {"id": "decorators_public_decorator_public", "label": "Public()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Public()", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/auth/decorators/public.decorator.ts", "file_type": "code", "degree": 3}, {"id": "decorators_roles_decorator", "label": "roles.decorator.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "roles.decorator.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/auth/decorators/roles.decorator.ts", "file_type": "code", "degree": 4}, {"id": "decorators_roles_decorator_roles", "label": "Roles()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Roles()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/auth/decorators/roles.decorator.ts", "file_type": "code", "degree": 2}, {"id": "dto_auth_response_dto", "label": "auth-response.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "auth-response.dto.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 8}, {"id": "dto_auth_response_dto_authresponsemetadto", "label": "AuthResponseMetaDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponseMetaDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_auth_response_dto_authuserdto", "label": "AuthUserDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthUserDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_auth_response_dto_authtokendatadto", "label": "AuthTokenDataDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthTokenDataDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_auth_response_dto_logoutdatadto", "label": "LogoutDataDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutDataDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_auth_response_dto_authtokenresponsedto", "label": "AuthTokenResponseDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthTokenResponseDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_auth_response_dto_authprofileresponsedto", "label": "AuthProfileResponseDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthProfileResponseDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_auth_response_dto_authlogoutresponsedto", "label": "AuthLogoutResponseDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthLogoutResponseDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/auth-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_login_dto", "label": "login.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "login.dto.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/login.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_login_dto_logindto", "label": "LoginDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/login.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_register_dto", "label": "register.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "register.dto.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/register.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_register_dto_registerdto", "label": "RegisterDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/register.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_update_profile_dto", "label": "update-profile.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "update-profile.dto.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/update-profile.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_update_profile_dto_updateprofiledto", "label": "UpdateProfileDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateProfileDto", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/dto/update-profile.dto.ts", "file_type": "code", "degree": 5}, {"id": "guards_jwt_auth_guard", "label": "jwt-auth.guard.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jwt-auth.guard.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/jwt-auth.guard.ts", "file_type": "code", "degree": 5}, {"id": "guards_jwt_auth_guard_jwtauthguard", "label": "JwtAuthGuard", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "JwtAuthGuard", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/jwt-auth.guard.ts", "file_type": "code", "degree": 5}, {"id": "guards_jwt_auth_guard_jwtauthguard_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/jwt-auth.guard.ts", "file_type": "code", "degree": 1}, {"id": "guards_jwt_auth_guard_jwtauthguard_canactivate", "label": ".canActivate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".canActivate()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/jwt-auth.guard.ts", "file_type": "code", "degree": 2}, {"id": "guards_jwt_auth_guard_jwtauthguard_extracttoken", "label": ".extractToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractToken()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/jwt-auth.guard.ts", "file_type": "code", "degree": 2}, {"id": "guards_roles_guard", "label": "roles.guard.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "roles.guard.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/roles.guard.ts", "file_type": "code", "degree": 3}, {"id": "guards_roles_guard_rolesguard", "label": "RolesGuard", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RolesGuard", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/roles.guard.ts", "file_type": "code", "degree": 4}, {"id": "guards_roles_guard_rolesguard_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "guards_roles_guard_rolesguard_canactivate", "label": ".canActivate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".canActivate()", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "interfaces_jwt_payload_interface", "label": "jwt-payload.interface.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "jwt-payload.interface.ts", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/interfaces/jwt-payload.interface.ts", "file_type": "code", "degree": 4}, {"id": "interfaces_jwt_payload_interface_jwtpayload", "label": "JwtPayload", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "JwtPayload", "community": 3, "community_name": "Community 3", "source_file": "apps/backend/src/modules/auth/interfaces/jwt-payload.interface.ts", "file_type": "code", "degree": 7}, {"id": "bonds_bonds_controller", "label": "bonds.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bonds.controller.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/bonds.controller.ts", "file_type": "code", "degree": 10}, {"id": "bonds_bonds_controller_bondscontroller", "label": "BondsController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BondsController", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.controller.ts", "file_type": "code", "degree": 6}, {"id": "bonds_bonds_controller_bondscontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.controller.ts", "file_type": "code", "degree": 2}, {"id": "bonds_bonds_controller_bondscontroller_getbond", "label": ".getBond()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBond()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.controller.ts", "file_type": "code", "degree": 1}, {"id": "bonds_bonds_controller_bondscontroller_getmarketdata", "label": ".getMarketData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMarketData()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.controller.ts", "file_type": "code", "degree": 1}, {"id": "bonds_bonds_controller_bondscontroller_gethistory", "label": ".getHistory()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHistory()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.controller.ts", "file_type": "code", "degree": 1}, {"id": "bonds_bonds_module", "label": "bonds.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "bonds.module.ts", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.module.ts", "file_type": "code", "degree": 6}, {"id": "bonds_bonds_module_bondsmodule", "label": "BondsModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BondsModule", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.module.ts", "file_type": "code", "degree": 2}, {"id": "bonds_bonds_service_spec", "label": "bonds.service.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "bonds.service.spec.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/bonds/bonds.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "bonds_bonds_service", "label": "bonds.service.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bonds.service.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/bonds/bonds.service.ts", "file_type": "code", "degree": 8}, {"id": "bonds_bonds_service_bondsservice", "label": "BondsService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BondsService", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.service.ts", "file_type": "code", "degree": 9}, {"id": "bonds_bonds_service_bondsservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.service.ts", "file_type": "code", "degree": 3}, {"id": "bonds_bonds_service_bondsservice_getbond", "label": ".getBond()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBond()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.service.ts", "file_type": "code", "degree": 1}, {"id": "bonds_bonds_service_bondsservice_getmarketdata", "label": ".getMarketData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMarketData()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.service.ts", "file_type": "code", "degree": 1}, {"id": "bonds_bonds_service_bondsservice_gethistory", "label": ".getHistory()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHistory()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/bonds/bonds.service.ts", "file_type": "code", "degree": 1}, {"id": "dto_bond_response_dto", "label": "bond-response.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bond-response.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bond-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_bond_response_dto_bondmarketdatadto", "label": "BondMarketDataDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BondMarketDataDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bond-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_bond_response_dto_bondresponsedto", "label": "BondResponseDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BondResponseDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bond-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_bonds_envelope_dto", "label": "bonds-envelope.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bonds-envelope.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bonds-envelope.dto.ts", "file_type": "code", "degree": 10}, {"id": "dto_bonds_envelope_dto_bondenvelopedto", "label": "BondEnvelopeDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BondEnvelopeDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bonds-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_bonds_envelope_dto_bondmarketdataenvelopedto", "label": "BondMarketDataEnvelopeDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BondMarketDataEnvelopeDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bonds-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_bonds_envelope_dto_bondhistoryenvelopedto", "label": "BondHistoryEnvelopeDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BondHistoryEnvelopeDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/bonds-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "apps_backend_src_modules_bonds_dto_history_item_dto_ts_dto_history_item_dto", "label": "history-item.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "history-item.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/history-item.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_history_item_dto_bondhistoryitemdto", "label": "BondHistoryItemDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BondHistoryItemDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/bonds/dto/history-item.dto.ts", "file_type": "code", "degree": 3}, {"id": "cache_cache_module", "label": "cache.module.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cache.module.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/cache/cache.module.ts", "file_type": "code", "degree": 5}, {"id": "cache_cache_module_cachemodule", "label": "CacheModule", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheModule", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/cache/cache.module.ts", "file_type": "code", "degree": 3}, {"id": "cache_cache_service", "label": "cache.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "cache.service.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 25}, {"id": "cache_cache_service_cacheservice", "label": "CacheService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "CacheService", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 42}, {"id": "cache_cache_service_cacheservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 1}, {"id": "cache_cache_service_cacheservice_get", "label": ".get()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 2}, {"id": "cache_cache_service_cacheservice_set", "label": ".set()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".set()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 1}, {"id": "cache_cache_service_cacheservice_buildkey", "label": ".buildKey()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildKey()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 2}, {"id": "cache_cache_service_cacheservice_getorfetch", "label": ".getOrFetch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrFetch()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/cache/cache.service.ts", "file_type": "code", "degree": 3}, {"id": "candles_candles_controller", "label": "candles.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "candles.controller.ts", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.controller.ts", "file_type": "code", "degree": 10}, {"id": "candles_candles_controller_candlescontroller", "label": "CandlesController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CandlesController", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.controller.ts", "file_type": "code", "degree": 5}, {"id": "candles_candles_controller_candlescontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.controller.ts", "file_type": "code", "degree": 2}, {"id": "candles_candles_controller_candlescontroller_getsharecandles", "label": ".getShareCandles()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getShareCandles()", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.controller.ts", "file_type": "code", "degree": 2}, {"id": "candles_candles_controller_candlescontroller_getbondcandles", "label": ".getBondCandles()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBondCandles()", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.controller.ts", "file_type": "code", "degree": 2}, {"id": "candles_candles_module", "label": "candles.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "candles.module.ts", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.module.ts", "file_type": "code", "degree": 6}, {"id": "candles_candles_module_candlesmodule", "label": "CandlesModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CandlesModule", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.module.ts", "file_type": "code", "degree": 2}, {"id": "candles_candles_service_spec", "label": "candles.service.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "candles.service.spec.ts", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "candles_candles_service", "label": "candles.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "candles.service.ts", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.service.ts", "file_type": "code", "degree": 10}, {"id": "candles_candles_service_candlesservice", "label": "CandlesService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CandlesService", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.service.ts", "file_type": "code", "degree": 8}, {"id": "candles_candles_service_candlesservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.service.ts", "file_type": "code", "degree": 3}, {"id": "candles_candles_service_candlesservice_mapinterval", "label": ".mapInterval()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".mapInterval()", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.service.ts", "file_type": "code", "degree": 3}, {"id": "candles_candles_service_candlesservice_getcandles", "label": ".getCandles()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCandles()", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/candles.service.ts", "file_type": "code", "degree": 3}, {"id": "dto_candle_item_dto", "label": "candle-item.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "candle-item.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/candles/dto/candle-item.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_candle_item_dto_candleitemdto", "label": "CandleItemDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CandleItemDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/candles/dto/candle-item.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_candles_envelope_dto", "label": "candles-envelope.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "candles-envelope.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/candles/dto/candles-envelope.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_candles_envelope_dto_candleenvelopedto", "label": "CandleEnvelopeDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CandleEnvelopeDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/candles/dto/candles-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_candles_query_dto", "label": "candles-query.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "candles-query.dto.ts", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/dto/candles-query.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_candles_query_dto_candleinterval", "label": "CandleInterval", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CandleInterval", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/dto/candles-query.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_candles_query_dto_candlesquerydto", "label": "CandlesQueryDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CandlesQueryDto", "community": 35, "community_name": "Community 35", "source_file": "apps/backend/src/modules/candles/dto/candles-query.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_health_envelope_dto", "label": "health-envelope.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "health-envelope.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/health/dto/health-envelope.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_health_envelope_dto_healthenvelopedto", "label": "HealthEnvelopeDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthEnvelopeDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/health/dto/health-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_health_response_dto", "label": "health-response.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "health-response.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/health/dto/health-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_health_response_dto_healthresponsedto", "label": "HealthResponseDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthResponseDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/health/dto/health-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "health_health_controller", "label": "health.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "health.controller.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/health/health.controller.ts", "file_type": "code", "degree": 8}, {"id": "health_health_controller_healthcontroller", "label": "HealthController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthController", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/health/health.controller.ts", "file_type": "code", "degree": 3}, {"id": "health_health_controller_healthcontroller_check", "label": ".check()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".check()", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/health/health.controller.ts", "file_type": "code", "degree": 1}, {"id": "health_health_module", "label": "health.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "health.module.ts", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/health/health.module.ts", "file_type": "code", "degree": 4}, {"id": "health_health_module_healthmodule", "label": "HealthModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthModule", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/health/health.module.ts", "file_type": "code", "degree": 2}, {"id": "moex_client_moex_client_module", "label": "moex-client.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "moex-client.module.ts", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/moex-client/moex-client.module.ts", "file_type": "code", "degree": 5}, {"id": "moex_client_moex_client_module_moexclientmodule", "label": "MoexClientModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexClientModule", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/moex-client/moex-client.module.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_integration_spec", "label": "moex-client.service.integration.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "moex-client.service.integration.spec.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.integration.spec.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_spec", "label": "moex-client.service.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "moex-client.service.spec.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.spec.ts", "file_type": "code", "degree": 2}, {"id": "moex_client_moex_client_service", "label": "moex-client.service.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "moex-client.service.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 28}, {"id": "moex_client_moex_client_service_moexclientservice", "label": "MoexClientService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MoexClientService", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 39}, {"id": "moex_client_moex_client_service_moexclientservice_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 1}, {"id": "moex_client_moex_client_service_moexclientservice_request", "label": ".request()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 1}, {"id": "moex_client_moex_client_service_moexclientservice_extracttable", "label": ".extractTable()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractTable()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 12}, {"id": "moex_client_moex_client_service_moexclientservice_searchsecurities", "label": ".searchSecurities()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".searchSecurities()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getsecuritydescription", "label": ".getSecurityDescription()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSecurityDescription()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getsharemarketdata", "label": ".getShareMarketData()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getShareMarketData()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getsharemarketdatabatch", "label": ".getShareMarketDataBatch()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getShareMarketDataBatch()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getbondpositiondatabatch", "label": ".getBondPositionDataBatch()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBondPositionDataBatch()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getbonddata", "label": ".getBondData()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBondData()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getbondmarketdata", "label": ".getBondMarketData()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBondMarketData()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getdividends", "label": ".getDividends()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDividends()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getcandles", "label": ".getCandles()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCandles()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_gethistory", "label": ".getHistory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHistory()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_service_moexclientservice_getbondhistory", "label": ".getBondHistory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBondHistory()", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.service.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types", "label": "moex-client.types.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "moex-client.types.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 12}, {"id": "moex_client_moex_client_types_moexsecuritydescription", "label": "MoexSecurityDescription", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexSecurityDescription", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 4}, {"id": "moex_client_moex_client_types_moexsharemarketdata", "label": "MoexShareMarketData", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexShareMarketData", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 7}, {"id": "moex_client_moex_client_types_moexbondpositiondata", "label": "MoexBondPositionData", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexBondPositionData", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 6}, {"id": "moex_client_moex_client_types_moexbonddata", "label": "MoexBondData", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexBondData", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types_moexbondmarketdata", "label": "MoexBondMarketData", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexBondMarketData", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types_moexdividend", "label": "MoexDividend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexDividend", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types_moexcandle", "label": "MoexCandle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexCandle", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types_moexhistoryentry", "label": "MoexHistoryEntry", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexHistoryEntry", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types_moexbondhistoryentry", "label": "MoexBondHistoryEntry", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexBondHistoryEntry", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 3}, {"id": "moex_client_moex_client_types_moexboard", "label": "MoexBoard", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexBoard", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/moex-client/moex-client.types.ts", "file_type": "code", "degree": 1}, {"id": "dto_add_position_dto", "label": "add-position.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "add-position.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/add-position.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_add_position_dto_tags", "label": "TAGS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TAGS", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/add-position.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_add_position_dto_addpositiondto", "label": "AddPositionDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AddPositionDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/add-position.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_analytics_response_dto", "label": "analytics-response.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "analytics-response.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/analytics-response.dto.ts", "file_type": "code", "degree": 7}, {"id": "dto_analytics_response_dto_portfoliosummarydto", "label": "PortfolioSummaryDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioSummaryDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/analytics-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_analytics_response_dto_analyticsresponsedto", "label": "AnalyticsResponseDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsResponseDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/analytics-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_create_portfolio_dto", "label": "create-portfolio.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "create-portfolio.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/create-portfolio.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_create_portfolio_dto_currencies", "label": "CURRENCIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CURRENCIES", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/create-portfolio.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_create_portfolio_dto_createportfoliodto", "label": "CreatePortfolioDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CreatePortfolioDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/create-portfolio.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_portfolio_envelope_dto", "label": "portfolio-envelope.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "portfolio-envelope.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 16}, {"id": "dto_portfolio_envelope_dto_portfolioresponsemetadto", "label": "PortfolioResponseMetaDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioResponseMetaDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_portfolio_envelope_dto_portfoliolistenvelopedto", "label": "PortfolioListEnvelopeDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioListEnvelopeDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_portfolio_envelope_dto_portfolioenvelopedto", "label": "PortfolioEnvelopeDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioEnvelopeDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_portfolio_envelope_dto_portfoliodetailenvelopedto", "label": "PortfolioDetailEnvelopeDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioDetailEnvelopeDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_portfolio_envelope_dto_positionenvelopedto", "label": "PositionEnvelopeDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionEnvelopeDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_portfolio_envelope_dto_analyticsenvelopedto", "label": "AnalyticsEnvelopeDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsEnvelopeDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_portfolio_list_response_dto", "label": "portfolio-list-response.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio-list-response.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-list-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_portfolio_list_response_dto_portfoliolistresponsedto", "label": "PortfolioListResponseDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioListResponseDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-list-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_portfolio_response_dto", "label": "portfolio-response.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio-response.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-response.dto.ts", "file_type": "code", "degree": 8}, {"id": "dto_portfolio_response_dto_portfolioresponsedto", "label": "PortfolioResponseDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioResponseDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_portfolio_response_dto_portfoliodetailresponsedto", "label": "PortfolioDetailResponseDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioDetailResponseDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/portfolio-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_position_response_dto", "label": "position-response.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "position-response.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/position-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_position_response_dto_positionresponsedto", "label": "PositionResponseDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionResponseDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/position-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_position_with_price_dto", "label": "position-with-price.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "position-with-price.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/position-with-price.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_position_with_price_dto_positionwithpricedto", "label": "PositionWithPriceDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionWithPriceDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/position-with-price.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_update_portfolio_dto", "label": "update-portfolio.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "update-portfolio.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/update-portfolio.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_update_portfolio_dto_currencies", "label": "CURRENCIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CURRENCIES", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/update-portfolio.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_update_portfolio_dto_updateportfoliodto", "label": "UpdatePortfolioDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdatePortfolioDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/update-portfolio.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_update_position_dto", "label": "update-position.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "update-position.dto.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/update-position.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_update_position_dto_tags", "label": "TAGS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TAGS", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/update-position.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_update_position_dto_updatepositiondto", "label": "UpdatePositionDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdatePositionDto", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/dto/update-position.dto.ts", "file_type": "code", "degree": 5}, {"id": "portfolio_portfolio_controller", "label": "portfolio.controller.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "portfolio.controller.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 22}, {"id": "portfolio_portfolio_controller_nulldataenvelopeschema", "label": "nullDataEnvelopeSchema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "nullDataEnvelopeSchema", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_controller_portfoliocontroller", "label": "PortfolioController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioController", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 12}, {"id": "portfolio_portfolio_controller_portfoliocontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_controller_portfoliocontroller_findall", "label": ".findAll()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_controller_portfoliocontroller_create", "label": ".create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_controller_portfoliocontroller_findone", "label": ".findOne()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_controller_portfoliocontroller_update", "label": ".update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_controller_portfoliocontroller_remove", "label": ".remove()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_controller_portfoliocontroller_addposition", "label": ".addPosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".addPosition()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_controller_portfoliocontroller_updateposition", "label": ".updatePosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updatePosition()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_controller_portfoliocontroller_getanalytics", "label": ".getAnalytics()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAnalytics()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_controller_portfoliocontroller_removeposition", "label": ".removePosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".removePosition()", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.controller.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_module", "label": "portfolio.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio.module.ts", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/portfolio/portfolio.module.ts", "file_type": "code", "degree": 6}, {"id": "portfolio_portfolio_module_portfoliomodule", "label": "PortfolioModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioModule", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/portfolio/portfolio.module.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_service_spec", "label": "portfolio.service.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio.service.spec.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.spec.ts", "file_type": "code", "degree": 9}, {"id": "portfolio_portfolio_service", "label": "portfolio.service.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "portfolio.service.ts", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 24}, {"id": "portfolio_portfolio_service_enrichedposition", "label": "EnrichedPosition", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EnrichedPosition", "community": 1, "community_name": "Community 1", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_service_portfolioservice", "label": "PortfolioService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PortfolioService", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 21}, {"id": "portfolio_portfolio_service_portfolioservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 4}, {"id": "portfolio_portfolio_service_portfolioservice_create", "label": ".create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_findall", "label": ".findAll()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 2}, {"id": "portfolio_portfolio_service_portfolioservice_findone", "label": ".findOne()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_update", "label": ".update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_remove", "label": ".remove()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_service_portfolioservice_addposition", "label": ".addPosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".addPosition()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_updateposition", "label": ".updatePosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updatePosition()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_removeposition", "label": ".removePosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".removePosition()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 1}, {"id": "portfolio_portfolio_service_portfolioservice_enrichpositions", "label": ".enrichPositions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".enrichPositions()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 8}, {"id": "portfolio_portfolio_service_portfolioservice_fetchsharebatch", "label": ".fetchShareBatch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchShareBatch()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_fetchbondbatch", "label": ".fetchBondBatch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchBondBatch()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_buildshareposition", "label": ".buildSharePosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildSharePosition()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_buildbondposition", "label": ".buildBondPosition()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildBondPosition()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_getpositionswithprices", "label": ".getPositionsWithPrices()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPositionsWithPrices()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "portfolio_portfolio_service_portfolioservice_getanalytics", "label": ".getAnalytics()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAnalytics()", "community": 131, "community_name": "Community 131", "source_file": "apps/backend/src/modules/portfolio/portfolio.service.ts", "file_type": "code", "degree": 4}, {"id": "prisma_prisma_module", "label": "prisma.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma.module.ts", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/prisma/prisma.module.ts", "file_type": "code", "degree": 4}, {"id": "prisma_prisma_module_prismamodule", "label": "PrismaModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PrismaModule", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/prisma/prisma.module.ts", "file_type": "code", "degree": 2}, {"id": "prisma_prisma_service", "label": "prisma.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma.service.ts", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/prisma/prisma.service.ts", "file_type": "code", "degree": 10}, {"id": "prisma_prisma_service_prismaservice", "label": "PrismaService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "PrismaService", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/prisma/prisma.service.ts", "file_type": "code", "degree": 17}, {"id": "prisma_prisma_service_prismaservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/prisma/prisma.service.ts", "file_type": "code", "degree": 1}, {"id": "prisma_prisma_service_prismaservice_onmoduleinit", "label": ".onModuleInit()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/prisma/prisma.service.ts", "file_type": "code", "degree": 1}, {"id": "prisma_prisma_service_prismaservice_onmoduledestroy", "label": ".onModuleDestroy()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleDestroy()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/prisma/prisma.service.ts", "file_type": "code", "degree": 1}, {"id": "dto_screener_query_dto", "label": "screener-query.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "screener-query.dto.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-query.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_screener_query_dto_screenertype", "label": "ScreenerType", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerType", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-query.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_screener_query_dto_sorter_fields", "label": "SORTER_FIELDS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SORTER_FIELDS", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-query.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_screener_query_dto_screenerquerydto", "label": "ScreenerQueryDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerQueryDto", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-query.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_screener_response_dto", "label": "screener-response.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "screener-response.dto.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_screener_response_dto_screeneritemdto", "label": "ScreenerItemDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerItemDto", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-response.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_screener_response_dto_screenerresultdto", "label": "ScreenerResultDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerResultDto", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_screener_response_dto_screenerresponsemetadto", "label": "ScreenerResponseMetaDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerResponseMetaDto", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_screener_response_dto_screenerresponsedto", "label": "ScreenerResponseDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerResponseDto", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/screener-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_search_query_dto", "label": "search-query.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "search-query.dto.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/search-query.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_search_query_dto_securitytype", "label": "SecurityType", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SecurityType", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/search-query.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_search_query_dto_searchquerydto", "label": "SearchQueryDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchQueryDto", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/dto/search-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_search_response_dto", "label": "search-response.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "search-response.dto.ts", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/securities/dto/search-response.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_search_response_dto_searchresultitemdto", "label": "SearchResultItemDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultItemDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/securities/dto/search-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_search_response_dto_searchenvelopedto", "label": "SearchEnvelopeDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchEnvelopeDto", "community": 52, "community_name": "Community 52", "source_file": "apps/backend/src/modules/securities/dto/search-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "securities_screener_service_spec", "label": "screener.service.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "screener.service.spec.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "securities_screener_service", "label": "screener.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "screener.service.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 15}, {"id": "securities_screener_service_screenerservice", "label": "ScreenerService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerService", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 11}, {"id": "securities_screener_service_screenerservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 3}, {"id": "securities_screener_service_screenerservice_screen", "label": ".screen()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".screen()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 5}, {"id": "securities_screener_service_screenerservice_fetchboard", "label": ".fetchBoard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchBoard()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 4}, {"id": "securities_screener_service_screenerservice_matches", "label": ".matches()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".matches()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 3}, {"id": "securities_screener_service_screenerservice_sort", "label": ".sort()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".sort()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/screener.service.ts", "file_type": "code", "degree": 3}, {"id": "securities_securities_controller_spec", "label": "securities.controller.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "securities.controller.spec.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.controller.spec.ts", "file_type": "code", "degree": 8}, {"id": "securities_securities_controller", "label": "securities.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "securities.controller.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.controller.ts", "file_type": "code", "degree": 18}, {"id": "securities_securities_controller_securitiescontroller", "label": "SecuritiesController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SecuritiesController", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.controller.ts", "file_type": "code", "degree": 6}, {"id": "securities_securities_controller_securitiescontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.controller.ts", "file_type": "code", "degree": 3}, {"id": "securities_securities_controller_securitiescontroller_search", "label": ".search()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.controller.ts", "file_type": "code", "degree": 2}, {"id": "securities_securities_controller_securitiescontroller_screener", "label": ".screener()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".screener()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.controller.ts", "file_type": "code", "degree": 2}, {"id": "securities_securities_module", "label": "securities.module.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "securities.module.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.module.ts", "file_type": "code", "degree": 10}, {"id": "securities_securities_module_securitiesmodule", "label": "SecuritiesModule", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SecuritiesModule", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.module.ts", "file_type": "code", "degree": 2}, {"id": "securities_securities_service_spec", "label": "securities.service.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "securities.service.spec.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "securities_securities_service", "label": "securities.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "securities.service.ts", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.ts", "file_type": "code", "degree": 12}, {"id": "securities_securities_service_searchresultitem", "label": "SearchResultItem", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultItem", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.ts", "file_type": "code", "degree": 1}, {"id": "securities_securities_service_securitiesservice", "label": "SecuritiesService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SecuritiesService", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.ts", "file_type": "code", "degree": 9}, {"id": "securities_securities_service_securitiesservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.ts", "file_type": "code", "degree": 3}, {"id": "securities_securities_service_securitiesservice_search", "label": ".search()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".search()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.ts", "file_type": "code", "degree": 2}, {"id": "securities_securities_service_securitiesservice_getsharebrief", "label": ".getShareBrief()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getShareBrief()", "community": 2, "community_name": "Community 2", "source_file": "apps/backend/src/modules/securities/securities.service.ts", "file_type": "code", "degree": 1}, {"id": "dto_dividend_item_dto", "label": "dividend-item.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dividend-item.dto.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/dividend-item.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_dividend_item_dto_dividenditemdto", "label": "DividendItemDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendItemDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/dividend-item.dto.ts", "file_type": "code", "degree": 3}, {"id": "apps_backend_src_modules_shares_dto_history_item_dto_ts_dto_history_item_dto", "label": "history-item.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "history-item.dto.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/history-item.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_history_item_dto_historyitemdto", "label": "HistoryItemDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HistoryItemDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/history-item.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_share_marketdata_response_dto", "label": "share-marketdata-response.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "share-marketdata-response.dto.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/share-marketdata-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_share_marketdata_response_dto_sharemarketdataresponsedto", "label": "ShareMarketDataResponseDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareMarketDataResponseDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/share-marketdata-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_share_response_dto", "label": "share-response.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "share-response.dto.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/share-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_share_response_dto_stockmarketdatadto", "label": "StockMarketDataDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "StockMarketDataDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/share-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_share_response_dto_shareresponsedto", "label": "ShareResponseDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareResponseDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/share-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_shares_envelope_dto", "label": "shares-envelope.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "shares-envelope.dto.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/shares-envelope.dto.ts", "file_type": "code", "degree": 14}, {"id": "dto_shares_envelope_dto_shareenvelopedto", "label": "ShareEnvelopeDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareEnvelopeDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/shares-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_shares_envelope_dto_sharemarketdataenvelopedto", "label": "ShareMarketDataEnvelopeDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareMarketDataEnvelopeDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/shares-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_shares_envelope_dto_dividendsenvelopedto", "label": "DividendsEnvelopeDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendsEnvelopeDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/shares-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_shares_envelope_dto_sharehistoryenvelopedto", "label": "ShareHistoryEnvelopeDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareHistoryEnvelopeDto", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/dto/shares-envelope.dto.ts", "file_type": "code", "degree": 4}, {"id": "shares_shares_controller", "label": "shares.controller.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "shares.controller.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 11}, {"id": "shares_shares_controller_sharescontroller", "label": "SharesController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SharesController", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 7}, {"id": "shares_shares_controller_sharescontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 2}, {"id": "shares_shares_controller_sharescontroller_getshare", "label": ".getShare()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getShare()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_controller_sharescontroller_getmarketdata", "label": ".getMarketData()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMarketData()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_controller_sharescontroller_getdividends", "label": ".getDividends()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDividends()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_controller_sharescontroller_gethistory", "label": ".getHistory()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHistory()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.controller.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_module", "label": "shares.module.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "shares.module.ts", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.module.ts", "file_type": "code", "degree": 6}, {"id": "shares_shares_module_sharesmodule", "label": "SharesModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SharesModule", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.module.ts", "file_type": "code", "degree": 2}, {"id": "shares_shares_service_spec", "label": "shares.service.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "shares.service.spec.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/shares/shares.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "shares_shares_service", "label": "shares.service.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "shares.service.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 8}, {"id": "shares_shares_service_sharesservice", "label": "SharesService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SharesService", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 10}, {"id": "shares_shares_service_sharesservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 3}, {"id": "shares_shares_service_sharesservice_getshare", "label": ".getShare()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getShare()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_service_sharesservice_getmarketdata", "label": ".getMarketData()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMarketData()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_service_sharesservice_getdividends", "label": ".getDividends()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDividends()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 1}, {"id": "shares_shares_service_sharesservice_gethistory", "label": ".getHistory()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHistory()", "community": 53, "community_name": "Community 53", "source_file": "apps/backend/src/modules/shares/shares.service.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_account_response_dto", "label": "broker-account-response.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-account-response.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-account-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_account_response_dto_brokeraccountresponsedto", "label": "BrokerAccountResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-account-response.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_broker_analytics_response_dto", "label": "broker-analytics-response.dto.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-analytics-response.dto.ts", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/dto/broker-analytics-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "BrokerAnalyticsDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAnalyticsDto", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/dto/broker-analytics-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_broker_envelope_dto", "label": "broker-envelope.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "broker-envelope.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 23}, {"id": "dto_broker_envelope_dto_brokerresponsemetadto", "label": "BrokerResponseMetaDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerResponseMetaDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_envelope_dto_brokeraccountsenvelopedto", "label": "BrokerAccountsEnvelopeDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsEnvelopeDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_envelope_dto_brokerportfolioenvelopedto", "label": "BrokerPortfolioEnvelopeDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolioEnvelopeDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_envelope_dto_brokeroperationsenvelopedto", "label": "BrokerOperationsEnvelopeDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsEnvelopeDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_envelope_dto_brokerpositionsenvelopedto", "label": "BrokerPositionsEnvelopeDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsEnvelopeDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_envelope_dto_brokeroperationsyncenvelopedto", "label": "BrokerOperationSyncEnvelopeDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationSyncEnvelopeDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_envelope_dto_brokeranalyticsenvelopedto", "label": "BrokerAnalyticsEnvelopeDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAnalyticsEnvelopeDto", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_envelope_dto_brokereventsenvelopedto", "label": "BrokerEventsEnvelopeDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsEnvelopeDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-envelope.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_events_query_dto", "label": "broker-events-query.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-events-query.dto.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-query.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_broker_events_query_dto_brokereventsquerydto", "label": "BrokerEventsQueryDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsQueryDto", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_events_response_dto", "label": "broker-events-response.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-events-response.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 8}, {"id": "dto_broker_events_response_dto_eventtypes", "label": "eventTypes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eventTypes", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_events_response_dto_eventsources", "label": "eventSources", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eventSources", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_events_response_dto_eventcategories", "label": "eventCategories", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eventCategories", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_events_response_dto_instrumenttypes", "label": "instrumentTypes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "instrumentTypes", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_events_response_dto_brokereventitemdto", "label": "BrokerEventItemDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventItemDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_events_response_dto_brokereventssummarydto", "label": "BrokerEventsSummaryDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsSummaryDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_events_response_dto_brokereventsdatadto", "label": "BrokerEventsDataDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsDataDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-events-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_money_dto", "label": "broker-money.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-money.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-money.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_broker_money_dto_brokermoneydto", "label": "BrokerMoneyDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerMoneyDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-money.dto.ts", "file_type": "code", "degree": 9}, {"id": "dto_broker_operation_query_dto", "label": "broker-operation-query.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-operation-query.dto.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "BrokerOperationQueryDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationQueryDto", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-query.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_broker_operation_response_dto", "label": "broker-operation-response.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-operation-response.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-response.dto.ts", "file_type": "code", "degree": 6}, {"id": "dto_broker_operation_response_dto_operationcategories", "label": "operationCategories", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "operationCategories", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_operation_response_dto_brokeroperationresponsedto", "label": "BrokerOperationResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_broker_operation_response_dto_brokeroperationspageresponsedto", "label": "BrokerOperationsPageResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsPageResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-response.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_operation_sync_query_dto", "label": "broker-operation-sync-query.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-operation-sync-query.dto.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-sync-query.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_broker_operation_sync_query_dto_brokeroperationsyncquerydto", "label": "BrokerOperationSyncQueryDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationSyncQueryDto", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-sync-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_operation_sync_query_dto_brokeroperationsyncresponsedto", "label": "BrokerOperationSyncResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationSyncResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-operation-sync-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_portfolio_response_dto", "label": "broker-portfolio-response.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-portfolio-response.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-portfolio-response.dto.ts", "file_type": "code", "degree": 9}, {"id": "dto_broker_portfolio_response_dto_brokerportfoliototalsdto", "label": "BrokerPortfolioTotalsDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolioTotalsDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-portfolio-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_broker_portfolio_response_dto_brokerportfolioyieldsdto", "label": "BrokerPortfolioYieldsDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolioYieldsDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-portfolio-response.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_broker_portfolio_response_dto_brokerportfoliopositioncountsdto", "label": "BrokerPortfolioPositionCountsDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolioPositionCountsDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-portfolio-response.dto.ts", "file_type": "code", "degree": 1}, {"id": "dto_broker_portfolio_response_dto_brokerportfolioresponsedto", "label": "BrokerPortfolioResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolioResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-portfolio-response.dto.ts", "file_type": "code", "degree": 5}, {"id": "dto_broker_position_query_dto", "label": "broker-position-query.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-position-query.dto.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-position-query.dto.ts", "file_type": "code", "degree": 2}, {"id": "dto_broker_position_query_dto_brokerpositionquerydto", "label": "BrokerPositionQueryDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionQueryDto", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/dto/broker-position-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "dto_broker_position_response_dto", "label": "broker-position-response.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-position-response.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-position-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_broker_position_response_dto_brokerpositionresponsedto", "label": "BrokerPositionResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-position-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_broker_positions_page_response_dto", "label": "broker-positions-page-response.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-positions-page-response.dto.ts", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-positions-page-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "dto_broker_positions_page_response_dto_brokerpositionspageresponsedto", "label": "BrokerPositionsPageResponseDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsPageResponseDto", "community": 5, "community_name": "Community 5", "source_file": "apps/backend/src/modules/tbank/dto/broker-positions-page-response.dto.ts", "file_type": "code", "degree": 4}, {"id": "mappers_account_mapper_spec", "label": "account.mapper.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "account.mapper.spec.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/account.mapper.spec.ts", "file_type": "code", "degree": 5}, {"id": "mappers_account_mapper", "label": "account.mapper.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "account.mapper.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/account.mapper.ts", "file_type": "code", "degree": 12}, {"id": "mappers_account_mapper_issupportedbrokeraccount", "label": "isSupportedBrokerAccount()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isSupportedBrokerAccount()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/account.mapper.ts", "file_type": "code", "degree": 3}, {"id": "mappers_account_mapper_mapaccount", "label": "mapAccount()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "mapAccount()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/account.mapper.ts", "file_type": "code", "degree": 4}, {"id": "mappers_money_mapper_spec", "label": "money.mapper.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "money.mapper.spec.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/money.mapper.spec.ts", "file_type": "code", "degree": 4}, {"id": "mappers_money_mapper", "label": "money.mapper.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "money.mapper.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/money.mapper.ts", "file_type": "code", "degree": 15}, {"id": "mappers_money_mapper_mapmoneyvalue", "label": "mapMoneyValue()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "mapMoneyValue()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/money.mapper.ts", "file_type": "code", "degree": 7}, {"id": "mappers_money_mapper_mapquotationtonumber", "label": "mapQuotationToNumber()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mapQuotationToNumber()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/money.mapper.ts", "file_type": "code", "degree": 8}, {"id": "mappers_money_mapper_maptimestamptoiso", "label": "mapTimestampToIso()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "mapTimestampToIso()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/money.mapper.ts", "file_type": "code", "degree": 6}, {"id": "mappers_money_mapper_mapinteger", "label": "mapInteger()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mapInteger()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/money.mapper.ts", "file_type": "code", "degree": 3}, {"id": "mappers_operation_mapper_spec", "label": "operation.mapper.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "operation.mapper.spec.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.spec.ts", "file_type": "code", "degree": 4}, {"id": "mappers_operation_mapper", "label": "operation.mapper.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "operation.mapper.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 21}, {"id": "mappers_operation_mapper_trade_types", "label": "TRADE_TYPES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TRADE_TYPES", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_operation_mapper_income_types", "label": "INCOME_TYPES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INCOME_TYPES", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_operation_mapper_tax_types", "label": "TAX_TYPES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TAX_TYPES", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_operation_mapper_fee_types", "label": "FEE_TYPES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FEE_TYPES", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_operation_mapper_transfer_types", "label": "TRANSFER_TYPES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TRANSFER_TYPES", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_operation_mapper_categorizeoperationtype", "label": "categorizeOperationType()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "categorizeOperationType()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 3}, {"id": "mappers_operation_mapper_mapoperation", "label": "mapOperation()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "mapOperation()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 6}, {"id": "mappers_operation_mapper_mapoperationspage", "label": "mapOperationsPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "mapOperationsPage()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/operation.mapper.ts", "file_type": "code", "degree": 4}, {"id": "mappers_portfolio_mapper_spec", "label": "portfolio.mapper.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio.mapper.spec.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.spec.ts", "file_type": "code", "degree": 4}, {"id": "mappers_portfolio_mapper", "label": "portfolio.mapper.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "portfolio.mapper.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.ts", "file_type": "code", "degree": 20}, {"id": "mappers_portfolio_mapper_mapbrokerportfolioinput", "label": "MapBrokerPortfolioInput", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MapBrokerPortfolioInput", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_portfolio_mapper_isbrokermoney", "label": "isBrokerMoney()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isBrokerMoney()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.ts", "file_type": "code", "degree": 1}, {"id": "mappers_portfolio_mapper_mapbrokerposition", "label": "mapBrokerPosition()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mapBrokerPosition()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.ts", "file_type": "code", "degree": 3}, {"id": "mappers_portfolio_mapper_mapbrokerportfolio", "label": "mapBrokerPortfolio()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "mapBrokerPortfolio()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.ts", "file_type": "code", "degree": 5}, {"id": "mappers_portfolio_mapper_mapbrokerpositionspage", "label": "mapBrokerPositionsPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "mapBrokerPositionsPage()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/mappers/portfolio.mapper.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_accounts_service_spec", "label": "broker-accounts.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-accounts.service.spec.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "services_broker_accounts_service", "label": "broker-accounts.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "broker-accounts.service.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.ts", "file_type": "code", "degree": 26}, {"id": "services_broker_accounts_service_brokeraccountsservice", "label": "BrokerAccountsService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerAccountsService", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.ts", "file_type": "code", "degree": 22}, {"id": "services_broker_accounts_service_brokeraccountsservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_accounts_service_brokeraccountsservice_findall", "label": ".findAll()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_accounts_service_brokeraccountsservice_findbyid", "label": ".findById()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findById()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_accounts_service_brokeraccountsservice_fetchaccounts", "label": ".fetchAccounts()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchAccounts()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-accounts.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_analytics_service_spec", "label": "broker-analytics.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-analytics.service.spec.ts", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.spec.ts", "file_type": "code", "degree": 10}, {"id": "services_broker_analytics_service_spec_mockcachepassthrough", "label": "mockCachePassthrough()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockCachePassthrough()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.spec.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service_spec_makeop", "label": "makeOp()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeOp()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.spec.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service", "label": "broker-analytics.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "broker-analytics.service.ts", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 20}, {"id": "services_broker_analytics_service_deposit_types", "label": "DEPOSIT_TYPES", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEPOSIT_TYPES", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service_withdrawal_types", "label": "WITHDRAWAL_TYPES", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WITHDRAWAL_TYPES", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service_dividend_types", "label": "DIVIDEND_TYPES", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DIVIDEND_TYPES", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service_coupon_types", "label": "COUPON_TYPES", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "COUPON_TYPES", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service_analytics_types", "label": "ANALYTICS_TYPES", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ANALYTICS_TYPES", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_analytics_service_brokeranalyticsservice", "label": "BrokerAnalyticsService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAnalyticsService", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 9}, {"id": "services_broker_analytics_service_brokeranalyticsservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_analytics_service_brokeranalyticsservice_getanalytics", "label": ".getAnalytics()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAnalytics()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_analytics_service_brokeranalyticsservice_computeanalytics", "label": ".computeAnalytics()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".computeAnalytics()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-analytics.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_events_service_spec", "label": "broker-events.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-events.service.spec.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.spec.ts", "file_type": "code", "degree": 13}, {"id": "services_broker_events_service_spec_mockcachepassthrough", "label": "mockCachePassthrough()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockCachePassthrough()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.spec.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_events_service", "label": "broker-events.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "broker-events.service.ts", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 31}, {"id": "services_broker_events_service_brokereventtype", "label": "BrokerEventType", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventType", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_events_service_brokereventsquery", "label": "BrokerEventsQuery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsQuery", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_events_service_all_event_types", "label": "ALL_EVENT_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ALL_EVENT_TYPES", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_events_service_actual_operation_types", "label": "ACTUAL_OPERATION_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ACTUAL_OPERATION_TYPES", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_events_service_operation_event_types", "label": "OPERATION_EVENT_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OPERATION_EVENT_TYPES", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_events_service_brokereventsservice", "label": "BrokerEventsService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerEventsService", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 18}, {"id": "services_broker_events_service_brokereventsservice_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 6}, {"id": "services_broker_events_service_brokereventsservice_getevents", "label": ".getEvents()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEvents()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_events_service_brokereventsservice_buildevents", "label": ".buildEvents()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildEvents()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 5}, {"id": "services_broker_events_service_brokereventsservice_buildshareevents", "label": ".buildShareEvents()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildShareEvents()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_events_service_brokereventsservice_buildbondevents", "label": ".buildBondEvents()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildBondEvents()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 5}, {"id": "services_broker_events_service_brokereventsservice_buildsummary", "label": ".buildSummary()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildSummary()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_events_service_brokereventsservice_buildactualevents", "label": ".buildActualEvents()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildActualEvents()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_events_service_brokereventsservice_mapactualoperation", "label": ".mapActualOperation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".mapActualOperation()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_events_service_brokereventsservice_parseeventtypes", "label": ".parseEventTypes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".parseEventTypes()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_events_service_brokereventsservice_actualoperationtypes", "label": ".actualOperationTypes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".actualOperationTypes()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_events_service_brokereventsservice_mapinstrumenttype", "label": ".mapInstrumentType()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".mapInstrumentType()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_events_service_brokereventsservice_eventdedupkey", "label": ".eventDedupKey()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".eventDedupKey()", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/services/broker-events.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_instruments_service", "label": "broker-instruments.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-instruments.service.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-instruments.service.ts", "file_type": "code", "degree": 13}, {"id": "services_broker_instruments_service_brokerinstrumentsservice", "label": "BrokerInstrumentsService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerInstrumentsService", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-instruments.service.ts", "file_type": "code", "degree": 8}, {"id": "services_broker_instruments_service_brokerinstrumentsservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-instruments.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_instruments_service_brokerinstrumentsservice_findbyinstrumentuid", "label": ".findByInstrumentUid()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findByInstrumentUid()", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/services/broker-instruments.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_instruments_service_brokerinstrumentsservice_fetchbyuid", "label": ".fetchByUid()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchByUid()", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/services/broker-instruments.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_operation_sync_service_spec", "label": "broker-operation-sync.service.spec.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-operation-sync.service.spec.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "services_broker_operation_sync_service", "label": "broker-operation-sync.service.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-operation-sync.service.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.ts", "file_type": "code", "degree": 12}, {"id": "services_broker_operation_sync_service_brokeroperationsyncrange", "label": "BrokerOperationSyncRange", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationSyncRange", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "BrokerOperationSyncService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationSyncService", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.ts", "file_type": "code", "degree": 9}, {"id": "services_broker_operation_sync_service_brokeroperationsyncservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_operation_sync_service_brokeroperationsyncservice_syncaccount", "label": ".syncAccount()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncAccount()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_operation_sync_service_brokeroperationsyncservice_upsertoperation", "label": ".upsertOperation()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".upsertOperation()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operation-sync.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_operations_service_spec", "label": "broker-operations.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-operations.service.spec.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "services_broker_operations_service", "label": "broker-operations.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "broker-operations.service.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.ts", "file_type": "code", "degree": 25}, {"id": "services_broker_operations_service_brokeroperationsservice", "label": "BrokerOperationsService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerOperationsService", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.ts", "file_type": "code", "degree": 16}, {"id": "services_broker_operations_service_brokeroperationsservice_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_operations_service_brokeroperationsservice_getoperations", "label": ".getOperations()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOperations()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_operations_service_brokeroperationsservice_buildrequest", "label": ".buildRequest()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildRequest()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_operations_service_brokeroperationsservice_fetchoperations", "label": ".fetchOperations()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchOperations()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/services/broker-operations.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_portfolio_service_spec", "label": "broker-portfolio.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "broker-portfolio.service.spec.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.spec.ts", "file_type": "code", "degree": 12}, {"id": "services_broker_portfolio_service_spec_mockaccount", "label": "mockAccount()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockAccount()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.spec.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_portfolio_service_spec_mockcache", "label": "mockCache()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockCache()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.spec.ts", "file_type": "code", "degree": 1}, {"id": "services_broker_portfolio_service", "label": "broker-portfolio.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "broker-portfolio.service.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 28}, {"id": "services_broker_portfolio_service_brokerportfolioservice", "label": "BrokerPortfolioService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerPortfolioService", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 16}, {"id": "services_broker_portfolio_service_brokerportfolioservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 5}, {"id": "services_broker_portfolio_service_brokerportfolioservice_getportfolio", "label": ".getPortfolio()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPortfolio()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_portfolio_service_brokerportfolioservice_getpositions", "label": ".getPositions()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPositions()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 2}, {"id": "services_broker_portfolio_service_brokerportfolioservice_buildinstrumentmap", "label": ".buildInstrumentMap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildInstrumentMap()", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 4}, {"id": "services_broker_portfolio_service_brokerportfolioservice_getpositionswithinstruments", "label": ".getPositionsWithInstruments()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPositionsWithInstruments()", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 5}, {"id": "services_broker_portfolio_service_brokerportfolioservice_fetchcachedportfolio", "label": ".fetchCachedPortfolio()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchCachedPortfolio()", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 3}, {"id": "services_broker_portfolio_service_brokerportfolioservice_fetchpositions", "label": ".fetchPositions()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchPositions()", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/services/broker-portfolio.service.ts", "file_type": "code", "degree": 2}, {"id": "services_tbank_client_service_spec", "label": "tbank-client.service.spec.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tbank-client.service.spec.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.spec.ts", "file_type": "code", "degree": 2}, {"id": "services_tbank_client_service", "label": "tbank-client.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tbank-client.service.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 15}, {"id": "services_tbank_client_service_grpcunary", "label": "GrpcUnary", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GrpcUnary", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "services_tbank_client_service_grpcserviceconstructor", "label": "GrpcServiceConstructor", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GrpcServiceConstructor", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "services_tbank_client_service_queuename", "label": "QueueName", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "QueueName", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "services_tbank_client_service_tbankclientservice", "label": "TBankClientService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "TBankClientService", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 23}, {"id": "services_tbank_client_service_tbankclientservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 2}, {"id": "services_tbank_client_service_tbankclientservice_resolveprotoroot", "label": ".resolveProtoRoot()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".resolveProtoRoot()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 2}, {"id": "services_tbank_client_service_tbankclientservice_createmetadata", "label": ".createMetadata()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createMetadata()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "services_tbank_client_service_tbankclientservice_redactmetadata", "label": ".redactMetadata()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".redactMetadata()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "services_tbank_client_service_tbankclientservice_getserviceclient", "label": ".getServiceClient()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getServiceClient()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 3}, {"id": "services_tbank_client_service_tbankclientservice_callunary", "label": ".callUnary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".callUnary()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "services_tbank_client_service_tbankclientservice_resolveprotonamespace", "label": ".resolveProtoNamespace()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".resolveProtoNamespace()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 2}, {"id": "services_tbank_client_service_tbankclientservice_createchannelcredentials", "label": ".createChannelCredentials()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createChannelCredentials()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 2}, {"id": "services_tbank_client_service_tbankclientservice_mapgrpcerror", "label": ".mapGrpcError()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".mapGrpcError()", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/services/tbank-client.service.ts", "file_type": "code", "degree": 1}, {"id": "tbank_tbank_config_spec", "label": "tbank.config.spec.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tbank.config.spec.ts", "community": 49, "community_name": "Community 49", "source_file": "apps/backend/src/modules/tbank/tbank.config.spec.ts", "file_type": "code", "degree": 1}, {"id": "tbank_tbank_config", "label": "tbank.config.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tbank.config.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/tbank.config.ts", "file_type": "code", "degree": 11}, {"id": "tbank_tbank_config_tbank_proto_files", "label": "TBANK_PROTO_FILES", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBANK_PROTO_FILES", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/tbank.config.ts", "file_type": "code", "degree": 2}, {"id": "tbank_tbank_config_tbank_account_types", "label": "TBANK_ACCOUNT_TYPES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBANK_ACCOUNT_TYPES", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/tbank.config.ts", "file_type": "code", "degree": 2}, {"id": "tbank_tbank_config_tbank_cache_keys", "label": "TBANK_CACHE_KEYS", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TBANK_CACHE_KEYS", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/tbank.config.ts", "file_type": "code", "degree": 7}, {"id": "tbank_tbank_controller_spec", "label": "tbank.controller.spec.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "tbank.controller.spec.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.spec.ts", "file_type": "code", "degree": 17}, {"id": "tbank_tbank_controller", "label": "tbank.controller.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.2, "font": {"size": 12, "color": "#ffffff"}, "title": "tbank.controller.ts", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 35}, {"id": "tbank_tbank_controller_tbankcontroller", "label": "TBankController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankController", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 11}, {"id": "tbank_tbank_controller_tbankcontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 7}, {"id": "tbank_tbank_controller_tbankcontroller_getaccounts", "label": ".getAccounts()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAccounts()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 1}, {"id": "tbank_tbank_controller_tbankcontroller_getportfolio", "label": ".getPortfolio()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPortfolio()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 1}, {"id": "tbank_tbank_controller_tbankcontroller_getpositions", "label": ".getPositions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPositions()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 2}, {"id": "tbank_tbank_controller_tbankcontroller_getoperations", "label": ".getOperations()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOperations()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 2}, {"id": "tbank_tbank_controller_tbankcontroller_getevents", "label": ".getEvents()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEvents()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 2}, {"id": "tbank_tbank_controller_tbankcontroller_getanalytics", "label": ".getAnalytics()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAnalytics()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 1}, {"id": "tbank_tbank_controller_tbankcontroller_syncoperations", "label": ".syncOperations()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncOperations()", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/tbank.controller.ts", "file_type": "code", "degree": 2}, {"id": "tbank_tbank_module", "label": "tbank.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "tbank.module.ts", "community": 37, "community_name": "Community 37", "source_file": "apps/backend/src/modules/tbank/tbank.module.ts", "file_type": "code", "degree": 22}, {"id": "tbank_tbank_module_tbankmodule", "label": "TBankModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankModule", "community": 68, "community_name": "Community 68", "source_file": "apps/backend/src/modules/tbank/tbank.module.ts", "file_type": "code", "degree": 2}, {"id": "types_broker_types", "label": "broker.types.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "broker.types.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 21}, {"id": "types_broker_types_brokermoney", "label": "BrokerMoney", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerMoney", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 3}, {"id": "types_broker_types_brokeraccount", "label": "BrokerAccount", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccount", "community": 7, "community_name": "Community 7", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 8}, {"id": "types_broker_types_brokerposition", "label": "BrokerPosition", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPosition", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 2}, {"id": "types_broker_types_brokerportfolio", "label": "BrokerPortfolio", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolio", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 4}, {"id": "types_broker_types_brokerpositionspage", "label": "BrokerPositionsPage", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsPage", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 4}, {"id": "types_broker_types_brokeroperationcategory", "label": "BrokerOperationCategory", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationCategory", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 2}, {"id": "types_broker_types_brokeroperation", "label": "BrokerOperation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperation", "community": 11, "community_name": "Community 11", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 6}, {"id": "types_broker_types_brokeroperationspage", "label": "BrokerOperationsPage", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsPage", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 5}, {"id": "types_broker_types_brokerportfolioevent", "label": "BrokerPortfolioEvent", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolioEvent", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 8}, {"id": "types_broker_types_brokereventssummary", "label": "BrokerEventsSummary", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsSummary", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 3}, {"id": "types_broker_types_brokereventsdata", "label": "BrokerEventsData", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsData", "community": 25, "community_name": "Community 25", "source_file": "apps/backend/src/modules/tbank/types/broker.types.ts", "file_type": "code", "degree": 4}, {"id": "types_tbank_proto_types", "label": "tbank-proto.types.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "tbank-proto.types.ts", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 24}, {"id": "types_tbank_proto_types_tbanktimestamp", "label": "TBankTimestamp", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankTimestamp", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 2}, {"id": "types_tbank_proto_types_tbankmoneyvalue", "label": "TBankMoneyValue", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankMoneyValue", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 2}, {"id": "types_tbank_proto_types_tbankquotation", "label": "TBankQuotation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankQuotation", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 2}, {"id": "types_tbank_proto_types_tbankaccount", "label": "TBankAccount", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankAccount", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 3}, {"id": "types_tbank_proto_types_tbankaccountsresponse", "label": "TBankAccountsResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankAccountsResponse", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 2}, {"id": "types_tbank_proto_types_tbankportfolioposition", "label": "TBankPortfolioPosition", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankPortfolioPosition", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 3}, {"id": "types_tbank_proto_types_tbankportfolioresponse", "label": "TBankPortfolioResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankPortfolioResponse", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 5}, {"id": "types_tbank_proto_types_tbankpositionssecurity", "label": "TBankPositionsSecurity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankPositionsSecurity", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 1}, {"id": "types_tbank_proto_types_tbankpositionsresponse", "label": "TBankPositionsResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankPositionsResponse", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 4}, {"id": "types_tbank_proto_types_tbankoperationtrade", "label": "TBankOperationTrade", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankOperationTrade", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 1}, {"id": "types_tbank_proto_types_tbankoperationitem", "label": "TBankOperationItem", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankOperationItem", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 2}, {"id": "types_tbank_proto_types_tbankoperationsbycursorresponse", "label": "TBankOperationsByCursorResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankOperationsByCursorResponse", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 3}, {"id": "types_tbank_proto_types_tbankinstrument", "label": "TBankInstrument", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankInstrument", "community": 16, "community_name": "Community 16", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 11}, {"id": "types_tbank_proto_types_tbankinstrumentresponse", "label": "TBankInstrumentResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankInstrumentResponse", "community": 19, "community_name": "Community 19", "source_file": "apps/backend/src/modules/tbank/types/tbank-proto.types.ts", "file_type": "code", "degree": 2}, {"id": "backend_tsconfig", "label": "tsconfig.json", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.json", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 3}, {"id": "backend_tsconfig_extends", "label": "extends", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "extends", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 10}, {"id": "backend_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_outdir", "label": "outDir", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "outDir", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_emitdecoratormetadata", "label": "emitDecoratorMetadata", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "emitDecoratorMetadata", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_experimentaldecorators", "label": "experimentalDecorators", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "experimentalDecorators", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_baseurl", "label": "baseUrl", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "baseUrl", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_paths", "label": "paths", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 2}, {"id": "backend_tsconfig_paths", "label": "@/*", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@/*", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_types", "label": "types", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_include", "label": "include", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 58, "community_name": "Community 58", "source_file": "apps/backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_vitest_config", "label": "vitest.config.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 106, "community_name": "Community 106", "source_file": "apps/backend/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "docs_babel_config", "label": "babel.config.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "babel.config.js", "community": 283, "community_name": "Community 283", "source_file": "apps/docs/babel.config.js", "file_type": "code", "degree": 0}, {"id": "docs_docusaurus_config", "label": "docusaurus.config.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "docusaurus.config.ts", "community": 278, "community_name": "Community 278", "source_file": "apps/docs/docusaurus.config.ts", "file_type": "code", "degree": 1}, {"id": "docs_docusaurus_config_config", "label": "config", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 278, "community_name": "Community 278", "source_file": "apps/docs/docusaurus.config.ts", "file_type": "code", "degree": 1}, {"id": "docs_package", "label": "package.json", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 6}, {"id": "docs_package_name", "label": "name", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_version", "label": "version", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_private", "label": "private", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_scripts", "label": "scripts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 4}, {"id": "docs_package_scripts_dev", "label": "dev", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_scripts_build", "label": "build", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_scripts_serve", "label": "serve", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "serve", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_dependencies", "label": "dependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "dependencies", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 7}, {"id": "docs_package_dependencies_docusaurus_core", "label": "@docusaurus/core", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@docusaurus/core", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_dependencies_docusaurus_preset_classic", "label": "@docusaurus/preset-classic", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@docusaurus/preset-classic", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_dependencies_docusaurus_theme_mermaid", "label": "@docusaurus/theme-mermaid", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@docusaurus/theme-mermaid", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_dependencies_mdx_js_react", "label": "@mdx-js/react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mdx-js/react", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_dependencies_react", "label": "react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_devdependencies", "label": "devDependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 3}, {"id": "docs_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 124, "community_name": "Community 124", "source_file": "apps/docs/package.json", "file_type": "code", "degree": 1}, {"id": "docs_sidebars", "label": "sidebars.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sidebars.ts", "community": 279, "community_name": "Community 279", "source_file": "apps/docs/sidebars.ts", "file_type": "code", "degree": 1}, {"id": "docs_sidebars_sidebars", "label": "sidebars", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sidebars", "community": 279, "community_name": "Community 279", "source_file": "apps/docs/sidebars.ts", "file_type": "code", "degree": 1}, {"id": "mocks_browser", "label": "browser.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "browser.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/browser.ts", "file_type": "code", "degree": 4}, {"id": "mocks_browser_worker", "label": "worker", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "worker", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/browser.ts", "file_type": "code", "degree": 1}, {"id": "data_auth", "label": "auth.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/auth.ts", "file_type": "code", "degree": 3}, {"id": "data_auth_mockuser", "label": "mockUser", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockUser", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/auth.ts", "file_type": "code", "degree": 3}, {"id": "data_auth_mockauthresponse", "label": "mockAuthResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockAuthResponse", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/auth.ts", "file_type": "code", "degree": 3}, {"id": "data_bonds", "label": "bonds.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bonds.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/bonds.ts", "file_type": "code", "degree": 3}, {"id": "data_bonds_mockbond", "label": "mockBond", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBond", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/bonds.ts", "file_type": "code", "degree": 3}, {"id": "data_bonds_mockbondhistory", "label": "mockBondHistory", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBondHistory", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/bonds.ts", "file_type": "code", "degree": 3}, {"id": "data_broker", "label": "broker.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "broker.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 7}, {"id": "data_broker_mockbrokeraccounts", "label": "mockBrokerAccounts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBrokerAccounts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 3}, {"id": "data_broker_mockbrokerportfolio", "label": "mockBrokerPortfolio", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBrokerPortfolio", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 3}, {"id": "data_broker_mockbrokerpositions", "label": "mockBrokerPositions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBrokerPositions", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 3}, {"id": "data_broker_mockbrokeroperations", "label": "mockBrokerOperations", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBrokerOperations", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 3}, {"id": "data_broker_mockbrokerevents", "label": "mockBrokerEvents", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockBrokerEvents", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 3}, {"id": "data_broker_mockeventssummary", "label": "mockEventsSummary", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockEventsSummary", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/broker.ts", "file_type": "code", "degree": 3}, {"id": "data_candles", "label": "candles.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "candles.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/candles.ts", "file_type": "code", "degree": 2}, {"id": "data_candles_mockcandles", "label": "mockCandles", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockCandles", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/candles.ts", "file_type": "code", "degree": 3}, {"id": "data_index", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/index.ts", "file_type": "code", "degree": 29}, {"id": "data_portfolios", "label": "portfolios.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolios.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/portfolios.ts", "file_type": "code", "degree": 5}, {"id": "data_portfolios_mockportfolios", "label": "mockPortfolios", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockPortfolios", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/portfolios.ts", "file_type": "code", "degree": 3}, {"id": "data_portfolios_mockpositions", "label": "mockPositions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockPositions", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/portfolios.ts", "file_type": "code", "degree": 3}, {"id": "data_portfolios_mockportfoliodetail", "label": "mockPortfolioDetail", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockPortfolioDetail", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/portfolios.ts", "file_type": "code", "degree": 3}, {"id": "data_portfolios_mockanalytics", "label": "mockAnalytics", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockAnalytics", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/portfolios.ts", "file_type": "code", "degree": 3}, {"id": "data_screener", "label": "screener.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "screener.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/screener.ts", "file_type": "code", "degree": 2}, {"id": "data_screener_mockscreeneritems", "label": "mockScreenerItems", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockScreenerItems", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/screener.ts", "file_type": "code", "degree": 3}, {"id": "data_search", "label": "search.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "search.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/search.ts", "file_type": "code", "degree": 2}, {"id": "data_search_mocksearchresults", "label": "mockSearchResults", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockSearchResults", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/search.ts", "file_type": "code", "degree": 3}, {"id": "data_shares", "label": "shares.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "shares.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/shares.ts", "file_type": "code", "degree": 4}, {"id": "data_shares_mockshare", "label": "mockShare", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockShare", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/shares.ts", "file_type": "code", "degree": 3}, {"id": "data_shares_mockdividends", "label": "mockDividends", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockDividends", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/shares.ts", "file_type": "code", "degree": 3}, {"id": "data_shares_mocksharehistory", "label": "mockShareHistory", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "mockShareHistory", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/data/shares.ts", "file_type": "code", "degree": 3}, {"id": "mocks_handlers", "label": "handlers.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "handlers.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/handlers.ts", "file_type": "code", "degree": 26}, {"id": "mocks_handlers_handlers", "label": "handlers", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handlers", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/handlers.ts", "file_type": "code", "degree": 3}, {"id": "mocks_server", "label": "server.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "server.ts", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/mocks/server.ts", "file_type": "code", "degree": 14}, {"id": "mocks_server_server", "label": "server", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "server", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/mocks/server.ts", "file_type": "code", "degree": 12}, {"id": "mocks_utils", "label": "utils.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "utils.ts", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/utils.ts", "file_type": "code", "degree": 2}, {"id": "mocks_utils_envelope", "label": "envelope()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "envelope()", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/mocks/utils.ts", "file_type": "code", "degree": 2}, {"id": "frontend_package", "label": "package.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 8}, {"id": "frontend_package_name", "label": "name", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_version", "label": "version", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_private", "label": "private", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_type", "label": "type", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts", "label": "scripts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 12}, {"id": "frontend_package_scripts_dev", "label": "dev", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_build", "label": "build", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_typecheck", "label": "typecheck", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typecheck", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_preview", "label": "preview", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "preview", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_codegen", "label": "codegen", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "codegen", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_lint", "label": "lint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_lint_fix", "label": "lint:fix", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint:fix", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_format", "label": "format", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "format", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_format_check", "label": "format:check", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "format:check", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_test", "label": "test", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_scripts_test_watch", "label": "test:watch", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:watch", "community": 70, "community_name": "Community 70", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies", "label": "dependencies", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 22}, {"id": "frontend_package_dependencies_emotion_react", "label": "@emotion/react", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/react", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_emotion_styled", "label": "@emotion/styled", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/styled", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_fontsource_inter", "label": "@fontsource/inter", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@fontsource/inter", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_hookform_resolvers", "label": "@hookform/resolvers", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@hookform/resolvers", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_moex_vibe_design_system", "label": "@moex-vibe/design-system", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@moex-vibe/design-system", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_mui_icons_material", "label": "@mui/icons-material", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/icons-material", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_mui_material", "label": "@mui/material", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/material", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_tanstack_react_query", "label": "@tanstack/react-query", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-query", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_tanstack_react_router", "label": "@tanstack/react-router", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-router", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_tanstack_react_table", "label": "@tanstack/react-table", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-table", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_clsx", "label": "clsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clsx", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_dayjs", "label": "dayjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dayjs", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_ky", "label": "ky", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ky", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_lightweight_charts", "label": "lightweight-charts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lightweight-charts", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_openapi_fetch", "label": "openapi-fetch", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openapi-fetch", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_react", "label": "react", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_react_hook_form", "label": "react-hook-form", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-hook-form", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_react_is", "label": "react-is", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-is", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_zod", "label": "zod", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zod", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_dependencies_zustand", "label": "zustand", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 29, "community_name": "Community 29", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies", "label": "devDependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 21}, {"id": "frontend_package_devdependencies_biomejs_biome", "label": "@biomejs/biome", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@biomejs/biome", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_conarti_eslint_plugin_feature_sliced", "label": "@conarti/eslint-plugin-feature-sliced", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@conarti/eslint-plugin-feature-sliced", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_tanstack_router_devtools", "label": "@tanstack/router-devtools", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/router-devtools", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_testing_library_react", "label": "@testing-library/react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_testing_library_user_event", "label": "@testing-library/user-event", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/user-event", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_typescript_eslint_parser", "label": "@typescript-eslint/parser", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@typescript-eslint/parser", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_eslint_import_resolver_typescript", "label": "eslint-import-resolver-typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-import-resolver-typescript", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_eslint_plugin_import", "label": "eslint-plugin-import", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-import", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_jsdom", "label": "jsdom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsdom", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_msw", "label": "msw", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "msw", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_openapi_typescript", "label": "openapi-typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openapi-typescript", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_vite", "label": "vite", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_devdependencies_vitest", "label": "vitest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 32, "community_name": "Community 32", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_package_overrides", "label": "overrides", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "overrides", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_package_overrides_react_is", "label": "react-is", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-is", "community": 90, "community_name": "Community 90", "source_file": "apps/frontend/package.json", "file_type": "code", "degree": 1}, {"id": "public_mockserviceworker", "label": "mockServiceWorker.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockServiceWorker.js", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 8}, {"id": "public_mockserviceworker_is_mocked_response", "label": "IS_MOCKED_RESPONSE", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IS_MOCKED_RESPONSE", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 1}, {"id": "public_mockserviceworker_activeclientids", "label": "activeClientIds", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activeClientIds", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 1}, {"id": "public_mockserviceworker_handlerequest", "label": "handleRequest()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRequest()", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 5}, {"id": "public_mockserviceworker_resolvemainclient", "label": "resolveMainClient()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveMainClient()", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 2}, {"id": "public_mockserviceworker_getresponse", "label": "getResponse()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getResponse()", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 5}, {"id": "public_mockserviceworker_sendtoclient", "label": "sendToClient()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sendToClient()", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 3}, {"id": "public_mockserviceworker_respondwithmock", "label": "respondWithMock()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "respondWithMock()", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 2}, {"id": "public_mockserviceworker_serializerequest", "label": "serializeRequest()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "serializeRequest()", "community": 85, "community_name": "Community 85", "source_file": "apps/frontend/public/mockServiceWorker.js", "file_type": "code", "degree": 3}, {"id": "app_app", "label": "App.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "App.tsx", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/app/App.tsx", "file_type": "code", "degree": 5}, {"id": "app_app_app", "label": "App()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "App()", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/app/App.tsx", "file_type": "code", "degree": 2}, {"id": "app_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/app/index.ts", "file_type": "code", "degree": 1}, {"id": "layouts_applayout", "label": "AppLayout.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AppLayout.tsx", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/app/layouts/AppLayout.tsx", "file_type": "code", "degree": 7}, {"id": "layouts_applayout_applayout", "label": "AppLayout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AppLayout()", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/app/layouts/AppLayout.tsx", "file_type": "code", "degree": 4}, {"id": "layouts_index", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/app/layouts/index.ts", "file_type": "code", "degree": 2}, {"id": "providers_appproviders", "label": "AppProviders.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AppProviders.tsx", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/app/providers/AppProviders.tsx", "file_type": "code", "degree": 6}, {"id": "providers_appproviders_queryclient", "label": "queryClient", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "queryClient", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/app/providers/AppProviders.tsx", "file_type": "code", "degree": 1}, {"id": "providers_appproviders_appproviders", "label": "AppProviders()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AppProviders()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/app/providers/AppProviders.tsx", "file_type": "code", "degree": 3}, {"id": "providers_sessionprovider_test", "label": "SessionProvider.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionProvider.test.tsx", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/app/providers/SessionProvider.test.tsx", "file_type": "code", "degree": 8}, {"id": "providers_sessionprovider_test_renderwithproviders", "label": "renderWithProviders()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithProviders()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/app/providers/SessionProvider.test.tsx", "file_type": "code", "degree": 1}, {"id": "providers_sessionprovider_test_testconsumer", "label": "TestConsumer()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestConsumer()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/app/providers/SessionProvider.test.tsx", "file_type": "code", "degree": 1}, {"id": "providers_sessionprovider", "label": "SessionProvider.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "SessionProvider.tsx", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/app/providers/SessionProvider.tsx", "file_type": "code", "degree": 16}, {"id": "providers_sessionprovider_sessionprovider", "label": "SessionProvider()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionProvider()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/app/providers/SessionProvider.tsx", "file_type": "code", "degree": 4}, {"id": "providers_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/app/providers/index.ts", "file_type": "code", "degree": 4}, {"id": "routing_index", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/index.ts", "file_type": "code", "degree": 2}, {"id": "routing_routetree", "label": "routeTree.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.7, "font": {"size": 12, "color": "#ffffff"}, "title": "routeTree.tsx", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 54}, {"id": "routing_routetree_requireauth", "label": "requireAuth()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAuth()", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_rootroute", "label": "rootRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rootRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_indexroute", "label": "indexRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "indexRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_stockroute", "label": "stockRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "stockRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_bondroute", "label": "bondRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bondRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_screenerroute", "label": "screenerRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "screenerRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_loginroute", "label": "loginRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loginRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_registerroute", "label": "registerRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "registerRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_profileroute", "label": "profileRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "profileRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_portfoliosroute", "label": "portfoliosRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "portfoliosRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_portfoliodetailroute", "label": "portfolioDetailRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolioDetailRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokerroute", "label": "brokerRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokeraccountroot", "label": "brokerAccountRoot", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountRoot", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokeraccountindexroute", "label": "brokerAccountIndexRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountIndexRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokersharesroute", "label": "brokerSharesRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerSharesRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokerbondsroute", "label": "brokerBondsRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerBondsRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokeroperationsroute", "label": "brokerOperationsRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerOperationsRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokereventsroute", "label": "brokerEventsRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerEventsRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_brokeranalyticsroute", "label": "brokerAnalyticsRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAnalyticsRoute", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_routetree", "label": "routeTree", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "routeTree", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_routetree_router", "label": "router", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "router", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 4}, {"id": "routing_routetree_register", "label": "Register", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Register", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/routeTree.tsx", "file_type": "code", "degree": 1}, {"id": "routing_router", "label": "router.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "router.ts", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/app/routing/router.ts", "file_type": "code", "degree": 3}, {"id": "api_bondapi", "label": "bondApi.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bondApi.ts", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/api/bondApi.ts", "file_type": "code", "degree": 15}, {"id": "api_bondapi_getbond", "label": "getBond()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBond()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/api/bondApi.ts", "file_type": "code", "degree": 4}, {"id": "api_bondapi_getbondmarketdata", "label": "getBondMarketData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getBondMarketData()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/api/bondApi.ts", "file_type": "code", "degree": 3}, {"id": "api_bondapi_getbondhistory", "label": "getBondHistory()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getBondHistory()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/api/bondApi.ts", "file_type": "code", "degree": 3}, {"id": "api_bondapi_getbondcandles", "label": "getBondCandles()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBondCandles()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/api/bondApi.ts", "file_type": "code", "degree": 4}, {"id": "apps_frontend_src_entities_bond_index_ts_bond_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/index.ts", "file_type": "code", "degree": 9}, {"id": "model_usebond_test", "label": "useBond.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useBond.test.tsx", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/model/useBond.test.tsx", "file_type": "code", "degree": 3}, {"id": "model_usebond_test_createwrapper", "label": "createWrapper()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/model/useBond.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usebond", "label": "useBond.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useBond.ts", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/model/useBond.ts", "file_type": "code", "degree": 7}, {"id": "model_usebond_usebond", "label": "useBond()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useBond()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/model/useBond.ts", "file_type": "code", "degree": 5}, {"id": "model_usebondcandles_test", "label": "useBondCandles.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useBondCandles.test.tsx", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/bond/model/useBondCandles.test.tsx", "file_type": "code", "degree": 5}, {"id": "model_usebondcandles_test_createwrapper", "label": "createWrapper()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/bond/model/useBondCandles.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usebondcandles", "label": "useBondCandles.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useBondCandles.ts", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/model/useBondCandles.ts", "file_type": "code", "degree": 7}, {"id": "model_usebondcandles_usebondcandles", "label": "useBondCandles()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useBondCandles()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/entities/bond/model/useBondCandles.ts", "file_type": "code", "degree": 5}, {"id": "api_brokeraccountapi", "label": "brokerAccountApi.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountApi.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/api/brokerAccountApi.ts", "file_type": "code", "degree": 13}, {"id": "api_brokeraccountapi_brokeroperationquery", "label": "BrokerOperationQuery", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationQuery", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/api/brokerAccountApi.ts", "file_type": "code", "degree": 2}, {"id": "api_brokeraccountapi_getbrokeraccounts", "label": "getBrokerAccounts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerAccounts()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/api/brokerAccountApi.ts", "file_type": "code", "degree": 4}, {"id": "api_brokeraccountapi_getbrokerportfolio", "label": "getBrokerPortfolio()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerPortfolio()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/api/brokerAccountApi.ts", "file_type": "code", "degree": 5}, {"id": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/index.ts", "file_type": "code", "degree": 13}, {"id": "model_brokeraccountsoverview_test", "label": "brokerAccountsOverview.test.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountsOverview.test.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.test.ts", "file_type": "code", "degree": 5}, {"id": "model_brokeraccountsoverview_test_portfolio", "label": "portfolio()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.test.ts", "file_type": "code", "degree": 1}, {"id": "model_brokeraccountsoverview", "label": "brokerAccountsOverview.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountsOverview.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 13}, {"id": "model_brokeraccountsoverview_brokercurrencyallocationsummary", "label": "BrokerCurrencyAllocationSummary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerCurrencyAllocationSummary", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 1}, {"id": "model_brokeraccountsoverview_brokercurrencyportfoliosummary", "label": "BrokerCurrencyPortfolioSummary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerCurrencyPortfolioSummary", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 1}, {"id": "model_brokeraccountsoverview_brokercurrencycashsummary", "label": "BrokerCurrencyCashSummary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerCurrencyCashSummary", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 1}, {"id": "model_brokeraccountsoverview_brokeraccountsaggregate", "label": "BrokerAccountsAggregate", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsAggregate", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 3}, {"id": "model_brokeraccountsoverview_mutablecurrencysummary", "label": "MutableCurrencySummary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MutableCurrencySummary", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 1}, {"id": "model_brokeraccountsoverview_moneyvalue", "label": "moneyValue()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "moneyValue()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 2}, {"id": "model_brokeraccountsoverview_brokeraccounttypelabel", "label": "brokerAccountTypeLabel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountTypeLabel()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 1}, {"id": "model_brokeraccountsoverview_aggregatebrokeraccounts", "label": "aggregateBrokerAccounts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "aggregateBrokerAccounts()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/brokerAccountsOverview.ts", "file_type": "code", "degree": 6}, {"id": "model_usebrokeraccountportfolios", "label": "useBrokerAccountPortfolios.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAccountPortfolios.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/useBrokerAccountPortfolios.ts", "file_type": "code", "degree": 7}, {"id": "model_usebrokeraccountportfolios_usebrokeraccountportfolios", "label": "useBrokerAccountPortfolios()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAccountPortfolios()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/useBrokerAccountPortfolios.ts", "file_type": "code", "degree": 4}, {"id": "model_usebrokeraccounts", "label": "useBrokerAccounts.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAccounts.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/useBrokerAccounts.ts", "file_type": "code", "degree": 6}, {"id": "model_usebrokeraccounts_usebrokeraccounts", "label": "useBrokerAccounts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAccounts()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/useBrokerAccounts.ts", "file_type": "code", "degree": 4}, {"id": "model_usebrokerportfolio", "label": "useBrokerPortfolio.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerPortfolio.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-account/model/useBrokerPortfolio.ts", "file_type": "code", "degree": 6}, {"id": "model_usebrokerportfolio_usebrokerportfolio", "label": "useBrokerPortfolio()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerPortfolio()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/entities/broker-account/model/useBrokerPortfolio.ts", "file_type": "code", "degree": 4}, {"id": "api_brokeranalyticsapi", "label": "brokerAnalyticsApi.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAnalyticsApi.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-analytics/api/brokerAnalyticsApi.ts", "file_type": "code", "degree": 8}, {"id": "api_brokeranalyticsapi_getbrokeranalytics", "label": "getBrokerAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerAnalytics()", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-analytics/api/brokerAnalyticsApi.ts", "file_type": "code", "degree": 4}, {"id": "apps_frontend_src_entities_broker_analytics_index_ts_broker_analytics_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-analytics/index.ts", "file_type": "code", "degree": 4}, {"id": "model_usebrokeranalytics", "label": "useBrokerAnalytics.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAnalytics.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-analytics/model/useBrokerAnalytics.ts", "file_type": "code", "degree": 6}, {"id": "model_usebrokeranalytics_usebrokeranalytics", "label": "useBrokerAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAnalytics()", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-analytics/model/useBrokerAnalytics.ts", "file_type": "code", "degree": 4}, {"id": "api_brokereventapi", "label": "brokerEventApi.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerEventApi.ts", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/api/brokerEventApi.ts", "file_type": "code", "degree": 10}, {"id": "api_brokereventapi_brokereventsquery", "label": "BrokerEventsQuery", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsQuery", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/api/brokerEventApi.ts", "file_type": "code", "degree": 3}, {"id": "api_brokereventapi_getbrokerevents", "label": "getBrokerEvents()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerEvents()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/api/brokerEventApi.ts", "file_type": "code", "degree": 5}, {"id": "broker_event_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/index.ts", "file_type": "code", "degree": 9}, {"id": "model_usebrokerevents_test", "label": "useBrokerEvents.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerEvents.test.tsx", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/model/useBrokerEvents.test.tsx", "file_type": "code", "degree": 7}, {"id": "model_usebrokerevents_test_createwrapper", "label": "createWrapper()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/model/useBrokerEvents.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usebrokerevents_test_mockeventsdata", "label": "mockEventsData", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockEventsData", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/model/useBrokerEvents.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usebrokerevents_test_query", "label": "query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "query", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/model/useBrokerEvents.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usebrokerevents", "label": "useBrokerEvents.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerEvents.ts", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/model/useBrokerEvents.ts", "file_type": "code", "degree": 8}, {"id": "model_usebrokerevents_usebrokerevents", "label": "useBrokerEvents()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerEvents()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/entities/broker-event/model/useBrokerEvents.ts", "file_type": "code", "degree": 8}, {"id": "api_brokeroperationapi", "label": "brokerOperationApi.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerOperationApi.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/api/brokerOperationApi.ts", "file_type": "code", "degree": 13}, {"id": "api_brokeroperationapi_brokeroperationquery", "label": "BrokerOperationQuery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationQuery", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/api/brokerOperationApi.ts", "file_type": "code", "degree": 3}, {"id": "api_brokeroperationapi_syncbrokeroperations", "label": "syncBrokerOperations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "syncBrokerOperations()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/api/brokerOperationApi.ts", "file_type": "code", "degree": 3}, {"id": "api_brokeroperationapi_getbrokeroperations", "label": "getBrokerOperations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerOperations()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/api/brokerOperationApi.ts", "file_type": "code", "degree": 5}, {"id": "broker_operation_index", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/index.ts", "file_type": "code", "degree": 17}, {"id": "model_operationfilters_test", "label": "operationFilters.test.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "operationFilters.test.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.test.ts", "file_type": "code", "degree": 3}, {"id": "model_operationfilters", "label": "operationFilters.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "operationFilters.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 19}, {"id": "model_operationfilters_brokeroperationimpact", "label": "BrokerOperationImpact", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationImpact", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 3}, {"id": "model_operationfilters_trade_types", "label": "TRADE_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TRADE_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_bond_repayment_types", "label": "BOND_REPAYMENT_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BOND_REPAYMENT_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_income_types", "label": "INCOME_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INCOME_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_tax_types", "label": "TAX_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TAX_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_fee_types", "label": "FEE_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FEE_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_transfer_input_types", "label": "TRANSFER_INPUT_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TRANSFER_INPUT_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_transfer_output_types", "label": "TRANSFER_OUTPUT_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TRANSFER_OUTPUT_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_security_transfer_types", "label": "SECURITY_TRANSFER_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SECURITY_TRANSFER_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_operation_type_labels", "label": "OPERATION_TYPE_LABELS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OPERATION_TYPE_LABELS", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_broker_operation_type_options", "label": "BROKER_OPERATION_TYPE_OPTIONS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BROKER_OPERATION_TYPE_OPTIONS", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 5}, {"id": "model_operationfilters_broker_operation_types", "label": "BROKER_OPERATION_TYPES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BROKER_OPERATION_TYPES", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 1}, {"id": "model_operationfilters_isbrokeroperationtype", "label": "isBrokerOperationType()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "isBrokerOperationType()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 6}, {"id": "model_operationfilters_getbrokeroperationtypelabel", "label": "getBrokerOperationTypeLabel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerOperationTypeLabel()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 4}, {"id": "model_operationfilters_getbrokeroperationimpact", "label": "getBrokerOperationImpact()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerOperationImpact()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/operationFilters.ts", "file_type": "code", "degree": 4}, {"id": "model_usebrokeroperations_test", "label": "useBrokerOperations.test.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerOperations.test.tsx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/useBrokerOperations.test.tsx", "file_type": "code", "degree": 5}, {"id": "model_usebrokeroperations_test_createwrapper", "label": "createWrapper()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/useBrokerOperations.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usebrokeroperations", "label": "useBrokerOperations.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerOperations.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/useBrokerOperations.ts", "file_type": "code", "degree": 8}, {"id": "model_usebrokeroperations_usebrokeroperations", "label": "useBrokerOperations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerOperations()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/useBrokerOperations.ts", "file_type": "code", "degree": 7}, {"id": "model_usesyncbrokeroperations", "label": "useSyncBrokerOperations.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useSyncBrokerOperations.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/useSyncBrokerOperations.ts", "file_type": "code", "degree": 4}, {"id": "model_usesyncbrokeroperations_usesyncbrokeroperations", "label": "useSyncBrokerOperations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useSyncBrokerOperations()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-operation/model/useSyncBrokerOperations.ts", "file_type": "code", "degree": 4}, {"id": "api_brokerpositionapi", "label": "brokerPositionApi.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerPositionApi.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-position/api/brokerPositionApi.ts", "file_type": "code", "degree": 8}, {"id": "api_brokerpositionapi_getbrokerpositions", "label": "getBrokerPositions()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerPositions()", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-position/api/brokerPositionApi.ts", "file_type": "code", "degree": 4}, {"id": "broker_position_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/index.ts", "file_type": "code", "degree": 18}, {"id": "model_brokerallocation_test", "label": "brokerAllocation.test.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAllocation.test.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.test.ts", "file_type": "code", "degree": 7}, {"id": "model_brokerallocation_test_money", "label": "money()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "money()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.test.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerallocation_test_portfolio", "label": "portfolio()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.test.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerallocation", "label": "brokerAllocation.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAllocation.ts", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.ts", "file_type": "code", "degree": 9}, {"id": "model_brokerallocation_brokerallocationkey", "label": "BrokerAllocationKey", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAllocationKey", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.ts", "file_type": "code", "degree": 2}, {"id": "model_brokerallocation_brokerallocationitem", "label": "BrokerAllocationItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAllocationItem", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.ts", "file_type": "code", "degree": 2}, {"id": "model_brokerallocation_brokernegativeallocationitem", "label": "BrokerNegativeAllocationItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerNegativeAllocationItem", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerallocation_allocation_config", "label": "ALLOCATION_CONFIG", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ALLOCATION_CONFIG", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerallocation_buildbrokerallocation", "label": "buildBrokerAllocation()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildBrokerAllocation()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/entities/broker-position/model/brokerAllocation.ts", "file_type": "code", "degree": 8}, {"id": "model_brokerdisplay_test", "label": "brokerDisplay.test.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerDisplay.test.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.test.ts", "file_type": "code", "degree": 13}, {"id": "model_brokerdisplay_test_position", "label": "position()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "position()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.test.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerdisplay_test_operation", "label": "operation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "operation()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.test.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerdisplay", "label": "brokerDisplay.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerDisplay.ts", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 10}, {"id": "model_brokerdisplay_brokerpositiongroup", "label": "BrokerPositionGroup", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionGroup", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 2}, {"id": "model_brokerdisplay_brokerinstrumentlinkinput", "label": "BrokerInstrumentLinkInput", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerInstrumentLinkInput", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerdisplay_stock_class_codes", "label": "STOCK_CLASS_CODES", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STOCK_CLASS_CODES", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerdisplay_bond_class_codes", "label": "BOND_CLASS_CODES", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BOND_CLASS_CODES", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 1}, {"id": "model_brokerdisplay_getbrokerpositiongroup", "label": "getBrokerPositionGroup()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerPositionGroup()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 3}, {"id": "model_brokerdisplay_getbrokerinstrumentpath", "label": "getBrokerInstrumentPath()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrokerInstrumentPath()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/brokerDisplay.ts", "file_type": "code", "degree": 7}, {"id": "model_usebrokerpositions", "label": "useBrokerPositions.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerPositions.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/broker-position/model/useBrokerPositions.ts", "file_type": "code", "degree": 6}, {"id": "model_usebrokerpositions_usebrokerpositions", "label": "useBrokerPositions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerPositions()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/entities/broker-position/model/useBrokerPositions.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi", "label": "portfolioApi.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "portfolioApi.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 22}, {"id": "api_portfolioapi_getportfolios", "label": "getPortfolios()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getPortfolios()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_getportfolio", "label": "getPortfolio()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getPortfolio()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_createportfolio", "label": "createPortfolio()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "createPortfolio()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_updateportfolio", "label": "updatePortfolio()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "updatePortfolio()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_deleteportfolio", "label": "deletePortfolio()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "deletePortfolio()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_addposition", "label": "addPosition()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "addPosition()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_updateposition", "label": "updatePosition()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "updatePosition()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_removeposition", "label": "removePosition()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "removePosition()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "api_portfolioapi_getportfolioanalytics", "label": "getPortfolioAnalytics()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getPortfolioAnalytics()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/api/portfolioApi.ts", "file_type": "code", "degree": 4}, {"id": "portfolio_index", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/index.ts", "file_type": "code", "degree": 23}, {"id": "model_useportfolio", "label": "usePortfolio.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolio.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolio.ts", "file_type": "code", "degree": 6}, {"id": "model_useportfolio_useportfolio", "label": "usePortfolio()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolio()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolio.ts", "file_type": "code", "degree": 4}, {"id": "model_useportfolioanalytics", "label": "usePortfolioAnalytics.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolioAnalytics.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolioAnalytics.ts", "file_type": "code", "degree": 6}, {"id": "model_useportfolioanalytics_useportfolioanalytics", "label": "usePortfolioAnalytics()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolioAnalytics()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolioAnalytics.ts", "file_type": "code", "degree": 2}, {"id": "model_useportfoliomutations", "label": "usePortfolioMutations.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolioMutations.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolioMutations.ts", "file_type": "code", "degree": 6}, {"id": "model_useportfoliomutations_useportfoliomutations", "label": "usePortfolioMutations()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolioMutations()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolioMutations.ts", "file_type": "code", "degree": 6}, {"id": "model_useportfolios", "label": "usePortfolios.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolios.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolios.ts", "file_type": "code", "degree": 6}, {"id": "model_useportfolios_useportfolios", "label": "usePortfolios()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "usePortfolios()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/entities/portfolio/model/usePortfolios.ts", "file_type": "code", "degree": 4}, {"id": "model_usepositionmutations", "label": "usePositionMutations.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "usePositionMutations.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/entities/portfolio/model/usePositionMutations.ts", "file_type": "code", "degree": 8}, {"id": "model_usepositionmutations_usepositionmutations", "label": "usePositionMutations()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "usePositionMutations()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/entities/portfolio/model/usePositionMutations.ts", "file_type": "code", "degree": 6}, {"id": "api_searchapi", "label": "searchApi.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "searchApi.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/search/api/searchApi.ts", "file_type": "code", "degree": 7}, {"id": "api_searchapi_searchsecurities", "label": "searchSecurities()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "searchSecurities()", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/search/api/searchApi.ts", "file_type": "code", "degree": 4}, {"id": "search_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/search/index.ts", "file_type": "code", "degree": 6}, {"id": "model_usesearch_test", "label": "useSearch.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useSearch.test.tsx", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/search/model/useSearch.test.tsx", "file_type": "code", "degree": 5}, {"id": "model_usesearch_test_createwrapper", "label": "createWrapper()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/search/model/useSearch.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usesearch", "label": "useSearch.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useSearch.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/entities/search/model/useSearch.ts", "file_type": "code", "degree": 6}, {"id": "model_usesearch_usesearch", "label": "useSearch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useSearch()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/search/model/useSearch.ts", "file_type": "code", "degree": 5}, {"id": "api_sessionapi_test", "label": "sessionApi.test.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sessionApi.test.ts", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.test.ts", "file_type": "code", "degree": 12}, {"id": "api_sessionapi", "label": "sessionApi.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "sessionApi.ts", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 16}, {"id": "api_sessionapi_login", "label": "login()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "login()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 4}, {"id": "api_sessionapi_register", "label": "register()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "register()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 4}, {"id": "api_sessionapi_refresh", "label": "refresh()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "refresh()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 4}, {"id": "api_sessionapi_logout", "label": "logout()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "logout()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 4}, {"id": "api_sessionapi_getme", "label": "getMe()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getMe()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 3}, {"id": "api_sessionapi_updateprofile", "label": "updateProfile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "updateProfile()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/sessionApi.ts", "file_type": "code", "degree": 3}, {"id": "api_tokenmanager", "label": "tokenManager.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tokenManager.ts", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/entities/session/api/tokenManager.ts", "file_type": "code", "degree": 12}, {"id": "api_tokenmanager_setaccesstoken", "label": "setAccessToken()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setAccessToken()", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/api/tokenManager.ts", "file_type": "code", "degree": 7}, {"id": "api_tokenmanager_getaccesstoken", "label": "getAccessToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getAccessToken()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/entities/session/api/tokenManager.ts", "file_type": "code", "degree": 3}, {"id": "api_tokenmanager_setonunauthorized", "label": "setOnUnauthorized()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setOnUnauthorized()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/entities/session/api/tokenManager.ts", "file_type": "code", "degree": 2}, {"id": "api_tokenmanager_refreshtokens", "label": "refreshTokens()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "refreshTokens()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/entities/session/api/tokenManager.ts", "file_type": "code", "degree": 3}, {"id": "api_tokenmanager_handleunauthorized", "label": "handleUnauthorized()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUnauthorized()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/entities/session/api/tokenManager.ts", "file_type": "code", "degree": 3}, {"id": "session_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/index.ts", "file_type": "code", "degree": 19}, {"id": "model_sessioncontext", "label": "sessionContext.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sessionContext.ts", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/entities/session/model/sessionContext.ts", "file_type": "code", "degree": 6}, {"id": "model_usesession_test", "label": "useSession.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useSession.test.tsx", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/entities/session/model/useSession.test.tsx", "file_type": "code", "degree": 7}, {"id": "model_usesession_test_sessionstate", "label": "SessionState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionState", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/entities/session/model/useSession.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usesession_test_mocksession", "label": "mockSession", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockSession", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/entities/session/model/useSession.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usesession_test_createwrapper", "label": "createWrapper()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/entities/session/model/useSession.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usesession", "label": "useSession.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useSession.ts", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/entities/session/model/useSession.ts", "file_type": "code", "degree": 6}, {"id": "model_usesession_usesession", "label": "useSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useSession()", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/entities/session/model/useSession.ts", "file_type": "code", "degree": 11}, {"id": "model_usesessionstore", "label": "useSessionStore.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useSessionStore.ts", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/model/useSessionStore.ts", "file_type": "code", "degree": 5}, {"id": "model_usesessionstore_sessionstate", "label": "SessionState", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionState", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/model/useSessionStore.ts", "file_type": "code", "degree": 2}, {"id": "model_usesessionstore_usesessionstore", "label": "useSessionStore", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useSessionStore", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/entities/session/model/useSessionStore.ts", "file_type": "code", "degree": 4}, {"id": "api_stockapi", "label": "stockApi.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "stockApi.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/api/stockApi.ts", "file_type": "code", "degree": 17}, {"id": "api_stockapi_getshare", "label": "getShare()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getShare()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/api/stockApi.ts", "file_type": "code", "degree": 3}, {"id": "api_stockapi_getsharemarketdata", "label": "getShareMarketData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getShareMarketData()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/api/stockApi.ts", "file_type": "code", "degree": 2}, {"id": "api_stockapi_getsharedividends", "label": "getShareDividends()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getShareDividends()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/api/stockApi.ts", "file_type": "code", "degree": 3}, {"id": "api_stockapi_getsharehistory", "label": "getShareHistory()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getShareHistory()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/api/stockApi.ts", "file_type": "code", "degree": 2}, {"id": "api_stockapi_getsharecandles", "label": "getShareCandles()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getShareCandles()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/api/stockApi.ts", "file_type": "code", "degree": 3}, {"id": "apps_frontend_src_entities_stock_index_ts_stock_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/index.ts", "file_type": "code", "degree": 6}, {"id": "model_usestock_test", "label": "useStock.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useStock.test.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStock.test.tsx", "file_type": "code", "degree": 3}, {"id": "model_usestock_test_createwrapper", "label": "createWrapper()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStock.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usestock", "label": "useStock.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useStock.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStock.ts", "file_type": "code", "degree": 7}, {"id": "model_usestock_usestock", "label": "useStock()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useStock()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStock.ts", "file_type": "code", "degree": 5}, {"id": "model_usestockcandles_test", "label": "useStockCandles.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useStockCandles.test.tsx", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/stock/model/useStockCandles.test.tsx", "file_type": "code", "degree": 5}, {"id": "model_usestockcandles_test_createwrapper", "label": "createWrapper()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/entities/stock/model/useStockCandles.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usestockcandles", "label": "useStockCandles.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useStockCandles.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStockCandles.ts", "file_type": "code", "degree": 7}, {"id": "model_usestockcandles_usestockcandles", "label": "useStockCandles()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useStockCandles()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStockCandles.ts", "file_type": "code", "degree": 5}, {"id": "model_usestockdividends_test", "label": "useStockDividends.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useStockDividends.test.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStockDividends.test.tsx", "file_type": "code", "degree": 5}, {"id": "model_usestockdividends_test_createwrapper", "label": "createWrapper()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStockDividends.test.tsx", "file_type": "code", "degree": 1}, {"id": "model_usestockdividends", "label": "useStockDividends.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "useStockDividends.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStockDividends.ts", "file_type": "code", "degree": 7}, {"id": "model_usestockdividends_usestockdividends", "label": "useStockDividends()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useStockDividends()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/entities/stock/model/useStockDividends.ts", "file_type": "code", "degree": 5}, {"id": "api_useaddposition", "label": "useAddPosition.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useAddPosition.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/api/useAddPosition.ts", "file_type": "code", "degree": 4}, {"id": "api_useaddposition_useaddposition", "label": "useAddPosition()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useAddPosition()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/api/useAddPosition.ts", "file_type": "code", "degree": 4}, {"id": "add_position_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/index.ts", "file_type": "code", "degree": 3}, {"id": "model_useaddpositionform", "label": "useAddPositionForm.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useAddPositionForm.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/model/useAddPositionForm.ts", "file_type": "code", "degree": 2}, {"id": "model_useaddpositionform_useaddpositionform", "label": "useAddPositionForm()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useAddPositionForm()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/model/useAddPositionForm.ts", "file_type": "code", "degree": 3}, {"id": "ui_addpositionform", "label": "AddPositionForm.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AddPositionForm.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/ui/AddPositionForm.tsx", "file_type": "code", "degree": 7}, {"id": "ui_addpositionform_inputstyle", "label": "inputStyle", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/ui/AddPositionForm.tsx", "file_type": "code", "degree": 1}, {"id": "ui_addpositionform_addpositionform", "label": "AddPositionForm()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AddPositionForm()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/features/add-position/ui/AddPositionForm.tsx", "file_type": "code", "degree": 5}, {"id": "api_screenerapi", "label": "screenerApi.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "screenerApi.ts", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/api/screenerApi.ts", "file_type": "code", "degree": 9}, {"id": "api_screenerapi_screenerquery", "label": "ScreenerQuery", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerQuery", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/api/screenerApi.ts", "file_type": "code", "degree": 5}, {"id": "api_screenerapi_getscreenerresults", "label": "getScreenerResults()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getScreenerResults()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/api/screenerApi.ts", "file_type": "code", "degree": 3}, {"id": "apps_frontend_src_features_screener_index_ts_screener_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/index.ts", "file_type": "code", "degree": 4}, {"id": "model_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/model/index.ts", "file_type": "code", "degree": 2}, {"id": "model_usescreener", "label": "useScreener.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useScreener.ts", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/model/useScreener.ts", "file_type": "code", "degree": 8}, {"id": "model_usescreener_usescreener", "label": "useScreener()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useScreener()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/model/useScreener.ts", "file_type": "code", "degree": 6}, {"id": "ui_filterpanel", "label": "FilterPanel.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterPanel.tsx", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanel.tsx", "file_type": "code", "degree": 9}, {"id": "ui_filterpanel_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanel.tsx", "file_type": "code", "degree": 2}, {"id": "ui_filterpanel_filterpanel", "label": "FilterPanel()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterPanel()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanel.tsx", "file_type": "code", "degree": 3}, {"id": "ui_filterpanelbond", "label": "FilterPanelBond.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterPanelBond.tsx", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanelBond.tsx", "file_type": "code", "degree": 4}, {"id": "ui_filterpanelbond_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanelBond.tsx", "file_type": "code", "degree": 1}, {"id": "ui_filterpanelbond_filterpanelbond", "label": "FilterPanelBond()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterPanelBond()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanelBond.tsx", "file_type": "code", "degree": 3}, {"id": "ui_filterpanelshare", "label": "FilterPanelShare.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterPanelShare.tsx", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanelShare.tsx", "file_type": "code", "degree": 4}, {"id": "ui_filterpanelshare_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanelShare.tsx", "file_type": "code", "degree": 1}, {"id": "ui_filterpanelshare_filterpanelshare", "label": "FilterPanelShare()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterPanelShare()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/FilterPanelShare.tsx", "file_type": "code", "degree": 3}, {"id": "ui_screenertable", "label": "ScreenerTable.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerTable.tsx", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/ScreenerTable.tsx", "file_type": "code", "degree": 7}, {"id": "ui_screenertable_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/ScreenerTable.tsx", "file_type": "code", "degree": 2}, {"id": "ui_screenertable_formatnum", "label": "formatNum()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatNum()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/ScreenerTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_screenertable_formatchange", "label": "formatChange()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatChange()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/ScreenerTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_screenertable_screenertable", "label": "ScreenerTable()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerTable()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/ScreenerTable.tsx", "file_type": "code", "degree": 3}, {"id": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/features/screener/ui/index.ts", "file_type": "code", "degree": 8}, {"id": "apps_frontend_src_main_tsx_src_main", "label": "main.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "main.tsx", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/main.tsx", "file_type": "code", "degree": 6}, {"id": "src_main_startapp", "label": "startApp()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "startApp()", "community": 9, "community_name": "Community 9", "source_file": "apps/frontend/src/main.tsx", "file_type": "code", "degree": 2}, {"id": "apps_frontend_src_pages_bond_index_ts_bond_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/pages/bond/index.ts", "file_type": "code", "degree": 2}, {"id": "ui_bondpage", "label": "BondPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BondPage.tsx", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/pages/bond/ui/BondPage.tsx", "file_type": "code", "degree": 8}, {"id": "ui_bondpage_bondpage", "label": "BondPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BondPage()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/pages/bond/ui/BondPage.tsx", "file_type": "code", "degree": 5}, {"id": "apps_frontend_src_pages_broker_account_index_ts_broker_account_index", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-account/index.ts", "file_type": "code", "degree": 2}, {"id": "ui_brokeraccountoverviewpage", "label": "BrokerAccountOverviewPage.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerAccountOverviewPage.tsx", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-account/ui/BrokerAccountOverviewPage.tsx", "file_type": "code", "degree": 16}, {"id": "ui_brokeraccountoverviewpage_brokeraccountoverviewpage", "label": "BrokerAccountOverviewPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountOverviewPage()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-account/ui/BrokerAccountOverviewPage.tsx", "file_type": "code", "degree": 5}, {"id": "broker_accounts_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/pages/broker-accounts/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokeraccountspage", "label": "BrokerAccountsPage.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsPage.tsx", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/pages/broker-accounts/ui/BrokerAccountsPage.tsx", "file_type": "code", "degree": 10}, {"id": "ui_brokeraccountspage_brokeraccountspageskeleton", "label": "BrokerAccountsPageSkeleton()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsPageSkeleton()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/pages/broker-accounts/ui/BrokerAccountsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeraccountspage_brokeraccountspage", "label": "BrokerAccountsPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsPage()", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/pages/broker-accounts/ui/BrokerAccountsPage.tsx", "file_type": "code", "degree": 6}, {"id": "apps_frontend_src_pages_broker_analytics_index_ts_broker_analytics_index", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/index.ts", "file_type": "code", "degree": 2}, {"id": "ui_brokeranalyticspage", "label": "BrokerAnalyticsPage.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAnalyticsPage.tsx", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/ui/BrokerAnalyticsPage.tsx", "file_type": "code", "degree": 9}, {"id": "ui_brokeranalyticspage_formatamount", "label": "formatAmount()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatAmount()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/ui/BrokerAnalyticsPage.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokeranalyticspage_brokeranalyticspage", "label": "BrokerAnalyticsPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAnalyticsPage()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/ui/BrokerAnalyticsPage.tsx", "file_type": "code", "degree": 6}, {"id": "ui_brokeranalyticspage_row", "label": "Row()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Row()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/ui/BrokerAnalyticsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeranalyticspage_divider", "label": "Divider()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Divider()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/ui/BrokerAnalyticsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeranalyticspage_summaryitem", "label": "SummaryItem()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SummaryItem()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/pages/broker-analytics/ui/BrokerAnalyticsPage.tsx", "file_type": "code", "degree": 1}, {"id": "broker_events_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokereventspage_test", "label": "BrokerEventsPage.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsPage.test.tsx", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.test.tsx", "file_type": "code", "degree": 7}, {"id": "ui_brokereventspage_test_mocksetsearchparams", "label": "mockSetSearchParams", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockSetSearchParams", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_test_mocksearchparams", "label": "mockSearchParams", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockSearchParams", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_test_createwrapper", "label": "createWrapper()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_test_mockdata", "label": "mockData", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockData", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage", "label": "BrokerEventsPage.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerEventsPage.tsx", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 22}, {"id": "ui_brokereventspage_event_types", "label": "EVENT_TYPES", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EVENT_TYPES", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_eventtype", "label": "EventType", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EventType", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_filters", "label": "Filters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Filters", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_event_type_options", "label": "EVENT_TYPE_OPTIONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EVENT_TYPE_OPTIONS", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_eventtypelabel", "label": "eventTypeLabel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eventTypeLabel()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_defaultperiod", "label": "defaultPeriod()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "defaultPeriod()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokereventspage_parsetypes", "label": "parseTypes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseTypes()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokereventspage_filtersfromsearchparams", "label": "filtersFromSearchParams()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "filtersFromSearchParams()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 3}, {"id": "ui_brokereventspage_filterstosearchparams", "label": "filtersToSearchParams()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filtersToSearchParams()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_sourcelabel", "label": "sourceLabel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceLabel()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventspage_brokereventspage", "label": "BrokerEventsPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsPage()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/pages/broker-events/ui/BrokerEventsPage.tsx", "file_type": "code", "degree": 9}, {"id": "broker_operations_index", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/pages/broker-operations/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokeroperationspage", "label": "BrokerOperationsPage.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerOperationsPage.tsx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/pages/broker-operations/ui/BrokerOperationsPage.tsx", "file_type": "code", "degree": 16}, {"id": "ui_brokeroperationspage_getdefaultsyncrange", "label": "getDefaultSyncRange()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getDefaultSyncRange()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/pages/broker-operations/ui/BrokerOperationsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationspage_brokeroperationspage", "label": "BrokerOperationsPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsPage()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/pages/broker-operations/ui/BrokerOperationsPage.tsx", "file_type": "code", "degree": 9}, {"id": "broker_positions_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/pages/broker-positions/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokerpositionspage", "label": "BrokerPositionsPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsPage.tsx", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/pages/broker-positions/ui/BrokerPositionsPage.tsx", "file_type": "code", "degree": 11}, {"id": "ui_brokerpositionspage_brokerpositionspageprops", "label": "BrokerPositionsPageProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsPageProps", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/pages/broker-positions/ui/BrokerPositionsPage.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerpositionspage_brokerpositionspage", "label": "BrokerPositionsPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsPage()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/pages/broker-positions/ui/BrokerPositionsPage.tsx", "file_type": "code", "degree": 6}, {"id": "home_index", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/pages/home/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_homepage", "label": "HomePage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HomePage.tsx", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/pages/home/ui/HomePage.tsx", "file_type": "code", "degree": 2}, {"id": "ui_homepage_homepage", "label": "HomePage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HomePage()", "community": 24, "community_name": "Community 24", "source_file": "apps/frontend/src/pages/home/ui/HomePage.tsx", "file_type": "code", "degree": 3}, {"id": "login_loginpage_test", "label": "LoginPage.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginPage.test.tsx", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/login/LoginPage.test.tsx", "file_type": "code", "degree": 8}, {"id": "login_loginpage_test_logintestrouter", "label": "loginTestRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loginTestRouter()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/login/LoginPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "login_loginpage_test_renderloginpage", "label": "renderLoginPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderLoginPage()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/login/LoginPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "login_index", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/login/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_loginpage", "label": "LoginPage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginPage.tsx", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/login/ui/LoginPage.tsx", "file_type": "code", "degree": 7}, {"id": "ui_loginpage_loginpage", "label": "LoginPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginPage()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/login/ui/LoginPage.tsx", "file_type": "code", "degree": 6}, {"id": "portfolios_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/pages/portfolios/index.ts", "file_type": "code", "degree": 5}, {"id": "ui_portfoliodetailpage", "label": "PortfolioDetailPage.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "PortfolioDetailPage.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/pages/portfolios/ui/PortfolioDetailPage.tsx", "file_type": "code", "degree": 18}, {"id": "ui_portfoliodetailpage_portfoliodetailpage", "label": "PortfolioDetailPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioDetailPage()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/pages/portfolios/ui/PortfolioDetailPage.tsx", "file_type": "code", "degree": 6}, {"id": "ui_portfolioslistpage", "label": "PortfoliosListPage.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfoliosListPage.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/pages/portfolios/ui/PortfoliosListPage.tsx", "file_type": "code", "degree": 9}, {"id": "ui_portfolioslistpage_portfolioslistpage", "label": "PortfoliosListPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfoliosListPage()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/pages/portfolios/ui/PortfoliosListPage.tsx", "file_type": "code", "degree": 5}, {"id": "profile_profilepage_test", "label": "ProfilePage.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePage.test.tsx", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/pages/profile/ProfilePage.test.tsx", "file_type": "code", "degree": 6}, {"id": "profile_index", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/pages/profile/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_profilepage", "label": "ProfilePage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePage.tsx", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/pages/profile/ui/ProfilePage.tsx", "file_type": "code", "degree": 5}, {"id": "ui_profilepage_profilepage", "label": "ProfilePage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePage()", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/pages/profile/ui/ProfilePage.tsx", "file_type": "code", "degree": 5}, {"id": "register_registerpage_test", "label": "RegisterPage.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterPage.test.tsx", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/register/RegisterPage.test.tsx", "file_type": "code", "degree": 8}, {"id": "register_registerpage_test_registertestrouter", "label": "registerTestRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "registerTestRouter()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/register/RegisterPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "register_registerpage_test_renderregisterpage", "label": "renderRegisterPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderRegisterPage()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/register/RegisterPage.test.tsx", "file_type": "code", "degree": 1}, {"id": "register_index", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/register/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_registerpage", "label": "RegisterPage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterPage.tsx", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/register/ui/RegisterPage.tsx", "file_type": "code", "degree": 7}, {"id": "ui_registerpage_registerpage", "label": "RegisterPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterPage()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/pages/register/ui/RegisterPage.tsx", "file_type": "code", "degree": 6}, {"id": "apps_frontend_src_pages_screener_index_ts_screener_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/pages/screener/index.ts", "file_type": "code", "degree": 2}, {"id": "ui_screenerpage", "label": "ScreenerPage.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerPage.tsx", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/pages/screener/ui/ScreenerPage.tsx", "file_type": "code", "degree": 5}, {"id": "ui_screenerpage_screenerpage", "label": "ScreenerPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerPage()", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/pages/screener/ui/ScreenerPage.tsx", "file_type": "code", "degree": 4}, {"id": "apps_frontend_src_pages_stock_index_ts_stock_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/pages/stock/index.ts", "file_type": "code", "degree": 2}, {"id": "ui_stockpage", "label": "StockPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StockPage.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/pages/stock/ui/StockPage.tsx", "file_type": "code", "degree": 11}, {"id": "ui_stockpage_stockpage", "label": "StockPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "StockPage()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/pages/stock/ui/StockPage.tsx", "file_type": "code", "degree": 6}, {"id": "api_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 103}, {"id": "api_index_apiresponsemeta", "label": "ApiResponseMeta", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiResponseMeta", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 8}, {"id": "api_index_apienvelope", "label": "ApiEnvelope", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiEnvelope", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 1}, {"id": "api_index_authresponse", "label": "AuthResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponse", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_userresponse", "label": "UserResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserResponse", "community": 56, "community_name": "Community 56", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 8}, {"id": "api_index_shareresponse", "label": "ShareResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareResponse", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 6}, {"id": "api_index_stockmarketdata", "label": "StockMarketData", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "StockMarketData", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 3}, {"id": "api_index_dividenditem", "label": "DividendItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendItem", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 6}, {"id": "api_index_sharehistoryitem", "label": "ShareHistoryItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareHistoryItem", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 2}, {"id": "api_index_bondresponse", "label": "BondResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BondResponse", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 6}, {"id": "api_index_bondmarketdata", "label": "BondMarketData", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BondMarketData", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 3}, {"id": "api_index_bondhistoryitem", "label": "BondHistoryItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BondHistoryItem", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 2}, {"id": "api_index_candleitem", "label": "CandleItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "CandleItem", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 6}, {"id": "api_index_searchresultitem", "label": "SearchResultItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultItem", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_screenerresult", "label": "ScreenerResult", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerResult", "community": 17, "community_name": "Community 17", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_screeneritem", "label": "ScreenerItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenerItem", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 1}, {"id": "api_index_portfolio", "label": "Portfolio", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 6}, {"id": "api_index_portfoliodetail", "label": "PortfolioDetail", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioDetail", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 5}, {"id": "api_index_position", "label": "Position", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Position", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 2}, {"id": "api_index_positionwithprice", "label": "PositionWithPrice", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionWithPrice", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 11}, {"id": "api_index_portfoliosummary", "label": "PortfolioSummary", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioSummary", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 2}, {"id": "api_index_analyticsresponse", "label": "AnalyticsResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsResponse", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 3}, {"id": "api_index_healthresponse", "label": "HealthResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthResponse", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 1}, {"id": "api_index_brokeraccount", "label": "BrokerAccount", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccount", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 5}, {"id": "api_index_brokerportfolio", "label": "BrokerPortfolio", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolio", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 14}, {"id": "api_index_brokermoney", "label": "BrokerMoney", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerMoney", "community": 0, "community_name": "Community 0", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 5}, {"id": "api_index_brokerposition", "label": "BrokerPosition", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPosition", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_brokeroperation", "label": "BrokerOperation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperation", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_brokeroperationspage", "label": "BrokerOperationsPage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsPage", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_brokerpositionspage", "label": "BrokerPositionsPage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionsPage", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 4}, {"id": "api_index_brokeroperationcategory", "label": "BrokerOperationCategory", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationCategory", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 1}, {"id": "api_index_brokereventitem", "label": "BrokerEventItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventItem", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 1}, {"id": "api_index_brokereventsdata", "label": "BrokerEventsData", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsData", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 3}, {"id": "api_index_brokereventssummary", "label": "BrokerEventsSummary", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsSummary", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 1}, {"id": "api_index_brokeranalytics", "label": "BrokerAnalytics", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAnalytics", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 3}, {"id": "api_index_brokeroperationsyncresponse", "label": "BrokerOperationSyncResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationSyncResponse", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/api/index.ts", "file_type": "code", "degree": 2}, {"id": "api_kyclient", "label": "kyClient.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "kyClient.ts", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 24}, {"id": "api_kyclient_apiresponsemeta", "label": "ApiResponseMeta", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiResponseMeta", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 1}, {"id": "api_kyclient_apienvelope", "label": "ApiEnvelope", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiEnvelope", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 1}, {"id": "api_kyclient_authconfig", "label": "AuthConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthConfig", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 1}, {"id": "api_kyclient_configurekyauth", "label": "configureKyAuth()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "configureKyAuth()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 3}, {"id": "api_kyclient_kyapi", "label": "kyApi", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "kyApi", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 1}, {"id": "api_kyclient_buildurl", "label": "buildUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildUrl()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 2}, {"id": "api_kyclient_normalizeenvelope", "label": "normalizeEnvelope()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeEnvelope()", "community": 50, "community_name": "Community 50", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 4}, {"id": "api_kyclient_pickmethod", "label": "pickMethod()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pickMethod()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 2}, {"id": "api_kyclient_request", "label": "request()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 22.8, "font": {"size": 12, "color": "#ffffff"}, "title": "request()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 44}, {"id": "api_kyclient_gethealth", "label": "getHealth()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getHealth()", "community": 34, "community_name": "Community 34", "source_file": "apps/frontend/src/shared/api/kyClient.ts", "file_type": "code", "degree": 3}, {"id": "api_types", "label": "types.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "types.ts", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/types.ts", "file_type": "code", "degree": 6}, {"id": "api_types_paths", "label": "paths", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/types.ts", "file_type": "code", "degree": 1}, {"id": "api_types_webhooks", "label": "webhooks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "webhooks", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/types.ts", "file_type": "code", "degree": 1}, {"id": "api_types_components", "label": "components", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "components", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/types.ts", "file_type": "code", "degree": 2}, {"id": "api_types_defs", "label": "$defs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "$defs", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/types.ts", "file_type": "code", "degree": 1}, {"id": "api_types_operations", "label": "operations", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "operations", "community": 6, "community_name": "Community 6", "source_file": "apps/frontend/src/shared/api/types.ts", "file_type": "code", "degree": 1}, {"id": "config_env", "label": "env.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "env.ts", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/shared/config/env.ts", "file_type": "code", "degree": 3}, {"id": "config_env_envschema", "label": "envSchema", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "envSchema", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/shared/config/env.ts", "file_type": "code", "degree": 1}, {"id": "config_env_parsed", "label": "parsed", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parsed", "community": 76, "community_name": "Community 76", "source_file": "apps/frontend/src/shared/config/env.ts", "file_type": "code", "degree": 1}, {"id": "dates_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 97, "community_name": "Community 97", "source_file": "apps/frontend/src/shared/lib/dates/index.ts", "file_type": "code", "degree": 2}, {"id": "dates_index_formatdate", "label": "formatDate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 97, "community_name": "Community 97", "source_file": "apps/frontend/src/shared/lib/dates/index.ts", "file_type": "code", "degree": 1}, {"id": "dates_index_formatrelative", "label": "formatRelative()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatRelative()", "community": 97, "community_name": "Community 97", "source_file": "apps/frontend/src/shared/lib/dates/index.ts", "file_type": "code", "degree": 1}, {"id": "lib_formatters", "label": "formatters.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "formatters.ts", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 20}, {"id": "lib_formatters_formatbrokercurrencyvalue", "label": "formatBrokerCurrencyValue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerCurrencyValue()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 8}, {"id": "lib_formatters_formatbrokermoney", "label": "formatBrokerMoney()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerMoney()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 7}, {"id": "lib_formatters_formatbrokersignedcurrencyvalue", "label": "formatBrokerSignedCurrencyValue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerSignedCurrencyValue()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 6}, {"id": "lib_formatters_formatbrokersignedmoney", "label": "formatBrokerSignedMoney()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerSignedMoney()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 3}, {"id": "lib_formatters_formatbrokerpercent", "label": "formatBrokerPercent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerPercent()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 3}, {"id": "lib_formatters_formatbrokersignedpercent", "label": "formatBrokerSignedPercent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerSignedPercent()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 5}, {"id": "lib_formatters_formatbrokerdate", "label": "formatBrokerDate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBrokerDate()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 5}, {"id": "lib_formatters_pluralize", "label": "pluralize()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "pluralize()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/shared/lib/formatters.ts", "file_type": "code", "degree": 5}, {"id": "router_usesearchparams", "label": "useSearchParams.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "useSearchParams.ts", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/shared/lib/router/useSearchParams.ts", "file_type": "code", "degree": 6}, {"id": "router_usesearchparams_usesearchparamscompat", "label": "useSearchParamsCompat()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useSearchParamsCompat()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/shared/lib/router/useSearchParams.ts", "file_type": "code", "degree": 11}, {"id": "lib_session_context", "label": "session-context.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "session-context.ts", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/shared/lib/session-context.ts", "file_type": "code", "degree": 6}, {"id": "lib_session_context_sessioncontextvalue", "label": "SessionContextValue", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionContextValue", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/shared/lib/session-context.ts", "file_type": "code", "degree": 6}, {"id": "lib_session_context_sessioncontext", "label": "SessionContext", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionContext", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/shared/lib/session-context.ts", "file_type": "code", "degree": 7}, {"id": "styles_clsx", "label": "clsx.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clsx.ts", "community": 103, "community_name": "Community 103", "source_file": "apps/frontend/src/shared/lib/styles/clsx.ts", "file_type": "code", "degree": 1}, {"id": "styles_clsx_cn", "label": "cn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cn()", "community": 103, "community_name": "Community 103", "source_file": "apps/frontend/src/shared/lib/styles/clsx.ts", "file_type": "code", "degree": 1}, {"id": "test_testsessionprovider", "label": "TestSessionProvider.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestSessionProvider.tsx", "community": 81, "community_name": "Community 81", "source_file": "apps/frontend/src/shared/lib/test/TestSessionProvider.tsx", "file_type": "code", "degree": 8}, {"id": "test_testsessionprovider_testsessionprovider", "label": "TestSessionProvider()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TestSessionProvider()", "community": 71, "community_name": "Community 71", "source_file": "apps/frontend/src/shared/lib/test/TestSessionProvider.tsx", "file_type": "code", "degree": 4}, {"id": "test_factories", "label": "factories.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "factories.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 22}, {"id": "test_factories_createmockmarketdata", "label": "createMockMarketData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockMarketData()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 2}, {"id": "test_factories_createmockshare", "label": "createMockShare()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockShare()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 3}, {"id": "test_factories_createmockbondmarketdata", "label": "createMockBondMarketData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockBondMarketData()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 2}, {"id": "test_factories_createmockbond", "label": "createMockBond()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockBond()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 3}, {"id": "test_factories_createmockuser", "label": "createMockUser()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockUser()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 2}, {"id": "test_factories_createmockauth", "label": "createMockAuth()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockAuth()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 2}, {"id": "test_factories_createmockcandles", "label": "createMockCandles()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockCandles()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 1}, {"id": "test_factories_createmockdividends", "label": "createMockDividends()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockDividends()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 2}, {"id": "test_factories_createmocksearchresults", "label": "createMockSearchResults()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createMockSearchResults()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/shared/lib/test/factories.ts", "file_type": "code", "degree": 1}, {"id": "apps_frontend_src_shared_lib_test_setup_ts_test_setup", "label": "setup.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setup.ts", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/shared/lib/test/setup.ts", "file_type": "code", "degree": 2}, {"id": "test_test_utils", "label": "test-utils.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "test-utils.tsx", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/shared/lib/test/test-utils.tsx", "file_type": "code", "degree": 6}, {"id": "test_test_utils_customrenderoptions", "label": "CustomRenderOptions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomRenderOptions", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/shared/lib/test/test-utils.tsx", "file_type": "code", "degree": 1}, {"id": "test_test_utils_createtestqueryclient", "label": "createTestQueryClient()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createTestQueryClient()", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/shared/lib/test/test-utils.tsx", "file_type": "code", "degree": 1}, {"id": "test_test_utils_renderwithproviders", "label": "renderWithProviders()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithProviders()", "community": 91, "community_name": "Community 91", "source_file": "apps/frontend/src/shared/lib/test/test-utils.tsx", "file_type": "code", "degree": 2}, {"id": "lib_usecursorpagination", "label": "useCursorPagination.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useCursorPagination.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/lib/useCursorPagination.ts", "file_type": "code", "degree": 3}, {"id": "lib_usecursorpagination_usecursorpagination", "label": "useCursorPagination()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useCursorPagination()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/lib/useCursorPagination.ts", "file_type": "code", "degree": 5}, {"id": "table_table", "label": "Table.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Table.tsx", "community": 96, "community_name": "Community 96", "source_file": "apps/frontend/src/shared/ui/Table/Table.tsx", "file_type": "code", "degree": 3}, {"id": "table_table_tableprops", "label": "TableProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TableProps", "community": 96, "community_name": "Community 96", "source_file": "apps/frontend/src/shared/ui/Table/Table.tsx", "file_type": "code", "degree": 1}, {"id": "table_table_table", "label": "Table()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Table()", "community": 96, "community_name": "Community 96", "source_file": "apps/frontend/src/shared/ui/Table/Table.tsx", "file_type": "code", "degree": 2}, {"id": "table_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 96, "community_name": "Community 96", "source_file": "apps/frontend/src/shared/ui/Table/index.ts", "file_type": "code", "degree": 2}, {"id": "ui_tableskeleton", "label": "TableSkeleton.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TableSkeleton.tsx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/ui/TableSkeleton.tsx", "file_type": "code", "degree": 4}, {"id": "ui_tableskeleton_column", "label": "Column", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Column", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/ui/TableSkeleton.tsx", "file_type": "code", "degree": 1}, {"id": "ui_tableskeleton_tableskeleton", "label": "TableSkeleton()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TableSkeleton()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/ui/TableSkeleton.tsx", "file_type": "code", "degree": 3}, {"id": "broker_allocation_bar_brokerallocationbar", "label": "BrokerAllocationBar.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAllocationBar.tsx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/ui/broker-allocation-bar/BrokerAllocationBar.tsx", "file_type": "code", "degree": 3}, {"id": "broker_allocation_bar_brokerallocationbar_allocationbaritem", "label": "AllocationBarItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllocationBarItem", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/ui/broker-allocation-bar/BrokerAllocationBar.tsx", "file_type": "code", "degree": 1}, {"id": "broker_allocation_bar_brokerallocationbar_brokerallocationbar", "label": "BrokerAllocationBar()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAllocationBar()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/ui/broker-allocation-bar/BrokerAllocationBar.tsx", "file_type": "code", "degree": 4}, {"id": "broker_allocation_bar_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/shared/ui/broker-allocation-bar/index.ts", "file_type": "code", "degree": 4}, {"id": "apps_frontend_src_shared_ui_index_ts_ui_index", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/shared/ui/index.ts", "file_type": "code", "degree": 2}, {"id": "src_vite_env_d", "label": "vite-env.d.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite-env.d.ts", "community": 112, "community_name": "Community 112", "source_file": "apps/frontend/src/vite-env.d.ts", "file_type": "code", "degree": 0}, {"id": "bond_details_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/widgets/bond-details/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_bonddetails_test", "label": "BondDetails.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BondDetails.test.tsx", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/widgets/bond-details/ui/BondDetails.test.tsx", "file_type": "code", "degree": 4}, {"id": "ui_bonddetails", "label": "BondDetails.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BondDetails.tsx", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/widgets/bond-details/ui/BondDetails.tsx", "file_type": "code", "degree": 7}, {"id": "ui_bonddetails_bonddetailsprops", "label": "BondDetailsProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BondDetailsProps", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/widgets/bond-details/ui/BondDetails.tsx", "file_type": "code", "degree": 2}, {"id": "ui_bonddetails_rowstyle", "label": "rowStyle", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rowStyle", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/widgets/bond-details/ui/BondDetails.tsx", "file_type": "code", "degree": 1}, {"id": "ui_bonddetails_bonddetails", "label": "BondDetails()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BondDetails()", "community": 38, "community_name": "Community 38", "source_file": "apps/frontend/src/widgets/bond-details/ui/BondDetails.tsx", "file_type": "code", "degree": 4}, {"id": "bond_positions_table_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_bondpositionrow", "label": "BondPositionRow.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BondPositionRow.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/ui/BondPositionRow.tsx", "file_type": "code", "degree": 5}, {"id": "ui_bondpositionrow_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/ui/BondPositionRow.tsx", "file_type": "code", "degree": 2}, {"id": "ui_bondpositionrow_bondpositionrow", "label": "BondPositionRow()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BondPositionRow()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/ui/BondPositionRow.tsx", "file_type": "code", "degree": 2}, {"id": "ui_bondpositiontable", "label": "BondPositionTable.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BondPositionTable.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/ui/BondPositionTable.tsx", "file_type": "code", "degree": 7}, {"id": "ui_bondpositiontable_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/ui/BondPositionTable.tsx", "file_type": "code", "degree": 2}, {"id": "ui_bondpositiontable_bondpositiontable", "label": "BondPositionTable()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BondPositionTable()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/bond-positions-table/ui/BondPositionTable.tsx", "file_type": "code", "degree": 3}, {"id": "broker_account_card_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokeraccountcard", "label": "BrokerAccountCard.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerAccountCard.tsx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 20}, {"id": "ui_brokeraccountcard_brokeraccounttypelabel", "label": "brokerAccountTypeLabel()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "brokerAccountTypeLabel()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 4}, {"id": "ui_brokeraccountcard_cardsx", "label": "cardSx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cardSx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeraccountcard_statsx", "label": "statSx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "statSx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeraccountcard_brokeraccountcardskeleton", "label": "BrokerAccountCardSkeleton()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountCardSkeleton()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeraccountcard_brokeraccountcarderror", "label": "BrokerAccountCardError()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountCardError()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokeraccountcard_brokeraccountcardsuccess", "label": "BrokerAccountCardSuccess()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountCardSuccess()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 7}, {"id": "ui_brokeraccountcard_brokeraccountcard", "label": "BrokerAccountCard()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountCard()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-account-card/ui/BrokerAccountCard.tsx", "file_type": "code", "degree": 4}, {"id": "broker_account_layout_index", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/index.ts", "file_type": "code", "degree": 11}, {"id": "lib_usebrokeraccountcontext", "label": "useBrokerAccountContext.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAccountContext.ts", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/lib/useBrokerAccountContext.ts", "file_type": "code", "degree": 4}, {"id": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "useBrokerAccountContext()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "useBrokerAccountContext()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/lib/useBrokerAccountContext.ts", "file_type": "code", "degree": 12}, {"id": "ui_brokeraccountlayout", "label": "BrokerAccountLayout.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountLayout.tsx", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/ui/BrokerAccountLayout.tsx", "file_type": "code", "degree": 10}, {"id": "ui_brokeraccountlayout_baselinkstyle", "label": "baseLinkStyle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "baseLinkStyle", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/ui/BrokerAccountLayout.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeraccountlayout_links", "label": "links", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "links", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/ui/BrokerAccountLayout.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeraccountlayout_brokeraccountcontextvalue", "label": "BrokerAccountContextValue", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountContextValue", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/ui/BrokerAccountLayout.tsx", "file_type": "code", "degree": 3}, {"id": "ui_brokeraccountlayout_brokeraccountcontext", "label": "BrokerAccountContext", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountContext", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/ui/BrokerAccountLayout.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokeraccountlayout_brokeraccountlayout", "label": "BrokerAccountLayout()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountLayout()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-account-layout/ui/BrokerAccountLayout.tsx", "file_type": "code", "degree": 4}, {"id": "broker_accounts_summary_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-accounts-summary/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokeraccountssummary", "label": "BrokerAccountsSummary.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsSummary.tsx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-accounts-summary/ui/BrokerAccountsSummary.tsx", "file_type": "code", "degree": 11}, {"id": "ui_brokeraccountssummary_brokeraccountssummary", "label": "BrokerAccountsSummary()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAccountsSummary()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-accounts-summary/ui/BrokerAccountsSummary.tsx", "file_type": "code", "degree": 3}, {"id": "broker_allocation_chart_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-allocation-chart/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokerallocationchart", "label": "BrokerAllocationChart.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAllocationChart.tsx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-allocation-chart/ui/BrokerAllocationChart.tsx", "file_type": "code", "degree": 9}, {"id": "ui_brokerallocationchart_allocationcurrency", "label": "allocationCurrency()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "allocationCurrency()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-allocation-chart/ui/BrokerAllocationChart.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokerallocationchart_brokerallocationchart", "label": "BrokerAllocationChart()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAllocationChart()", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-allocation-chart/ui/BrokerAllocationChart.tsx", "file_type": "code", "degree": 5}, {"id": "broker_events_overview_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokereventsoverview_test", "label": "BrokerEventsOverview.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsOverview.test.tsx", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.test.tsx", "file_type": "code", "degree": 7}, {"id": "ui_brokereventsoverview_test_mocknavigate", "label": "mockNavigate", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockNavigate", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventsoverview_test_createwrapper", "label": "createWrapper()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createWrapper()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventsoverview_test_mockitems", "label": "mockItems", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockItems", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventsoverview", "label": "BrokerEventsOverview.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsOverview.tsx", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.tsx", "file_type": "code", "degree": 10}, {"id": "ui_brokereventsoverview_formatdate", "label": "formatDate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventsoverview_eventtypelabel", "label": "eventTypeLabel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eventTypeLabel()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokereventsoverview_defaultperiod", "label": "defaultPeriod()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "defaultPeriod()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokereventsoverview_brokereventsoverview", "label": "BrokerEventsOverview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsOverview()", "community": 30, "community_name": "Community 30", "source_file": "apps/frontend/src/widgets/broker-events-overview/ui/BrokerEventsOverview.tsx", "file_type": "code", "degree": 6}, {"id": "broker_operations_table_index", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/index.ts", "file_type": "code", "degree": 4}, {"id": "ui_brokeroperationstable", "label": "BrokerOperationsTable.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "BrokerOperationsTable.tsx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 23}, {"id": "ui_brokeroperationstable_tablesx", "label": "tableSx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tableSx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationstable_thsx", "label": "thSx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "thSx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationstable_tdsx", "label": "tdSx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tdSx", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationstable_tdsxright", "label": "tdSxRight", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tdSxRight", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationstable_formatdate", "label": "formatDate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationstable_operationtone", "label": "operationTone()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "operationTone()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokeroperationstable_operationinstrument", "label": "OperationInstrument()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "OperationInstrument()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokeroperationstable_brokeroperationstable", "label": "BrokerOperationsTable()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsTable()", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 4}, {"id": "ui_brokeroperationstable_brokeroperationstableprops", "label": "BrokerOperationsTableProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOperationsTableProps", "community": 55, "community_name": "Community 55", "source_file": "apps/frontend/src/widgets/broker-operations-table/ui/BrokerOperationsTable.tsx", "file_type": "code", "degree": 1}, {"id": "broker_overview_index", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/index.ts", "file_type": "code", "degree": 7}, {"id": "ui_brokerassetcards", "label": "BrokerAssetCards.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAssetCards.tsx", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerAssetCards.tsx", "file_type": "code", "degree": 11}, {"id": "ui_brokerassetcards_allocationpercent", "label": "allocationPercent()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allocationPercent()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerAssetCards.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerassetcards_formatallocationpercent", "label": "formatAllocationPercent()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatAllocationPercent()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerAssetCards.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerassetcards_cardsx", "label": "cardSx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cardSx", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerAssetCards.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerassetcards_brokerassetcards", "label": "BrokerAssetCards()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerAssetCards()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerAssetCards.tsx", "file_type": "code", "degree": 4}, {"id": "ui_brokeroverviewskeleton", "label": "BrokerOverviewSkeleton.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOverviewSkeleton.tsx", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerOverviewSkeleton.tsx", "file_type": "code", "degree": 2}, {"id": "ui_brokeroverviewskeleton_brokeroverviewskeleton", "label": "BrokerOverviewSkeleton()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerOverviewSkeleton()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerOverviewSkeleton.tsx", "file_type": "code", "degree": 3}, {"id": "ui_brokersummary", "label": "BrokerSummary.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerSummary.tsx", "community": 66, "community_name": "Community 66", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerSummary.tsx", "file_type": "code", "degree": 7}, {"id": "ui_brokersummary_brokersummary", "label": "BrokerSummary()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerSummary()", "community": 39, "community_name": "Community 39", "source_file": "apps/frontend/src/widgets/broker-overview/ui/BrokerSummary.tsx", "file_type": "code", "degree": 4}, {"id": "broker_positions_table_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_brokerpositiontable", "label": "BrokerPositionTable.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionTable.tsx", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 13}, {"id": "ui_brokerpositiontable_tablesx", "label": "tableSx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tableSx", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerpositiontable_thsx", "label": "thSx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "thSx", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerpositiontable_tdsx", "label": "tdSx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tdSx", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerpositiontable_tdsxleft", "label": "tdSxLeft", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tdSxLeft", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerpositiontable_formatquantity", "label": "formatQuantity()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatQuantity()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 1}, {"id": "ui_brokerpositiontable_brokerpositiontable", "label": "BrokerPositionTable()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPositionTable()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/BrokerPositionTable.tsx", "file_type": "code", "degree": 3}, {"id": "ui_positionticker", "label": "PositionTicker.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionTicker.tsx", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/PositionTicker.tsx", "file_type": "code", "degree": 6}, {"id": "ui_positionticker_positionticker", "label": "PositionTicker()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PositionTicker()", "community": 48, "community_name": "Community 48", "source_file": "apps/frontend/src/widgets/broker-positions-table/ui/PositionTicker.tsx", "file_type": "code", "degree": 3}, {"id": "dividends_table_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/dividends-table/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_dividendstable_test", "label": "DividendsTable.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendsTable.test.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/dividends-table/ui/DividendsTable.test.tsx", "file_type": "code", "degree": 4}, {"id": "ui_dividendstable", "label": "DividendsTable.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendsTable.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/dividends-table/ui/DividendsTable.tsx", "file_type": "code", "degree": 6}, {"id": "ui_dividendstable_dividendstableprops", "label": "DividendsTableProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendsTableProps", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/dividends-table/ui/DividendsTable.tsx", "file_type": "code", "degree": 2}, {"id": "ui_dividendstable_dividendstable", "label": "DividendsTable()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendsTable()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/dividends-table/ui/DividendsTable.tsx", "file_type": "code", "degree": 4}, {"id": "portfolio_analytics_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-analytics/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_analyticssummary", "label": "AnalyticsSummary.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsSummary.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-analytics/ui/AnalyticsSummary.tsx", "file_type": "code", "degree": 4}, {"id": "ui_analyticssummary_analyticssummary", "label": "AnalyticsSummary()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsSummary()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-analytics/ui/AnalyticsSummary.tsx", "file_type": "code", "degree": 3}, {"id": "portfolio_card_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-card/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_portfoliocard", "label": "PortfolioCard.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioCard.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-card/ui/PortfolioCard.tsx", "file_type": "code", "degree": 6}, {"id": "ui_portfoliocard_portfoliocard", "label": "PortfolioCard()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioCard()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-card/ui/PortfolioCard.tsx", "file_type": "code", "degree": 4}, {"id": "portfolio_form_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-form/index.ts", "file_type": "code", "degree": 4}, {"id": "ui_portfolioform", "label": "PortfolioForm.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioForm.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-form/ui/PortfolioForm.tsx", "file_type": "code", "degree": 6}, {"id": "ui_portfolioform_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-form/ui/PortfolioForm.tsx", "file_type": "code", "degree": 2}, {"id": "ui_portfolioform_currencies", "label": "CURRENCIES", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CURRENCIES", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-form/ui/PortfolioForm.tsx", "file_type": "code", "degree": 1}, {"id": "ui_portfolioform_portfolioform", "label": "PortfolioForm()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioForm()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-form/ui/PortfolioForm.tsx", "file_type": "code", "degree": 4}, {"id": "portfolio_summary_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_allocationchart", "label": "AllocationChart.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AllocationChart.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 9}, {"id": "ui_allocationchart_allocationchartprops", "label": "AllocationChartProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AllocationChartProps", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 2}, {"id": "ui_allocationchart_sectordata", "label": "SectorData", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SectorData", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 1}, {"id": "ui_allocationchart_sector_colors", "label": "SECTOR_COLORS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SECTOR_COLORS", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 1}, {"id": "ui_allocationchart_sector_labels", "label": "SECTOR_LABELS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SECTOR_LABELS", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 1}, {"id": "ui_allocationchart_computesectors", "label": "computeSectors()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "computeSectors()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 2}, {"id": "ui_allocationchart_allocationchart", "label": "AllocationChart()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AllocationChart()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/AllocationChart.tsx", "file_type": "code", "degree": 3}, {"id": "ui_portfoliosummary", "label": "PortfolioSummary.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioSummary.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/PortfolioSummary.tsx", "file_type": "code", "degree": 6}, {"id": "ui_portfoliosummary_portfoliosummary", "label": "PortfolioSummary()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioSummary()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/portfolio-summary/ui/PortfolioSummary.tsx", "file_type": "code", "degree": 3}, {"id": "price_chart_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/price-chart/index.ts", "file_type": "code", "degree": 4}, {"id": "ui_pricechart_test", "label": "PriceChart.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChart.test.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/price-chart/ui/PriceChart.test.tsx", "file_type": "code", "degree": 2}, {"id": "ui_pricechart", "label": "PriceChart.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChart.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/price-chart/ui/PriceChart.tsx", "file_type": "code", "degree": 4}, {"id": "ui_pricechart_pricechartprops", "label": "PriceChartProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChartProps", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/price-chart/ui/PriceChart.tsx", "file_type": "code", "degree": 1}, {"id": "ui_pricechart_pricechart", "label": "PriceChart()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChart()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/price-chart/ui/PriceChart.tsx", "file_type": "code", "degree": 5}, {"id": "search_bar_index", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/widgets/search-bar/index.ts", "file_type": "code", "degree": 4}, {"id": "ui_searchbar_test", "label": "SearchBar.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar.test.tsx", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/widgets/search-bar/ui/SearchBar.test.tsx", "file_type": "code", "degree": 5}, {"id": "ui_searchbar_test_rendersearchbar", "label": "renderSearchBar()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderSearchBar()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/widgets/search-bar/ui/SearchBar.test.tsx", "file_type": "code", "degree": 1}, {"id": "ui_searchbar", "label": "SearchBar.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar.tsx", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/widgets/search-bar/ui/SearchBar.tsx", "file_type": "code", "degree": 4}, {"id": "ui_searchbar_searchbar", "label": "SearchBar()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar()", "community": 31, "community_name": "Community 31", "source_file": "apps/frontend/src/widgets/search-bar/ui/SearchBar.tsx", "file_type": "code", "degree": 5}, {"id": "share_positions_table_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_sharepositionrow", "label": "SharePositionRow.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SharePositionRow.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/ui/SharePositionRow.tsx", "file_type": "code", "degree": 5}, {"id": "ui_sharepositionrow_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/ui/SharePositionRow.tsx", "file_type": "code", "degree": 2}, {"id": "ui_sharepositionrow_sharepositionrow", "label": "SharePositionRow()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SharePositionRow()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/ui/SharePositionRow.tsx", "file_type": "code", "degree": 2}, {"id": "ui_sharepositiontable", "label": "SharePositionTable.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SharePositionTable.tsx", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/ui/SharePositionTable.tsx", "file_type": "code", "degree": 7}, {"id": "ui_sharepositiontable_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/ui/SharePositionTable.tsx", "file_type": "code", "degree": 2}, {"id": "ui_sharepositiontable_sharepositiontable", "label": "SharePositionTable()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SharePositionTable()", "community": 13, "community_name": "Community 13", "source_file": "apps/frontend/src/widgets/share-positions-table/ui/SharePositionTable.tsx", "file_type": "code", "degree": 3}, {"id": "stock_details_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/stock-details/index.ts", "file_type": "code", "degree": 3}, {"id": "ui_stockdetails_test", "label": "StockDetails.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StockDetails.test.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/stock-details/ui/StockDetails.test.tsx", "file_type": "code", "degree": 4}, {"id": "ui_stockdetails", "label": "StockDetails.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "StockDetails.tsx", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/stock-details/ui/StockDetails.tsx", "file_type": "code", "degree": 7}, {"id": "ui_stockdetails_stockdetailsprops", "label": "StockDetailsProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "StockDetailsProps", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/stock-details/ui/StockDetails.tsx", "file_type": "code", "degree": 2}, {"id": "ui_stockdetails_rowstyle", "label": "rowStyle", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rowStyle", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/stock-details/ui/StockDetails.tsx", "file_type": "code", "degree": 1}, {"id": "ui_stockdetails_stockdetails", "label": "StockDetails()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StockDetails()", "community": 8, "community_name": "Community 8", "source_file": "apps/frontend/src/widgets/stock-details/ui/StockDetails.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_tsconfig", "label": "tsconfig.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.json", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 4}, {"id": "frontend_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 18}, {"id": "frontend_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_usedefineforclassfields", "label": "useDefineForClassFields", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useDefineForClassFields", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_allowimportingtsextensions", "label": "allowImportingTsExtensions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowImportingTsExtensions", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_moduledetection", "label": "moduleDetection", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_noemit", "label": "noEmit", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_jsx", "label": "jsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_types", "label": "types", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_nounusedlocals", "label": "noUnusedLocals", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_nounusedparameters", "label": "noUnusedParameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_compileroptions_paths", "label": "paths", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 3}, {"id": "frontend_tsconfig_paths", "label": "@/*", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@/*", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_paths_mocks", "label": "@mocks/*", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mocks/*", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_include", "label": "include", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_exclude", "label": "exclude", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_references", "label": "references", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "references", "community": 26, "community_name": "Community 26", "source_file": "apps/frontend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node", "label": "tsconfig.node.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.node.json", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_tsconfig_node_compileroptions", "label": "compilerOptions", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 11}, {"id": "frontend_tsconfig_node_compileroptions_target", "label": "target", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_lib", "label": "lib", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_module", "label": "module", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_moduledetection", "label": "moduleDetection", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_strict", "label": "strict", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_composite", "label": "composite", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "composite", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_compileroptions_outdir", "label": "outDir", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "outDir", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_tsconfig_node_include", "label": "include", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 63, "community_name": "Community 63", "source_file": "apps/frontend/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_vite_config", "label": "vite.config.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 109, "community_name": "Community 109", "source_file": "apps/frontend/vite.config.ts", "file_type": "code", "degree": 0}, {"id": "frontend_vitest_config", "label": "vitest.config.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 110, "community_name": "Community 110", "source_file": "apps/frontend/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "biome", "label": "biome.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "biome.json", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 8}, {"id": "biome_schema", "label": "$schema", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "$schema", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_root", "label": "root", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "root", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_vcs", "label": "vcs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "vcs", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 4}, {"id": "biome_vcs_enabled", "label": "enabled", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "enabled", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_vcs_clientkind", "label": "clientKind", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clientKind", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_vcs_useignorefile", "label": "useIgnoreFile", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useIgnoreFile", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_files", "label": "files", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "files", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_files_ignoreunknown", "label": "ignoreUnknown", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ignoreUnknown", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter", "label": "formatter", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatter", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 7}, {"id": "biome_formatter_enabled", "label": "enabled", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "enabled", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_formatwitherrors", "label": "formatWithErrors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatWithErrors", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_indentstyle", "label": "indentStyle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "indentStyle", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_indentwidth", "label": "indentWidth", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "indentWidth", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_lineending", "label": "lineEnding", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lineEnding", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_linewidth", "label": "lineWidth", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lineWidth", "community": 89, "community_name": "Community 89", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_assist", "label": "assist", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "assist", "community": 95, "community_name": "Community 95", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_assist_actions", "label": "actions", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "actions", "community": 95, "community_name": "Community 95", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_actions_source", "label": "source", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "source", "community": 95, "community_name": "Community 95", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_source_organizeimports", "label": "organizeImports", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "organizeImports", "community": 95, "community_name": "Community 95", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_linter", "label": "linter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "linter", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 3}, {"id": "biome_linter_enabled", "label": "enabled", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "enabled", "community": 73, "community_name": "Community 73", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_linter_rules", "label": "rules", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rules", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 8}, {"id": "biome_rules_preset", "label": "preset", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "preset", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_rules_complexity", "label": "complexity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "complexity", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 3}, {"id": "biome_complexity_nobannedtypes", "label": "noBannedTypes", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noBannedTypes", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_complexity_nouselesstypeconstraint", "label": "noUselessTypeConstraint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUselessTypeConstraint", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_rules_correctness", "label": "correctness", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "correctness", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 7}, {"id": "biome_correctness_nochildrenprop", "label": "noChildrenProp", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noChildrenProp", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_correctness_noprecisionloss", "label": "noPrecisionLoss", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noPrecisionLoss", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_correctness_nounusedvariables", "label": "noUnusedVariables", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedVariables", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_correctness_useexhaustivedependencies", "label": "useExhaustiveDependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useExhaustiveDependencies", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_correctness_usehookattoplevel", "label": "useHookAtTopLevel", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useHookAtTopLevel", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_correctness_usejsxkeyiniterable", "label": "useJsxKeyInIterable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useJsxKeyInIterable", "community": 88, "community_name": "Community 88", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_rules_security", "label": "security", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "security", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_security_nodangerouslysetinnerhtmlwithchildren", "label": "noDangerouslySetInnerHtmlWithChildren", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noDangerouslySetInnerHtmlWithChildren", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_rules_style", "label": "style", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "style", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 6}, {"id": "biome_style_nonamespace", "label": "noNamespace", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noNamespace", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_style_nononnullassertion", "label": "noNonNullAssertion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noNonNullAssertion", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_style_norestrictedimports", "label": "noRestrictedImports", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "noRestrictedImports", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 3}, {"id": "biome_norestrictedimports_level", "label": "level", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "level", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_norestrictedimports_options", "label": "options", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "options", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_options_paths", "label": "paths", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_paths_mui_material", "label": "@mui/material", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/material", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_style_usearrayliterals", "label": "useArrayLiterals", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useArrayLiterals", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_style_useasconstassertion", "label": "useAsConstAssertion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useAsConstAssertion", "community": 77, "community_name": "Community 77", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_rules_suspicious", "label": "suspicious", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "suspicious", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 10}, {"id": "biome_suspicious_nocommenttext", "label": "noCommentText", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noCommentText", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_noduplicateenumvalues", "label": "noDuplicateEnumValues", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noDuplicateEnumValues", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_noduplicatejsxprops", "label": "noDuplicateJsxProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noDuplicateJsxProps", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_noexplicitany", "label": "noExplicitAny", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noExplicitAny", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_noextranonnullassertion", "label": "noExtraNonNullAssertion", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noExtraNonNullAssertion", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_nomisleadinginstantiator", "label": "noMisleadingInstantiator", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noMisleadingInstantiator", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_nononnullassertedoptionalchain", "label": "noNonNullAssertedOptionalChain", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noNonNullAssertedOptionalChain", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_noarrayindexkey", "label": "noArrayIndexKey", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noArrayIndexKey", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_suspicious_nounsafedeclarationmerging", "label": "noUnsafeDeclarationMerging", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnsafeDeclarationMerging", "community": 78, "community_name": "Community 78", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_rules_a11y", "label": "a11y", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "a11y", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 7}, {"id": "biome_a11y_usebuttontype", "label": "useButtonType", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useButtonType", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_a11y_nolabelwithoutcontrol", "label": "noLabelWithoutControl", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noLabelWithoutControl", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_a11y_nostaticelementinteractions", "label": "noStaticElementInteractions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noStaticElementInteractions", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_a11y_usekeywithclickevents", "label": "useKeyWithClickEvents", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useKeyWithClickEvents", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_a11y_noautofocus", "label": "noAutofocus", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noAutofocus", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_a11y_nosvgwithouttitle", "label": "noSvgWithoutTitle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noSvgWithoutTitle", "community": 59, "community_name": "Community 59", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_javascript", "label": "javascript", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "javascript", "community": 93, "community_name": "Community 93", "source_file": "biome.json", "file_type": "code", "degree": 2}, {"id": "biome_javascript_formatter", "label": "formatter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "formatter", "community": 93, "community_name": "Community 93", "source_file": "biome.json", "file_type": "code", "degree": 4}, {"id": "biome_formatter_quotestyle", "label": "quoteStyle", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "quoteStyle", "community": 93, "community_name": "Community 93", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_trailingcommas", "label": "trailingCommas", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "trailingCommas", "community": 93, "community_name": "Community 93", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "biome_formatter_semicolons", "label": "semicolons", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "semicolons", "community": 93, "community_name": "Community 93", "source_file": "biome.json", "file_type": "code", "degree": 1}, {"id": "package", "label": "package.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 7}, {"id": "package_name", "label": "name", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_private", "label": "private", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_workspaces", "label": "workspaces", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "workspaces", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts", "label": "scripts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 19}, {"id": "package_scripts_dev_backend", "label": "dev:backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:backend", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_frontend", "label": "dev:frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:frontend", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_backend", "label": "build:backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:backend", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_frontend", "label": "build:frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:frontend", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_backend", "label": "test:backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:backend", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_frontend", "label": "test:frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:frontend", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_lint", "label": "lint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_format", "label": "format", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "format", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_format_check", "label": "format:check", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "format:check", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_docs", "label": "dev:docs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:docs", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_docs", "label": "build:docs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:docs", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_design_system", "label": "build:design-system", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:design-system", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_design_system", "label": "test:design-system", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:design-system", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_lint_design_system", "label": "lint:design-system", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint:design-system", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_storybook", "label": "storybook", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "storybook", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_storybook", "label": "build:storybook", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:storybook", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_storybook", "label": "test:storybook", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:storybook", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_prepare", "label": "prepare", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prepare", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_lint_staged", "label": "lint-staged", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lint-staged", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 5}, {"id": "package_lint_staged_apps_backend_src_ts_tsx", "label": "apps/backend/src/**/*.{ts,tsx}", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "apps/backend/src/**/*.{ts,tsx}", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_lint_staged_apps_backend_test_ts_tsx", "label": "apps/backend/test/**/*.{ts,tsx}", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "apps/backend/test/**/*.{ts,tsx}", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_lint_staged_apps_frontend_src_ts_tsx", "label": "apps/frontend/src/**/*.{ts,tsx}", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "apps/frontend/src/**/*.{ts,tsx}", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_lint_staged_packages_design_system_src_ts_tsx", "label": "packages/design-system/src/**/*.{ts,tsx}", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "packages/design-system/src/**/*.{ts,tsx}", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies", "label": "devDependencies", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 3}, {"id": "package_devdependencies_husky", "label": "husky", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "husky", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_devdependencies_lint_staged", "label": "lint-staged", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint-staged", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_overrides", "label": "overrides", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "overrides", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_overrides_storybook_test", "label": "@storybook/test", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@storybook/test", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_storybook_test_storybook", "label": "storybook", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "storybook", "community": 10, "community_name": "Community 10", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "storybook_main", "label": "main.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main.ts", "community": 102, "community_name": "Community 102", "source_file": "packages/design-system/.storybook/main.ts", "file_type": "code", "degree": 1}, {"id": "storybook_main_config", "label": "config", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 102, "community_name": "Community 102", "source_file": "packages/design-system/.storybook/main.ts", "file_type": "code", "degree": 1}, {"id": "storybook_preview", "label": "preview.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "preview.tsx", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/.storybook/preview.tsx", "file_type": "code", "degree": 4}, {"id": "storybook_preview_preview", "label": "preview", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "preview", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/.storybook/preview.tsx", "file_type": "code", "degree": 1}, {"id": "storybook_vitest_setup", "label": "vitest.setup.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.setup.ts", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/.storybook/vitest.setup.ts", "file_type": "code", "degree": 1}, {"id": "design_system_package", "label": "package.json", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 9}, {"id": "design_system_package_name", "label": "name", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_version", "label": "version", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_private", "label": "private", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_type", "label": "type", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_files", "label": "files", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "files", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_exports", "label": "exports", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "exports", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 3}, {"id": "design_system_package_exports_tokens", "label": "./tokens", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "./tokens", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_exports_theme", "label": "./theme", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "./theme", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_scripts", "label": "scripts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 7}, {"id": "design_system_package_scripts_build", "label": "build", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_scripts_test", "label": "test", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_scripts_storybook", "label": "storybook", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "storybook", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_scripts_build_storybook", "label": "build-storybook", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build-storybook", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_scripts_test_storybook", "label": "test:storybook", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:storybook", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_scripts_lint", "label": "lint", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies", "label": "peerDependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "peerDependencies", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 8}, {"id": "design_system_package_peerdependencies_emotion_react", "label": "@emotion/react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/react", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies_emotion_styled", "label": "@emotion/styled", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/styled", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies_mui_icons_material", "label": "@mui/icons-material", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/icons-material", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies_mui_material", "label": "@mui/material", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/material", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies_tanstack_react_table", "label": "@tanstack/react-table", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-table", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies_react", "label": "react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_peerdependencies_react_dom", "label": "react-dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies", "label": "devDependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 22}, {"id": "design_system_package_devdependencies_storybook_addon_a11y", "label": "@storybook/addon-a11y", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@storybook/addon-a11y", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_storybook_addon_vitest", "label": "@storybook/addon-vitest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@storybook/addon-vitest", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_storybook_react_vite", "label": "@storybook/react-vite", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@storybook/react-vite", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_storybook_test", "label": "@storybook/test", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@storybook/test", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_testing_library_dom", "label": "@testing-library/dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/dom", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_testing_library_react", "label": "@testing-library/react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_testing_library_user_event", "label": "@testing-library/user-event", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/user-event", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_typescript_eslint_eslint_plugin", "label": "@typescript-eslint/eslint-plugin", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@typescript-eslint/eslint-plugin", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_typescript_eslint_parser", "label": "@typescript-eslint/parser", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@typescript-eslint/parser", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_vitest_browser", "label": "@vitest/browser", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitest/browser", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_vitest_browser_playwright", "label": "@vitest/browser-playwright", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitest/browser-playwright", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_eslint_plugin_react", "label": "eslint-plugin-react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_eslint_plugin_react_hooks", "label": "eslint-plugin-react-hooks", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-hooks", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_playwright", "label": "playwright", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_storybook", "label": "storybook", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "storybook", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "design_system_package_devdependencies_vitest", "label": "vitest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 4, "community_name": "Community 4", "source_file": "packages/design-system/package.json", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories", "label": "Alert.stories.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Alert.stories.tsx", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 12}, {"id": "alert_alert_stories_meta", "label": "meta", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_story", "label": "Story", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_info", "label": "Info", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Info", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_success", "label": "Success", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Success", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_warning", "label": "Warning", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Warning", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_error", "label": "Error", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Error", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_withaction", "label": "WithAction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithAction", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_stories_withouttitle", "label": "WithoutTitle", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithoutTitle", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.stories.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_test", "label": "Alert.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Alert.test.tsx", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/Alert/Alert.test.tsx", "file_type": "code", "degree": 5}, {"id": "alert_alert_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/Alert/Alert.test.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert", "label": "Alert.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Alert.tsx", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.tsx", "file_type": "code", "degree": 6}, {"id": "alert_alert_severity", "label": "Severity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.tsx", "file_type": "code", "degree": 1}, {"id": "alert_alert_alertprops", "label": "AlertProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertProps", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.tsx", "file_type": "code", "degree": 2}, {"id": "alert_alert_alert", "label": "Alert()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Alert()", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/Alert.tsx", "file_type": "code", "degree": 4}, {"id": "alert_index", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 41, "community_name": "Community 41", "source_file": "packages/design-system/src/components/Alert/index.ts", "file_type": "code", "degree": 4}, {"id": "badge_badge_stories", "label": "Badge.stories.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge.stories.tsx", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.stories.tsx", "file_type": "code", "degree": 7}, {"id": "badge_badge_stories_meta", "label": "meta", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.stories.tsx", "file_type": "code", "degree": 1}, {"id": "badge_badge_stories_story", "label": "Story", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.stories.tsx", "file_type": "code", "degree": 1}, {"id": "badge_badge_stories_default", "label": "Default", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.stories.tsx", "file_type": "code", "degree": 1}, {"id": "badge_badge_stories_overflow", "label": "Overflow", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Overflow", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.stories.tsx", "file_type": "code", "degree": 1}, {"id": "badge_badge_stories_zero", "label": "Zero", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Zero", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.stories.tsx", "file_type": "code", "degree": 1}, {"id": "badge_badge_test", "label": "Badge.test.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge.test.tsx", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.test.tsx", "file_type": "code", "degree": 5}, {"id": "badge_badge_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.test.tsx", "file_type": "code", "degree": 1}, {"id": "badge_badge", "label": "Badge.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge.tsx", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.tsx", "file_type": "code", "degree": 5}, {"id": "badge_badge_badgeprops", "label": "BadgeProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BadgeProps", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.tsx", "file_type": "code", "degree": 2}, {"id": "badge_badge_badge", "label": "Badge()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge()", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/Badge.tsx", "file_type": "code", "degree": 4}, {"id": "badge_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 67, "community_name": "Community 67", "source_file": "packages/design-system/src/components/Badge/index.ts", "file_type": "code", "degree": 4}, {"id": "button_button_stories", "label": "Button.stories.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Button.stories.tsx", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 14}, {"id": "button_button_stories_meta", "label": "meta", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_story", "label": "Story", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_primary", "label": "Primary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Primary", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_secondary", "label": "Secondary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Secondary", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_tertiary", "label": "Tertiary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tertiary", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_danger", "label": "Danger", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Danger", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_small", "label": "Small", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Small", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_loading", "label": "Loading", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_disabled", "label": "Disabled", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Disabled", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_allvariants", "label": "AllVariants", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllVariants", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_allsizes", "label": "AllSizes", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllSizes", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_stories_allstates", "label": "AllStates", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllStates", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.stories.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_test", "label": "Button.test.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Button.test.tsx", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.test.tsx", "file_type": "code", "degree": 5}, {"id": "button_button_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.test.tsx", "file_type": "code", "degree": 1}, {"id": "button_button", "label": "Button.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Button.tsx", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.tsx", "file_type": "code", "degree": 10}, {"id": "button_button_actionvariant", "label": "ActionVariant", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ActionVariant", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_buttonprops", "label": "ButtonProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonProps", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.tsx", "file_type": "code", "degree": 2}, {"id": "button_button_variant_map", "label": "VARIANT_MAP", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VARIANT_MAP", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.tsx", "file_type": "code", "degree": 1}, {"id": "button_button_button", "label": "Button()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Button()", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/Button.tsx", "file_type": "code", "degree": 10}, {"id": "button_index", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Button/index.ts", "file_type": "code", "degree": 7}, {"id": "card_card_stories", "label": "Card.stories.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.stories.tsx", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 10}, {"id": "card_card_stories_meta", "label": "meta", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_stories_story", "label": "Story", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_stories_default", "label": "Default", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_stories_withheader", "label": "WithHeader", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithHeader", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_stories_withactions", "label": "WithActions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithActions", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_stories_fullcard", "label": "FullCard", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FullCard", "community": 14, "community_name": "Community 14", "source_file": "packages/design-system/src/components/Card/Card.stories.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_test", "label": "Card.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.test.tsx", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/Card/Card.test.tsx", "file_type": "code", "degree": 5}, {"id": "card_card_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/Card/Card.test.tsx", "file_type": "code", "degree": 1}, {"id": "card_card", "label": "Card.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.tsx", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Card/Card.tsx", "file_type": "code", "degree": 8}, {"id": "card_card_cardprops", "label": "CardProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CardProps", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Card/Card.tsx", "file_type": "code", "degree": 3}, {"id": "card_card_card", "label": "Card()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Card()", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Card/Card.tsx", "file_type": "code", "degree": 4}, {"id": "card_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Card/index.ts", "file_type": "code", "degree": 4}, {"id": "checkbox_checkbox_stories", "label": "Checkbox.stories.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkbox.stories.tsx", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 8}, {"id": "checkbox_checkbox_stories_meta", "label": "meta", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox_stories_story", "label": "Story", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox_stories_unchecked", "label": "Unchecked", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Unchecked", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox_stories_checked", "label": "Checked", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Checked", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox_stories_disabled", "label": "Disabled", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Disabled", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox_stories_error", "label": "Error", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Error", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.stories.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox_test", "label": "Checkbox.test.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkbox.test.tsx", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.test.tsx", "file_type": "code", "degree": 5}, {"id": "checkbox_checkbox_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.test.tsx", "file_type": "code", "degree": 1}, {"id": "checkbox_checkbox", "label": "Checkbox.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkbox.tsx", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.tsx", "file_type": "code", "degree": 5}, {"id": "checkbox_checkbox_checkboxprops", "label": "CheckboxProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CheckboxProps", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.tsx", "file_type": "code", "degree": 2}, {"id": "checkbox_checkbox_checkbox", "label": "Checkbox()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkbox()", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/Checkbox.tsx", "file_type": "code", "degree": 4}, {"id": "checkbox_index", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 74, "community_name": "Community 74", "source_file": "packages/design-system/src/components/Checkbox/index.ts", "file_type": "code", "degree": 4}, {"id": "chip_chip_stories", "label": "Chip.stories.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Chip.stories.tsx", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 11}, {"id": "chip_chip_stories_meta", "label": "meta", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_story", "label": "Story", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_neutral", "label": "Neutral", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Neutral", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_info", "label": "Info", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Info", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_success", "label": "Success", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Success", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_warning", "label": "Warning", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Warning", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_error", "label": "Error", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Error", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_deletable", "label": "Deletable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Deletable", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_stories_alltones", "label": "AllTones", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllTones", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.stories.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_test", "label": "Chip.test.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Chip.test.tsx", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.test.tsx", "file_type": "code", "degree": 5}, {"id": "chip_chip_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.test.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip", "label": "Chip.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Chip.tsx", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.tsx", "file_type": "code", "degree": 7}, {"id": "chip_chip_tone", "label": "Tone", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tone", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_tone_map", "label": "TONE_MAP", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TONE_MAP", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.tsx", "file_type": "code", "degree": 1}, {"id": "chip_chip_chipprops", "label": "ChipProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ChipProps", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.tsx", "file_type": "code", "degree": 2}, {"id": "chip_chip_chip", "label": "Chip()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Chip()", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/Chip.tsx", "file_type": "code", "degree": 4}, {"id": "chip_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 43, "community_name": "Community 43", "source_file": "packages/design-system/src/components/Chip/index.ts", "file_type": "code", "degree": 4}, {"id": "datatable_datatable_stories", "label": "DataTable.stories.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DataTable.stories.tsx", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 16}, {"id": "datatable_datatable_stories_stock", "label": "Stock", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stock", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_data", "label": "data", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "data", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_columnhelper", "label": "columnHelper", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "columnHelper", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_columns", "label": "columns", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "columns", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_sortabletablestory", "label": "SortableTableStory()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SortableTableStory()", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_meta", "label": "meta", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_story", "label": "Story", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_default", "label": "Default", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_compact", "label": "Compact", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Compact", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_sortable", "label": "Sortable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sortable", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_empty", "label": "Empty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Empty", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_stories_loading", "label": "Loading", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.stories.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test", "label": "DataTable.test.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTable.test.tsx", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 11}, {"id": "datatable_datatable_test_item", "label": "Item", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Item", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test_data", "label": "data", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "data", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test_columnhelper", "label": "columnHelper", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "columnHelper", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test_columns", "label": "columns", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "columns", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test_testtable", "label": "TestTable()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestTable()", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test_testtablewithprops", "label": "TestTableWithProps()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestTableWithProps()", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_test_emptytable", "label": "EmptyTable()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyTable()", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.test.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable", "label": "DataTable.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTable.tsx", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.tsx", "file_type": "code", "degree": 7}, {"id": "datatable_datatable_density", "label": "Density", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Density", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.tsx", "file_type": "code", "degree": 2}, {"id": "datatable_datatable_datatableprops", "label": "DataTableProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTableProps", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.tsx", "file_type": "code", "degree": 2}, {"id": "datatable_datatable_density_padding", "label": "DENSITY_PADDING", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DENSITY_PADDING", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.tsx", "file_type": "code", "degree": 1}, {"id": "datatable_datatable_datatable", "label": "DataTable()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTable()", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/DataTable.tsx", "file_type": "code", "degree": 4}, {"id": "datatable_index", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 15, "community_name": "Community 15", "source_file": "packages/design-system/src/components/DataTable/index.ts", "file_type": "code", "degree": 5}, {"id": "dialog_dialog_stories", "label": "Dialog.stories.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog.stories.tsx", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.stories.tsx", "file_type": "code", "degree": 9}, {"id": "dialog_dialog_stories_meta", "label": "meta", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.stories.tsx", "file_type": "code", "degree": 1}, {"id": "dialog_dialog_stories_story", "label": "Story", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.stories.tsx", "file_type": "code", "degree": 1}, {"id": "dialog_dialog_stories_default", "label": "Default", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.stories.tsx", "file_type": "code", "degree": 1}, {"id": "dialog_dialog_stories_withactions", "label": "WithActions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithActions", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.stories.tsx", "file_type": "code", "degree": 1}, {"id": "dialog_dialog_stories_interactive", "label": "Interactive", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Interactive", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.stories.tsx", "file_type": "code", "degree": 1}, {"id": "dialog_dialog_test", "label": "Dialog.test.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog.test.tsx", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.test.tsx", "file_type": "code", "degree": 5}, {"id": "dialog_dialog_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.test.tsx", "file_type": "code", "degree": 1}, {"id": "dialog_dialog", "label": "Dialog.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog.tsx", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.tsx", "file_type": "code", "degree": 5}, {"id": "dialog_dialog_dialogprops", "label": "DialogProps", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogProps", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.tsx", "file_type": "code", "degree": 2}, {"id": "dialog_dialog_dialog", "label": "Dialog()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog()", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/Dialog.tsx", "file_type": "code", "degree": 4}, {"id": "dialog_index", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 69, "community_name": "Community 69", "source_file": "packages/design-system/src/components/Dialog/index.ts", "file_type": "code", "degree": 4}, {"id": "emptystate_emptystate_stories", "label": "EmptyState.stories.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState.stories.tsx", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.stories.tsx", "file_type": "code", "degree": 9}, {"id": "emptystate_emptystate_stories_meta", "label": "meta", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "emptystate_emptystate_stories_story", "label": "Story", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "emptystate_emptystate_stories_basic", "label": "Basic", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Basic", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "emptystate_emptystate_stories_withaction", "label": "WithAction", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithAction", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "emptystate_emptystate_stories_minimal", "label": "Minimal", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Minimal", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "emptystate_emptystate_test", "label": "EmptyState.test.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState.test.tsx", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.test.tsx", "file_type": "code", "degree": 5}, {"id": "emptystate_emptystate_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.test.tsx", "file_type": "code", "degree": 1}, {"id": "emptystate_emptystate", "label": "EmptyState.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState.tsx", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.tsx", "file_type": "code", "degree": 9}, {"id": "emptystate_emptystate_emptystateprops", "label": "EmptyStateProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyStateProps", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.tsx", "file_type": "code", "degree": 2}, {"id": "emptystate_emptystate_emptystate", "label": "EmptyState()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState()", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/EmptyState.tsx", "file_type": "code", "degree": 4}, {"id": "emptystate_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 166, "community_name": "Community 166", "source_file": "packages/design-system/src/components/EmptyState/index.ts", "file_type": "code", "degree": 4}, {"id": "errorstate_errorstate_stories", "label": "ErrorState.stories.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorState.stories.tsx", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.stories.tsx", "file_type": "code", "degree": 9}, {"id": "errorstate_errorstate_stories_meta", "label": "meta", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "errorstate_errorstate_stories_story", "label": "Story", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "errorstate_errorstate_stories_basic", "label": "Basic", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Basic", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "errorstate_errorstate_stories_withretry", "label": "WithRetry", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithRetry", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "errorstate_errorstate_stories_minimal", "label": "Minimal", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Minimal", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "errorstate_errorstate_test", "label": "ErrorState.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorState.test.tsx", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.test.tsx", "file_type": "code", "degree": 5}, {"id": "errorstate_errorstate_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.test.tsx", "file_type": "code", "degree": 1}, {"id": "errorstate_errorstate", "label": "ErrorState.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorState.tsx", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.tsx", "file_type": "code", "degree": 9}, {"id": "errorstate_errorstate_errorstateprops", "label": "ErrorStateProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorStateProps", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.tsx", "file_type": "code", "degree": 2}, {"id": "errorstate_errorstate_errorstate", "label": "ErrorState()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorState()", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/ErrorState.tsx", "file_type": "code", "degree": 4}, {"id": "errorstate_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 80, "community_name": "Community 80", "source_file": "packages/design-system/src/components/ErrorState/index.ts", "file_type": "code", "degree": 4}, {"id": "filterbar_filterbar_stories", "label": "FilterBar.stories.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBar.stories.tsx", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.stories.tsx", "file_type": "code", "degree": 12}, {"id": "filterbar_filterbar_stories_meta", "label": "meta", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.stories.tsx", "file_type": "code", "degree": 1}, {"id": "filterbar_filterbar_stories_story", "label": "Story", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.stories.tsx", "file_type": "code", "degree": 1}, {"id": "filterbar_filterbar_stories_basic", "label": "Basic", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Basic", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.stories.tsx", "file_type": "code", "degree": 1}, {"id": "filterbar_filterbar_stories_noactions", "label": "NoActions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NoActions", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.stories.tsx", "file_type": "code", "degree": 1}, {"id": "filterbar_filterbar_test", "label": "FilterBar.test.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBar.test.tsx", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.test.tsx", "file_type": "code", "degree": 5}, {"id": "filterbar_filterbar_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.test.tsx", "file_type": "code", "degree": 1}, {"id": "filterbar_filterbar", "label": "FilterBar.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBar.tsx", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.tsx", "file_type": "code", "degree": 5}, {"id": "filterbar_filterbar_filterbarprops", "label": "FilterBarProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBarProps", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.tsx", "file_type": "code", "degree": 2}, {"id": "filterbar_filterbar_filterbar", "label": "FilterBar()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBar()", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/FilterBar.tsx", "file_type": "code", "degree": 4}, {"id": "filterbar_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/FilterBar/index.ts", "file_type": "code", "degree": 4}, {"id": "formfield_formfield_stories", "label": "FormField.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField.stories.tsx", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 12}, {"id": "formfield_formfield_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield_stories_withtextfield", "label": "WithTextField", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithTextField", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield_stories_required", "label": "Required", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield_stories_witherror", "label": "WithError", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithError", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield_stories_withselect", "label": "WithSelect", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithSelect", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield_test", "label": "FormField.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField.test.tsx", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.test.tsx", "file_type": "code", "degree": 5}, {"id": "formfield_formfield_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.test.tsx", "file_type": "code", "degree": 1}, {"id": "formfield_formfield", "label": "FormField.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField.tsx", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.tsx", "file_type": "code", "degree": 5}, {"id": "formfield_formfield_formfieldprops", "label": "FormFieldProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FormFieldProps", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.tsx", "file_type": "code", "degree": 2}, {"id": "formfield_formfield_formfield", "label": "FormField()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField()", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/FormField.tsx", "file_type": "code", "degree": 4}, {"id": "formfield_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/FormField/index.ts", "file_type": "code", "degree": 4}, {"id": "heading_heading_stories", "label": "Heading.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Heading.stories.tsx", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 12}, {"id": "heading_heading_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_level1", "label": "Level1", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Level1", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_level2", "label": "Level2", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Level2", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_level3", "label": "Level3", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Level3", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_displaysize", "label": "DisplaySize", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DisplaySize", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_titlesize", "label": "TitleSize", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TitleSize", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_sectionsize", "label": "SectionSize", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SectionSize", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_subsectionsize", "label": "SubsectionSize", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SubsectionSize", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_stories_alllevels", "label": "AllLevels", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllLevels", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.stories.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_test", "label": "Heading.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Heading.test.tsx", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.test.tsx", "file_type": "code", "degree": 5}, {"id": "heading_heading_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.test.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading", "label": "Heading.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Heading.tsx", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.tsx", "file_type": "code", "degree": 7}, {"id": "heading_heading_size", "label": "Size", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Size", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_headingprops", "label": "HeadingProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HeadingProps", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.tsx", "file_type": "code", "degree": 2}, {"id": "heading_heading_size_variant", "label": "SIZE_VARIANT", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SIZE_VARIANT", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.tsx", "file_type": "code", "degree": 1}, {"id": "heading_heading_heading", "label": "Heading()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Heading()", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/Heading.tsx", "file_type": "code", "degree": 7}, {"id": "heading_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/Heading/index.ts", "file_type": "code", "degree": 7}, {"id": "iconbutton_iconbutton_stories", "label": "IconButton.stories.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButton.stories.tsx", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 11}, {"id": "iconbutton_iconbutton_stories_meta", "label": "meta", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_story", "label": "Story", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_search", "label": "Search", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Search", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_close", "label": "Close", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Close", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_delete", "label": "Delete", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_settings", "label": "Settings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_small", "label": "Small", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Small", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_allsizes", "label": "AllSizes", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllSizes", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_stories_allexamples", "label": "AllExamples", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllExamples", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton_test", "label": "IconButton.test.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButton.test.tsx", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.test.tsx", "file_type": "code", "degree": 5}, {"id": "iconbutton_iconbutton_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.test.tsx", "file_type": "code", "degree": 1}, {"id": "iconbutton_iconbutton", "label": "IconButton.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButton.tsx", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.tsx", "file_type": "code", "degree": 5}, {"id": "iconbutton_iconbutton_iconbuttonprops", "label": "IconButtonProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButtonProps", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.tsx", "file_type": "code", "degree": 2}, {"id": "iconbutton_iconbutton_iconbutton", "label": "IconButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButton()", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/IconButton.tsx", "file_type": "code", "degree": 4}, {"id": "iconbutton_index", "label": "index.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 44, "community_name": "Community 44", "source_file": "packages/design-system/src/components/IconButton/index.ts", "file_type": "code", "degree": 4}, {"id": "link_link_stories", "label": "Link.stories.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Link.stories.tsx", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 9}, {"id": "link_link_stories_meta", "label": "meta", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_stories_story", "label": "Story", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_stories_default", "label": "Default", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_stories_external", "label": "External", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "External", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_stories_positive", "label": "Positive", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Positive", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_stories_negative", "label": "Negative", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Negative", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_stories_alltones", "label": "AllTones", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllTones", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.stories.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_test", "label": "Link.test.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Link.test.tsx", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.test.tsx", "file_type": "code", "degree": 5}, {"id": "link_link_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.test.tsx", "file_type": "code", "degree": 1}, {"id": "link_link", "label": "Link.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Link.tsx", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.tsx", "file_type": "code", "degree": 7}, {"id": "link_link_tone", "label": "Tone", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tone", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_linkprops", "label": "LinkProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LinkProps", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.tsx", "file_type": "code", "degree": 2}, {"id": "link_link_tone_map", "label": "TONE_MAP", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TONE_MAP", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.tsx", "file_type": "code", "degree": 1}, {"id": "link_link_link", "label": "Link()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Link()", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/Link.tsx", "file_type": "code", "degree": 4}, {"id": "link_index", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 45, "community_name": "Community 45", "source_file": "packages/design-system/src/components/Link/index.ts", "file_type": "code", "degree": 4}, {"id": "loadingstate_loadingstate_stories", "label": "LoadingState.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState.stories.tsx", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.stories.tsx", "file_type": "code", "degree": 7}, {"id": "loadingstate_loadingstate_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "loadingstate_loadingstate_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "loadingstate_loadingstate_stories_section", "label": "Section", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Section", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "loadingstate_loadingstate_stories_page", "label": "Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Page", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "loadingstate_loadingstate_stories_withlabel", "label": "WithLabel", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithLabel", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.stories.tsx", "file_type": "code", "degree": 1}, {"id": "loadingstate_loadingstate_test", "label": "LoadingState.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState.test.tsx", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.test.tsx", "file_type": "code", "degree": 5}, {"id": "loadingstate_loadingstate_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.test.tsx", "file_type": "code", "degree": 1}, {"id": "loadingstate_loadingstate", "label": "LoadingState.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState.tsx", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.tsx", "file_type": "code", "degree": 9}, {"id": "loadingstate_loadingstate_loadingstateprops", "label": "LoadingStateProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingStateProps", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.tsx", "file_type": "code", "degree": 2}, {"id": "loadingstate_loadingstate_loadingstate", "label": "LoadingState()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState()", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/LoadingState.tsx", "file_type": "code", "degree": 4}, {"id": "loadingstate_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 22, "community_name": "Community 22", "source_file": "packages/design-system/src/components/LoadingState/index.ts", "file_type": "code", "degree": 4}, {"id": "metric_metric_stories", "label": "Metric.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Metric.stories.tsx", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.stories.tsx", "file_type": "code", "degree": 9}, {"id": "metric_metric_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.stories.tsx", "file_type": "code", "degree": 1}, {"id": "metric_metric_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.stories.tsx", "file_type": "code", "degree": 1}, {"id": "metric_metric_stories_basic", "label": "Basic", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Basic", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.stories.tsx", "file_type": "code", "degree": 1}, {"id": "metric_metric_stories_withtrend", "label": "WithTrend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithTrend", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.stories.tsx", "file_type": "code", "degree": 1}, {"id": "metric_metric_stories_withsupportingtext", "label": "WithSupportingText", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithSupportingText", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.stories.tsx", "file_type": "code", "degree": 1}, {"id": "metric_metric_test", "label": "Metric.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Metric.test.tsx", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.test.tsx", "file_type": "code", "degree": 5}, {"id": "metric_metric_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.test.tsx", "file_type": "code", "degree": 1}, {"id": "metric_metric", "label": "Metric.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Metric.tsx", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.tsx", "file_type": "code", "degree": 7}, {"id": "metric_metric_metricprops", "label": "MetricProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricProps", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.tsx", "file_type": "code", "degree": 2}, {"id": "metric_metric_metric", "label": "Metric()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Metric()", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/Metric.tsx", "file_type": "code", "degree": 4}, {"id": "metric_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 172, "community_name": "Community 172", "source_file": "packages/design-system/src/components/Metric/index.ts", "file_type": "code", "degree": 4}, {"id": "money_money_stories", "label": "Money.stories.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Money.stories.tsx", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 8}, {"id": "money_money_stories_meta", "label": "meta", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 1}, {"id": "money_money_stories_story", "label": "Story", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 1}, {"id": "money_money_stories_rubles", "label": "Rubles", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rubles", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 1}, {"id": "money_money_stories_dollars", "label": "Dollars", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dollars", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 1}, {"id": "money_money_stories_negative", "label": "Negative", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Negative", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 1}, {"id": "money_money_stories_withsign", "label": "WithSign", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithSign", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.stories.tsx", "file_type": "code", "degree": 1}, {"id": "money_money_test", "label": "Money.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Money.test.tsx", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/Money/Money.test.tsx", "file_type": "code", "degree": 5}, {"id": "money_money_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/Money/Money.test.tsx", "file_type": "code", "degree": 1}, {"id": "money_money", "label": "Money.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Money.tsx", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.tsx", "file_type": "code", "degree": 5}, {"id": "money_money_moneyprops", "label": "MoneyProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MoneyProps", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.tsx", "file_type": "code", "degree": 2}, {"id": "money_money_money", "label": "Money()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Money()", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/Money.tsx", "file_type": "code", "degree": 5}, {"id": "money_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/Money/index.ts", "file_type": "code", "degree": 5}, {"id": "pricechange_pricechange_stories", "label": "PriceChange.stories.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange.stories.tsx", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 8}, {"id": "pricechange_pricechange_stories_meta", "label": "meta", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange_stories_story", "label": "Story", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange_stories_positive", "label": "Positive", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Positive", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange_stories_negative", "label": "Negative", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Negative", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange_stories_flat", "label": "Flat", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Flat", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange_stories_positivemoney", "label": "PositiveMoney", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PositiveMoney", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.stories.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange_test", "label": "PriceChange.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange.test.tsx", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.test.tsx", "file_type": "code", "degree": 5}, {"id": "pricechange_pricechange_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.test.tsx", "file_type": "code", "degree": 1}, {"id": "pricechange_pricechange", "label": "PriceChange.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange.tsx", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.tsx", "file_type": "code", "degree": 12}, {"id": "pricechange_pricechange_pricechangeprops", "label": "PriceChangeProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChangeProps", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.tsx", "file_type": "code", "degree": 2}, {"id": "pricechange_pricechange_formatpercent", "label": "formatPercent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "formatPercent()", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.tsx", "file_type": "code", "degree": 3}, {"id": "pricechange_pricechange_getdirection", "label": "getDirection()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDirection()", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.tsx", "file_type": "code", "degree": 2}, {"id": "pricechange_pricechange_gettone", "label": "getTone()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getTone()", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.tsx", "file_type": "code", "degree": 2}, {"id": "pricechange_pricechange_pricechange", "label": "PriceChange()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange()", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/PriceChange.tsx", "file_type": "code", "degree": 8}, {"id": "pricechange_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 20, "community_name": "Community 20", "source_file": "packages/design-system/src/components/PriceChange/index.ts", "file_type": "code", "degree": 5}, {"id": "progress_progress_stories", "label": "Progress.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress.stories.tsx", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.stories.tsx", "file_type": "code", "degree": 7}, {"id": "progress_progress_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.stories.tsx", "file_type": "code", "degree": 1}, {"id": "progress_progress_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.stories.tsx", "file_type": "code", "degree": 1}, {"id": "progress_progress_stories_indeterminate", "label": "Indeterminate", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Indeterminate", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.stories.tsx", "file_type": "code", "degree": 1}, {"id": "progress_progress_stories_determinate", "label": "Determinate", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Determinate", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.stories.tsx", "file_type": "code", "degree": 1}, {"id": "progress_progress_stories_almostcomplete", "label": "AlmostComplete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AlmostComplete", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.stories.tsx", "file_type": "code", "degree": 1}, {"id": "progress_progress_test", "label": "Progress.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress.test.tsx", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.test.tsx", "file_type": "code", "degree": 5}, {"id": "progress_progress_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.test.tsx", "file_type": "code", "degree": 1}, {"id": "progress_progress", "label": "Progress.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress.tsx", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.tsx", "file_type": "code", "degree": 5}, {"id": "progress_progress_progressprops", "label": "ProgressProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressProps", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.tsx", "file_type": "code", "degree": 2}, {"id": "progress_progress_progress", "label": "Progress()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress()", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/Progress.tsx", "file_type": "code", "degree": 4}, {"id": "progress_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 72, "community_name": "Community 72", "source_file": "packages/design-system/src/components/Progress/index.ts", "file_type": "code", "degree": 4}, {"id": "select_select_stories", "label": "Select.stories.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Select.stories.tsx", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 9}, {"id": "select_select_stories_meta", "label": "meta", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_stories_story", "label": "Story", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_stories_currencies", "label": "currencies", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "currencies", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_stories_default", "label": "Default", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_stories_withvalue", "label": "WithValue", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithValue", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_stories_error", "label": "Error", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Error", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_stories_disabled", "label": "Disabled", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Disabled", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.stories.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_test", "label": "Select.test.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Select.test.tsx", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.test.tsx", "file_type": "code", "degree": 6}, {"id": "select_select_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.test.tsx", "file_type": "code", "degree": 1}, {"id": "select_select_test_options", "label": "options", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "options", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.test.tsx", "file_type": "code", "degree": 1}, {"id": "select_select", "label": "Select.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Select.tsx", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.tsx", "file_type": "code", "degree": 6}, {"id": "select_select_selectoption", "label": "SelectOption", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectOption", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.tsx", "file_type": "code", "degree": 2}, {"id": "select_select_selectprops", "label": "SelectProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectProps", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.tsx", "file_type": "code", "degree": 2}, {"id": "select_select_select", "label": "Select()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Select()", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/Select.tsx", "file_type": "code", "degree": 6}, {"id": "select_index", "label": "index.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 46, "community_name": "Community 46", "source_file": "packages/design-system/src/components/Select/index.ts", "file_type": "code", "degree": 7}, {"id": "skeleton_skeleton_stories", "label": "Skeleton.stories.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton.stories.tsx", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 9}, {"id": "skeleton_skeleton_stories_meta", "label": "meta", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_stories_story", "label": "Story", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_stories_text", "label": "Text", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Text", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_stories_rectangular", "label": "Rectangular", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rectangular", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_stories_rounded", "label": "Rounded", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rounded", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_stories_circular", "label": "Circular", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Circular", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_stories_cardskeleton", "label": "CardSkeleton", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardSkeleton", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.stories.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_test", "label": "Skeleton.test.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton.test.tsx", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.test.tsx", "file_type": "code", "degree": 5}, {"id": "skeleton_skeleton_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.test.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton", "label": "Skeleton.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton.tsx", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.tsx", "file_type": "code", "degree": 7}, {"id": "skeleton_skeleton_shape", "label": "Shape", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Shape", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_shape_map", "label": "SHAPE_MAP", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SHAPE_MAP", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.tsx", "file_type": "code", "degree": 1}, {"id": "skeleton_skeleton_skeletonprops", "label": "SkeletonProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SkeletonProps", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "skeleton_skeleton_skeleton", "label": "Skeleton()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton()", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/Skeleton.tsx", "file_type": "code", "degree": 4}, {"id": "skeleton_index", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 47, "community_name": "Community 47", "source_file": "packages/design-system/src/components/Skeleton/index.ts", "file_type": "code", "degree": 4}, {"id": "surface_surface_stories", "label": "Surface.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Surface.stories.tsx", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 8}, {"id": "surface_surface_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_stories_default", "label": "Default", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_stories_elevated", "label": "Elevated", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Elevated", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_stories_nopadding", "label": "NoPadding", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NoPadding", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_stories_largepadding", "label": "LargePadding", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LargePadding", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.stories.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_test", "label": "Surface.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Surface.test.tsx", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.test.tsx", "file_type": "code", "degree": 5}, {"id": "surface_surface_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.test.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface", "label": "Surface.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Surface.tsx", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 10}, {"id": "surface_surface_paddingsize", "label": "PaddingSize", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaddingSize", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_elevationlevel", "label": "ElevationLevel", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ElevationLevel", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_padding_map", "label": "PADDING_MAP", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PADDING_MAP", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_elevation_map", "label": "ELEVATION_MAP", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ELEVATION_MAP", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 1}, {"id": "surface_surface_surfaceprops", "label": "SurfaceProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SurfaceProps", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 4}, {"id": "surface_surface_surface", "label": "Surface()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Surface()", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/Surface.tsx", "file_type": "code", "degree": 5}, {"id": "surface_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/Surface/index.ts", "file_type": "code", "degree": 4}, {"id": "text_text_stories", "label": "Text.stories.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Text.stories.tsx", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 14}, {"id": "text_text_stories_meta", "label": "meta", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_story", "label": "Story", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_body", "label": "Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_caption", "label": "Caption", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Caption", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_label", "label": "Label", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Label", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_numeric", "label": "Numeric", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Numeric", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_positivetone", "label": "PositiveTone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PositiveTone", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_negativetone", "label": "NegativeTone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NegativeTone", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_secondarytone", "label": "SecondaryTone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SecondaryTone", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_mutedtone", "label": "MutedTone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MutedTone", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_allvariants", "label": "AllVariants", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllVariants", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_stories_alltones", "label": "AllTones", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AllTones", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.stories.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_test", "label": "Text.test.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Text.test.tsx", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.test.tsx", "file_type": "code", "degree": 5}, {"id": "text_text_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.test.tsx", "file_type": "code", "degree": 1}, {"id": "text_text", "label": "Text.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Text.tsx", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 9}, {"id": "text_text_tone", "label": "Tone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tone", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_textvariant", "label": "TextVariant", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TextVariant", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_textprops", "label": "TextProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TextProps", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 2}, {"id": "text_text_variant_map", "label": "VARIANT_MAP", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VARIANT_MAP", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_tone_map", "label": "TONE_MAP", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TONE_MAP", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 1}, {"id": "text_text_text", "label": "Text()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Text()", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/Text.tsx", "file_type": "code", "degree": 9}, {"id": "text_index", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 28, "community_name": "Community 28", "source_file": "packages/design-system/src/components/Text/index.ts", "file_type": "code", "degree": 9}, {"id": "textfield_textfield_stories", "label": "TextField.stories.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TextField.stories.tsx", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 9}, {"id": "textfield_textfield_stories_meta", "label": "meta", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "meta", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_stories_story", "label": "Story", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Story", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_stories_default", "label": "Default", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_stories_withhelpertext", "label": "WithHelperText", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WithHelperText", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_stories_error", "label": "Error", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Error", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_stories_disabled", "label": "Disabled", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Disabled", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_stories_longrussiantext", "label": "LongRussianText", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LongRussianText", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.stories.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield_test", "label": "TextField.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TextField.test.tsx", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/TextField/TextField.test.tsx", "file_type": "code", "degree": 5}, {"id": "textfield_textfield_test_renderwiththeme", "label": "renderWithTheme()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithTheme()", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/components/TextField/TextField.test.tsx", "file_type": "code", "degree": 1}, {"id": "textfield_textfield", "label": "TextField.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TextField.tsx", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.tsx", "file_type": "code", "degree": 5}, {"id": "textfield_textfield_textfieldprops", "label": "TextFieldProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TextFieldProps", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.tsx", "file_type": "code", "degree": 2}, {"id": "textfield_textfield_textfield", "label": "TextField()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TextField()", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/TextField.tsx", "file_type": "code", "degree": 6}, {"id": "textfield_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 62, "community_name": "Community 62", "source_file": "packages/design-system/src/components/TextField/index.ts", "file_type": "code", "degree": 6}, {"id": "components_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/components/index.ts", "file_type": "code", "degree": 26}, {"id": "src_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 12, "community_name": "Community 12", "source_file": "packages/design-system/src/index.ts", "file_type": "code", "degree": 1}, {"id": "packages_design_system_src_test_setup_ts_test_setup", "label": "setup.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setup.ts", "community": 111, "community_name": "Community 111", "source_file": "packages/design-system/src/test/setup.ts", "file_type": "code", "degree": 0}, {"id": "theme_moexvibethemeprovider", "label": "MoexVibeThemeProvider.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibeThemeProvider.tsx", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/MoexVibeThemeProvider.tsx", "file_type": "code", "degree": 6}, {"id": "theme_moexvibethemeprovider_theme", "label": "theme", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "theme", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/MoexVibeThemeProvider.tsx", "file_type": "code", "degree": 1}, {"id": "theme_moexvibethemeprovider_moexvibethemeproviderprops", "label": "MoexVibeThemeProviderProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibeThemeProviderProps", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/MoexVibeThemeProvider.tsx", "file_type": "code", "degree": 1}, {"id": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "MoexVibeThemeProvider()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MoexVibeThemeProvider()", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/theme/MoexVibeThemeProvider.tsx", "file_type": "code", "degree": 29}, {"id": "theme_createmoexvibetheme_test", "label": "createMoexVibeTheme.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createMoexVibeTheme.test.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/createMoexVibeTheme.test.ts", "file_type": "code", "degree": 2}, {"id": "theme_createmoexvibetheme", "label": "createMoexVibeTheme.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createMoexVibeTheme.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/createMoexVibeTheme.ts", "file_type": "code", "degree": 8}, {"id": "theme_createmoexvibetheme_alltokens", "label": "allTokens", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allTokens", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/createMoexVibeTheme.ts", "file_type": "code", "degree": 1}, {"id": "theme_createmoexvibetheme_resolvevalue", "label": "resolveValue()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveValue()", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/createMoexVibeTheme.ts", "file_type": "code", "degree": 3}, {"id": "theme_createmoexvibetheme_createmoexvibetheme", "label": "createMoexVibeTheme()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createMoexVibeTheme()", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/theme/createMoexVibeTheme.ts", "file_type": "code", "degree": 5}, {"id": "theme_index", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 40, "community_name": "Community 40", "source_file": "packages/design-system/src/theme/index.ts", "file_type": "code", "degree": 31}, {"id": "theme_mui_d", "label": "mui.d.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "mui.d.ts", "community": 99, "community_name": "Community 99", "source_file": "packages/design-system/src/theme/mui.d.ts", "file_type": "code", "degree": 2}, {"id": "theme_mui_d_palette", "label": "Palette", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Palette", "community": 99, "community_name": "Community 99", "source_file": "packages/design-system/src/theme/mui.d.ts", "file_type": "code", "degree": 1}, {"id": "theme_mui_d_paletteoptions", "label": "PaletteOptions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaletteOptions", "community": 99, "community_name": "Community 99", "source_file": "packages/design-system/src/theme/mui.d.ts", "file_type": "code", "degree": 1}, {"id": "tokens_components", "label": "components.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "components.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/components.ts", "file_type": "code", "degree": 3}, {"id": "tokens_index", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/index.ts", "file_type": "code", "degree": 12}, {"id": "tokens_primitives", "label": "primitives.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "primitives.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/primitives.ts", "file_type": "code", "degree": 3}, {"id": "tokens_resolvetoken_test", "label": "resolveToken.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveToken.test.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/resolveToken.test.ts", "file_type": "code", "degree": 4}, {"id": "tokens_resolvetoken", "label": "resolveToken.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveToken.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/resolveToken.ts", "file_type": "code", "degree": 6}, {"id": "tokens_resolvetoken_resolvetoken", "label": "resolveToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveToken()", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/resolveToken.ts", "file_type": "code", "degree": 5}, {"id": "tokens_semantic_light", "label": "semantic.light.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "semantic.light.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/semantic.light.ts", "file_type": "code", "degree": 3}, {"id": "tokens_types", "label": "types.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "types.ts", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/types.ts", "file_type": "code", "degree": 11}, {"id": "tokens_types_tokentype", "label": "TokenType", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenType", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/types.ts", "file_type": "code", "degree": 2}, {"id": "tokens_types_tokenvalue", "label": "TokenValue", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenValue", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/types.ts", "file_type": "code", "degree": 2}, {"id": "tokens_types_tokendefinition", "label": "TokenDefinition", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenDefinition", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/types.ts", "file_type": "code", "degree": 2}, {"id": "tokens_types_tokencollection", "label": "TokenCollection", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenCollection", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/types.ts", "file_type": "code", "degree": 7}, {"id": "tokens_types_resolvedtoken", "label": "ResolvedToken", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ResolvedToken", "community": 33, "community_name": "Community 33", "source_file": "packages/design-system/src/tokens/types.ts", "file_type": "code", "degree": 3}, {"id": "design_system_tsconfig", "label": "tsconfig.json", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.json", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 3}, {"id": "design_system_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 20}, {"id": "design_system_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_declaration", "label": "declaration", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "declaration", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_declarationmap", "label": "declarationMap", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "declarationMap", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_sourcemap", "label": "sourceMap", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceMap", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_outdir", "label": "outDir", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "outDir", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_rootdir", "label": "rootDir", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rootDir", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_jsx", "label": "jsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_moduledetection", "label": "moduleDetection", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_allowimportingtsextensions", "label": "allowImportingTsExtensions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowImportingTsExtensions", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_noemit", "label": "noEmit", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_nounusedlocals", "label": "noUnusedLocals", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_nounusedparameters", "label": "noUnusedParameters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_include", "label": "include", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_tsconfig_exclude", "label": "exclude", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 27, "community_name": "Community 27", "source_file": "packages/design-system/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "design_system_vitest_config", "label": "vitest.config.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 107, "community_name": "Community 107", "source_file": "packages/design-system/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "design_system_vitest_workspace", "label": "vitest.workspace.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.workspace.ts", "community": 108, "community_name": "Community 108", "source_file": "packages/design-system/vitest.workspace.ts", "file_type": "code", "degree": 0}, {"id": "tsconfig_base", "label": "tsconfig.base.json", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.base.json", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions", "label": "compilerOptions", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 12}, {"id": "tsconfig_base_compileroptions_target", "label": "target", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_module", "label": "module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_strict", "label": "strict", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_forceconsistentcasinginfilenames", "label": "forceConsistentCasingInFileNames", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "forceConsistentCasingInFileNames", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_resolvejsonmodule", "label": "resolveJsonModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveJsonModule", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_declaration", "label": "declaration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "declaration", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_declarationmap", "label": "declarationMap", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "declarationMap", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_base_compileroptions_sourcemap", "label": "sourceMap", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceMap", "community": 65, "community_name": "Community 65", "source_file": "tsconfig.base.json", "file_type": "code", "degree": 1}, {"id": "agents", "label": "AGENTS.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "label": "MoexVibe \u2014 \u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u0434\u043b\u044f \u0430\u0433\u0435\u043d\u0442\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibe \u2014 \u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u0434\u043b\u044f \u0430\u0433\u0435\u043d\u0442\u0430", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 10}, {"id": "agents_\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "label": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_\u043a_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435", "label": "\u041e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u043a \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u043a \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 16}, {"id": "agents_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "label": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 8}, {"id": "agents_inbox_md", "label": "inbox.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "inbox.md", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_roadmap_md", "label": "roadmap.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "roadmap.md", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_research", "label": "research/", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "research/", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_epics", "label": "epics/", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "epics/", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_features_feature_name_spec_md", "label": "features/{feature-name}/spec.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "features/{feature-name}/spec.md", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_features_feature_name_plan_md", "label": "features/{feature-name}/plan.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "features/{feature-name}/plan.md", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_features_feature_name_tasks_md", "label": "features/{feature-name}/tasks.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "features/{feature-name}/tasks.md", "community": 214, "community_name": "Community 214", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 7}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_1", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 1", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 1", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_2", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 2", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 2", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_3", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 3", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 3", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_4", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 4", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_5", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 5", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e 5", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u0431\u0430\u0433\u0430", "label": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0431\u0430\u0433\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0431\u0430\u0433\u0430", "community": 226, "community_name": "Community 226", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0431\u043e\u0442\u044b_\u043d\u0430\u0434_\u0444\u0438\u0447\u0435\u0439", "label": "\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u0444\u0438\u0447\u0435\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u0444\u0438\u0447\u0435\u0439", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u043d\u043e\u0432\u044b\u043c\u0438_\u0438\u0434\u0435\u044f\u043c\u0438", "label": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u043d\u043e\u0432\u044b\u043c\u0438 \u0438\u0434\u0435\u044f\u043c\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u043d\u043e\u0432\u044b\u043c\u0438 \u0438\u0434\u0435\u044f\u043c\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438_\u0444\u0438\u0447\u0430\u043c\u0438", "label": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438 \u0444\u0438\u0447\u0430\u043c\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438 \u0444\u0438\u0447\u0430\u043c\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_ai_\u0430\u0433\u0435\u043d\u0442\u043e\u0432", "label": "\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 AI-\u0430\u0433\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 AI-\u0430\u0433\u0435\u043d\u0442\u043e\u0432", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_pre_flight_checklist_\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u0435\u043d_\u043f\u0435\u0440\u0435\u0434_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439_\u043b\u044e\u0431\u043e\u0439_\u0444\u0438\u0447\u0438", "label": "Pre-flight checklist (\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u0435\u043d \u043f\u0435\u0440\u0435\u0434 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u0447\u0438)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pre-flight checklist (\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u0435\u043d \u043f\u0435\u0440\u0435\u0434 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u0447\u0438)", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_anti_loop_\u043b\u0438\u043c\u0438\u0442_\u043d\u0430_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u0438", "label": "Anti-Loop: \u043b\u0438\u043c\u0438\u0442 \u043d\u0430 \u0438\u0442\u0435\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Anti-Loop: \u043b\u0438\u043c\u0438\u0442 \u043d\u0430 \u0438\u0442\u0435\u0440\u0430\u0446\u0438\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438", "label": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_git_workflow", "label": "Git workflow", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Git workflow", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u044f_\u043a\u043e\u043c\u043c\u0438\u0442\u043e\u0432", "label": "\u041a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u044f \u043a\u043e\u043c\u043c\u0438\u0442\u043e\u0432", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u044f \u043a\u043e\u043c\u043c\u0438\u0442\u043e\u0432", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_sdd_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 SDD-\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 SDD-\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_definition_of_done_dod", "label": "Definition of Done (DoD)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Definition of Done (DoD)", "community": 143, "community_name": "Community 143", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "label": "\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 8}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f\u043c\u0438_prisma", "label": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f\u043c\u0438 Prisma", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f\u043c\u0438 Prisma", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433\u0430", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433\u0430", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438", "label": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_adr_\u043f\u0440\u043e\u0446\u0435\u0441\u0441", "label": "ADR-\u043f\u0440\u043e\u0446\u0435\u0441\u0441", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-\u043f\u0440\u043e\u0446\u0435\u0441\u0441", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f_openapi_\u0442\u0438\u043f\u043e\u0432", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f OpenAPI/\u0442\u0438\u043f\u043e\u0432", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f OpenAPI/\u0442\u0438\u043f\u043e\u0432", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0446\u0438\u043a\u043b_\u0440\u0430\u0431\u043e\u0442\u044b_\u043d\u0430\u0434_api", "label": "\u0426\u0438\u043a\u043b \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0438\u043a\u043b \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 API", "community": 213, "community_name": "Community 213", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043f\u0440\u043e\u0435\u043a\u0442\u0430", "label": "\u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 3}, {"id": "agents_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "label": "\u041a\u043e\u043c\u0430\u043d\u0434\u044b", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u0430\u043d\u0434\u044b", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "community": 266, "community_name": "Community 266", "source_file": "AGENTS.md", "file_type": "document", "degree": 4}, {"id": "agents_\u0431\u044d\u043a\u0435\u043d\u0434", "label": "\u0411\u044d\u043a\u0435\u043d\u0434", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u044d\u043a\u0435\u043d\u0434", "community": 266, "community_name": "Community 266", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434", "label": "\u0424\u0440\u043e\u043d\u0442\u0435\u043d\u0434", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0440\u043e\u043d\u0442\u0435\u043d\u0434", "community": 266, "community_name": "Community 266", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\u0441\u0442\u0438\u043b\u044c_\u043a\u043e\u0434\u0430", "label": "\u0421\u0442\u0438\u043b\u044c \u043a\u043e\u0434\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0438\u043b\u044c \u043a\u043e\u0434\u0430", "community": 266, "community_name": "Community 266", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_code_index_mcp", "label": "code-index-mcp", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "code-index-mcp", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_serena", "label": "serena", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "serena", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_graphify", "label": "graphify", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 187, "community_name": "Community 187", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "readme", "label": "README.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_moexvibe", "label": "MoexVibe", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibe", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 10}, {"id": "readme_\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "label": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u043e_\u043f\u0440\u043e\u0435\u043a\u0442\u0435", "label": "\u041e \u043f\u0440\u043e\u0435\u043a\u0442\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e \u043f\u0440\u043e\u0435\u043a\u0442\u0435", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0441\u0442\u0435\u043a_\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439", "label": "\u0421\u0442\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "label": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0441\u0442\u0430\u0440\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0441\u0442\u0430\u0440\u0442", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_docker", "label": "Docker", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Docker", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043f\u0440\u043e\u0435\u043a\u0442\u0430", "label": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "label": "\u041a\u043e\u043c\u0430\u043d\u0434\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u0430\u043d\u0434\u044b", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "community": 185, "community_name": "Community 185", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_001_backend_single_point_of_access", "label": "ADR-001-backend-single-point-of-access.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-001-backend-single-point-of-access.md", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-001-backend-single-point-of-access.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_001_backend_single_point_of_access_adr_001_backend_\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f_\u0442\u043e\u0447\u043a\u0430_\u0434\u043e\u0441\u0442\u0443\u043f\u0430_\u043a_moex", "label": "ADR-001: Backend \u2014 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a MOEX", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-001: Backend \u2014 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a MOEX", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-001-backend-single-point-of-access.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_001_backend_single_point_of_access_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-001-backend-single-point-of-access.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_001_backend_single_point_of_access_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-001-backend-single-point-of-access.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_001_backend_single_point_of_access_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-001-backend-single-point-of-access.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_002_in_memory_cache", "label": "ADR-002-in-memory-cache.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-002-in-memory-cache.md", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-002-in-memory-cache.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_002_in_memory_cache_adr_002_in_memory_cache_\u0441_\u043f\u0443\u0442\u0451\u043c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_redis", "label": "ADR-002: In-memory cache \u0441 \u043f\u0443\u0442\u0451\u043c \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438 \u043d\u0430 Redis", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-002: In-memory cache \u0441 \u043f\u0443\u0442\u0451\u043c \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438 \u043d\u0430 Redis", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-002-in-memory-cache.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_002_in_memory_cache_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-002-in-memory-cache.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_002_in_memory_cache_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-002-in-memory-cache.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_002_in_memory_cache_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-002-in-memory-cache.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_003_rate_limiting_strategy", "label": "ADR-003-rate-limiting-strategy.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-003-rate-limiting-strategy.md", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-003-rate-limiting-strategy.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_003_rate_limiting_strategy_adr_003_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_rate_limiting_\u0434\u043b\u044f_moex_client", "label": "ADR-003: \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f rate limiting \u0434\u043b\u044f MOEX client", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-003: \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f rate limiting \u0434\u043b\u044f MOEX client", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-003-rate-limiting-strategy.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_003_rate_limiting_strategy_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-003-rate-limiting-strategy.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_003_rate_limiting_strategy_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-003-rate-limiting-strategy.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_003_rate_limiting_strategy_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-003-rate-limiting-strategy.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_004_feature_modules", "label": "ADR-004-feature-modules.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-004-feature-modules.md", "community": 254, "community_name": "Community 254", "source_file": "apps/docs/docs/adr/ADR-004-feature-modules.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_004_feature_modules_adr_004_feature_\u043c\u043e\u0434\u0443\u043b\u0438_\u043f\u043e_\u0434\u043e\u043c\u0435\u043d\u0430\u043c", "label": "ADR-004: Feature-\u043c\u043e\u0434\u0443\u043b\u0438 \u043f\u043e \u0434\u043e\u043c\u0435\u043d\u0430\u043c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-004: Feature-\u043c\u043e\u0434\u0443\u043b\u0438 \u043f\u043e \u0434\u043e\u043c\u0435\u043d\u0430\u043c", "community": 254, "community_name": "Community 254", "source_file": "apps/docs/docs/adr/ADR-004-feature-modules.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_004_feature_modules_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 254, "community_name": "Community 254", "source_file": "apps/docs/docs/adr/ADR-004-feature-modules.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_004_feature_modules_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 254, "community_name": "Community 254", "source_file": "apps/docs/docs/adr/ADR-004-feature-modules.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_004_feature_modules_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 254, "community_name": "Community 254", "source_file": "apps/docs/docs/adr/ADR-004-feature-modules.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_005_openapi_codegen_frontend", "label": "ADR-005-openapi-codegen-frontend.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-005-openapi-codegen-frontend.md", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-005-openapi-codegen-frontend.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_005_openapi_codegen_frontend_adr_005_openapi_codegen_\u0447\u0435\u0440\u0435\u0437_openapi_typescript", "label": "ADR-005: OpenAPI codegen \u0447\u0435\u0440\u0435\u0437 openapi-typescript", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-005: OpenAPI codegen \u0447\u0435\u0440\u0435\u0437 openapi-typescript", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-005-openapi-codegen-frontend.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_005_openapi_codegen_frontend_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-005-openapi-codegen-frontend.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_005_openapi_codegen_frontend_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-005-openapi-codegen-frontend.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_005_openapi_codegen_frontend_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/ADR-005-openapi-codegen-frontend.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_006_no_cci", "label": "ADR-006-no-cci.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-006-no-cci.md", "community": 255, "community_name": "Community 255", "source_file": "apps/docs/docs/adr/ADR-006-no-cci.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_006_no_cci_adr_006_cci_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f_\u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c_\u0432\u044b\u043d\u0435\u0441\u0435\u043d_\u0437\u0430_\u043f\u0440\u0435\u0434\u0435\u043b\u044b_mvp", "label": "ADR-006: CCI (\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f \u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c) \u0432\u044b\u043d\u0435\u0441\u0435\u043d \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u044b MVP", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-006: CCI (\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f \u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c) \u0432\u044b\u043d\u0435\u0441\u0435\u043d \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u044b MVP", "community": 255, "community_name": "Community 255", "source_file": "apps/docs/docs/adr/ADR-006-no-cci.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_006_no_cci_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 255, "community_name": "Community 255", "source_file": "apps/docs/docs/adr/ADR-006-no-cci.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_006_no_cci_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 255, "community_name": "Community 255", "source_file": "apps/docs/docs/adr/ADR-006-no-cci.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_006_no_cci_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 255, "community_name": "Community 255", "source_file": "apps/docs/docs/adr/ADR-006-no-cci.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_007_two_level_caching", "label": "ADR-007-two-level-caching.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-007-two-level-caching.md", "community": 256, "community_name": "Community 256", "source_file": "apps/docs/docs/adr/ADR-007-two-level-caching.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_007_two_level_caching_adr_007_\u0434\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_backend_frontend", "label": "ADR-007: \u0414\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435 \u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 (backend + frontend)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-007: \u0414\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435 \u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 (backend + frontend)", "community": 256, "community_name": "Community 256", "source_file": "apps/docs/docs/adr/ADR-007-two-level-caching.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_007_two_level_caching_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 256, "community_name": "Community 256", "source_file": "apps/docs/docs/adr/ADR-007-two-level-caching.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_007_two_level_caching_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 256, "community_name": "Community 256", "source_file": "apps/docs/docs/adr/ADR-007-two-level-caching.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_007_two_level_caching_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 256, "community_name": "Community 256", "source_file": "apps/docs/docs/adr/ADR-007-two-level-caching.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system", "label": "ADR-008-auth-system.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-008-auth-system.md", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "label": "ADR-008: \u0421\u0438\u0441\u0442\u0435\u043c\u0430 Authentication \u0438 Authorization", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-008: \u0421\u0438\u0441\u0442\u0435\u043c\u0430 Authentication \u0438 Authorization", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 6}, {"id": "adr_adr_008_auth_system_\u0441\u0442\u0430\u0442\u0443\u0441", "label": "\u0421\u0442\u0430\u0442\u0443\u0441", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0430\u0442\u0443\u0441", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_008_auth_system_backend", "label": "Backend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system_frontend", "label": "Frontend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_008_auth_system_\u043f\u043b\u044e\u0441\u044b", "label": "\u041f\u043b\u044e\u0441\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043b\u044e\u0441\u044b", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system_\u043c\u0438\u043d\u0443\u0441\u044b", "label": "\u041c\u0438\u043d\u0443\u0441\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u043d\u0443\u0441\u044b", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_008_auth_system_\u043f\u0443\u0442\u044c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "\u041f\u0443\u0442\u044c \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0443\u0442\u044c \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "community": 174, "community_name": "Community 174", "source_file": "apps/docs/docs/adr/ADR-008-auth-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_009_portfolio_domain", "label": "ADR-009-portfolio-domain.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-009-portfolio-domain.md", "community": 239, "community_name": "Community 239", "source_file": "apps/docs/docs/adr/ADR-009-portfolio-domain.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_009_portfolio_domain_adr_009_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "ADR-009: \u0414\u043e\u043c\u0435\u043d\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-009: \u0414\u043e\u043c\u0435\u043d\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "community": 239, "community_name": "Community 239", "source_file": "apps/docs/docs/adr/ADR-009-portfolio-domain.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_009_portfolio_domain_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 239, "community_name": "Community 239", "source_file": "apps/docs/docs/adr/ADR-009-portfolio-domain.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_009_portfolio_domain_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 239, "community_name": "Community 239", "source_file": "apps/docs/docs/adr/ADR-009-portfolio-domain.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_009_portfolio_domain_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "community": 239, "community_name": "Community 239", "source_file": "apps/docs/docs/adr/ADR-009-portfolio-domain.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_009_portfolio_domain_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 239, "community_name": "Community 239", "source_file": "apps/docs/docs/adr/ADR-009-portfolio-domain.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_010_backend_price_computation", "label": "ADR-010-backend-price-computation.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-010-backend-price-computation.md", "community": 240, "community_name": "Community 240", "source_file": "apps/docs/docs/adr/ADR-010-backend-price-computation.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_010_backend_price_computation_adr_010_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d_\u043d\u0430_backend", "label": "ADR-010: \u0420\u0430\u0441\u0447\u0451\u0442 \u0446\u0435\u043d \u043d\u0430 backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-010: \u0420\u0430\u0441\u0447\u0451\u0442 \u0446\u0435\u043d \u043d\u0430 backend", "community": 240, "community_name": "Community 240", "source_file": "apps/docs/docs/adr/ADR-010-backend-price-computation.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_010_backend_price_computation_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 240, "community_name": "Community 240", "source_file": "apps/docs/docs/adr/ADR-010-backend-price-computation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_010_backend_price_computation_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 240, "community_name": "Community 240", "source_file": "apps/docs/docs/adr/ADR-010-backend-price-computation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_010_backend_price_computation_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "community": 240, "community_name": "Community 240", "source_file": "apps/docs/docs/adr/ADR-010-backend-price-computation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_010_backend_price_computation_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 240, "community_name": "Community 240", "source_file": "apps/docs/docs/adr/ADR-010-backend-price-computation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_011_tbank_invest_grpc", "label": "ADR-011-tbank-invest-grpc.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-011-tbank-invest-grpc.md", "community": 241, "community_name": "Community 241", "source_file": "apps/docs/docs/adr/ADR-011-tbank-invest-grpc.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_011_tbank_invest_grpc_adr_011_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_t_bank_invest_\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442_grpc", "label": "ADR-011: \u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0441 T-Bank Invest \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442 gRPC", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-011: \u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0441 T-Bank Invest \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442 gRPC", "community": 241, "community_name": "Community 241", "source_file": "apps/docs/docs/adr/ADR-011-tbank-invest-grpc.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_011_tbank_invest_grpc_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 241, "community_name": "Community 241", "source_file": "apps/docs/docs/adr/ADR-011-tbank-invest-grpc.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_011_tbank_invest_grpc_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 241, "community_name": "Community 241", "source_file": "apps/docs/docs/adr/ADR-011-tbank-invest-grpc.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_011_tbank_invest_grpc_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "community": 241, "community_name": "Community 241", "source_file": "apps/docs/docs/adr/ADR-011-tbank-invest-grpc.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_011_tbank_invest_grpc_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 241, "community_name": "Community 241", "source_file": "apps/docs/docs/adr/ADR-011-tbank-invest-grpc.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_012_frontend_broker_account_aggregation", "label": "ADR-012-frontend-broker-account-aggregation.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-012-frontend-broker-account-aggregation.md", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_012_frontend_broker_account_aggregation_adr_012_\u0441\u0432\u043e\u0434\u043a\u0430_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f_\u043d\u0430_frontend", "label": "ADR-012: \u0421\u0432\u043e\u0434\u043a\u0430 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043d\u0430 frontend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-012: \u0421\u0432\u043e\u0434\u043a\u0430 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043d\u0430 frontend", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_012_frontend_broker_account_aggregation_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_012_frontend_broker_account_aggregation_1_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445_\u043e\u0442\u0432\u0435\u0442\u043e\u0432_\u043d\u0430_frontend", "label": "1. \u0410\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043e\u0442\u0432\u0435\u0442\u043e\u0432 \u043d\u0430 frontend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0410\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043e\u0442\u0432\u0435\u0442\u043e\u0432 \u043d\u0430 frontend", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_012_frontend_broker_account_aggregation_2_\u043d\u043e\u0432\u044b\u0439_aggregate_endpoint", "label": "2. \u041d\u043e\u0432\u044b\u0439 aggregate endpoint", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041d\u043e\u0432\u044b\u0439 aggregate endpoint", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_012_frontend_broker_account_aggregation_3_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435_endpoint_\u0441\u043f\u0438\u0441\u043a\u0430_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "3. \u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 endpoint \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u0447\u0435\u0442\u043e\u0432", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 endpoint \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u0447\u0435\u0442\u043e\u0432", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_012_frontend_broker_account_aggregation_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 186, "community_name": "Community 186", "source_file": "apps/docs/docs/adr/ADR-012-frontend-broker-account-aggregation.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_013_frontend_fsd_broker_pilot", "label": "ADR-013-frontend-fsd-broker-pilot.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-013-frontend-fsd-broker-pilot.md", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_adr_013_frontend_fsd_broker_pilot", "label": "ADR-013: Frontend FSD broker pilot", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-013: Frontend FSD broker pilot", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u0432\u0430\u0440\u0438\u0430\u043d\u0442_a_\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439_broker_pilot", "label": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442 A. \u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 broker pilot", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442 A. \u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 broker pilot", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u0432\u0430\u0440\u0438\u0430\u043d\u0442_b_fsd_shell_\u0431\u0435\u0437_\u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430_\u0434\u043e\u043c\u0435\u043d\u043d\u043e\u0439_query_\u043b\u043e\u0433\u0438\u043a\u0438", "label": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442 B. FSD-shell \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0434\u043e\u043c\u0435\u043d\u043d\u043e\u0439 query-\u043b\u043e\u0433\u0438\u043a\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442 B. FSD-shell \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0434\u043e\u043c\u0435\u043d\u043d\u043e\u0439 query-\u043b\u043e\u0433\u0438\u043a\u0438", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u0432\u0430\u0440\u0438\u0430\u043d\u0442_c_\u043c\u0430\u0441\u0441\u043e\u0432\u0430\u044f_frontend_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "label": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442 C. \u041c\u0430\u0441\u0441\u043e\u0432\u0430\u044f frontend-\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442 C. \u041c\u0430\u0441\u0441\u043e\u0432\u0430\u044f frontend-\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_013_frontend_fsd_broker_pilot_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 199, "community_name": "Community 199", "source_file": "apps/docs/docs/adr/ADR-013-frontend-fsd-broker-pilot.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_014_frontend_fsd_market_pages", "label": "ADR-014-frontend-fsd-market-pages.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-014-frontend-fsd-market-pages.md", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_014_frontend_fsd_market_pages_adr_014_frontend_fsd_market_pages", "label": "ADR-014: Frontend FSD market pages", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-014: Frontend FSD market pages", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_014_frontend_fsd_market_pages_context", "label": "Context", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Context", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_014_frontend_fsd_market_pages_options", "label": "Options", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Options", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_014_frontend_fsd_market_pages_option_a_\u043f\u043e\u043b\u043d\u0430\u044f_market_fsd_migration_\u0441_coexistence_\u0447\u0435\u0440\u0435\u0437_shims", "label": "Option A. \u041f\u043e\u043b\u043d\u0430\u044f market FSD migration \u0441 coexistence \u0447\u0435\u0440\u0435\u0437 shims", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Option A. \u041f\u043e\u043b\u043d\u0430\u044f market FSD migration \u0441 coexistence \u0447\u0435\u0440\u0435\u0437 shims", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_014_frontend_fsd_market_pages_option_b_\u0447\u0430\u0441\u0442\u0438\u0447\u043d\u044b\u0439_\u043f\u0435\u0440\u0435\u043d\u043e\u0441_\u0442\u043e\u043b\u044c\u043a\u043e_ui_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "Option B. \u0427\u0430\u0441\u0442\u0438\u0447\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043d\u043e\u0441 \u0442\u043e\u043b\u044c\u043a\u043e UI-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Option B. \u0427\u0430\u0441\u0442\u0438\u0447\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043d\u043e\u0441 \u0442\u043e\u043b\u044c\u043a\u043e UI-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_014_frontend_fsd_market_pages_option_c_\u0443\u0441\u043a\u043e\u0440\u0435\u043d\u043d\u0430\u044f_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0431\u0435\u0437_shim_\u0441\u043b\u043e\u044f", "label": "Option C. \u0423\u0441\u043a\u043e\u0440\u0435\u043d\u043d\u0430\u044f \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0431\u0435\u0437 shim-\u0441\u043b\u043e\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Option C. \u0423\u0441\u043a\u043e\u0440\u0435\u043d\u043d\u0430\u044f \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0431\u0435\u0437 shim-\u0441\u043b\u043e\u044f", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_014_frontend_fsd_market_pages_decision", "label": "Decision", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Decision", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_014_frontend_fsd_market_pages_consequences", "label": "Consequences", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Consequences", "community": 200, "community_name": "Community 200", "source_file": "apps/docs/docs/adr/ADR-014-frontend-fsd-market-pages.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization", "label": "ADR-015-frontend-libraries-modernization.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-015-frontend-libraries-modernization.md", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "label": "ADR-015: \u041c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430 \u2014 \u0432\u044b\u0431\u043e\u0440 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-015: \u041c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430 \u2014 \u0432\u044b\u0431\u043e\u0440 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 7}, {"id": "adr_adr_015_frontend_libraries_modernization_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435_http_\u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432", "label": "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 HTTP-\u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 HTTP-\u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435_state_management", "label": "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 state-management", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 state-management", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435_ui_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "label": "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 UI-\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 UI-\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "label": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0439 \u0441\u0442\u0435\u043a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0439 \u0441\u0442\u0435\u043a", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0434_decisions", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0434 decisions", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0434 decisions", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_fsd", "label": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0441 FSD", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0441 FSD", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u043e\u0431\u0440\u0430\u0442\u043d\u0430\u044f_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "label": "\u041e\u0431\u0440\u0430\u0442\u043d\u0430\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0440\u0430\u0442\u043d\u0430\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_015_frontend_libraries_modernization_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0440\u0438\u0441\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u044b_\u043a\u043e\u0442\u043e\u0440\u044b\u0435_\u0431\u044b\u043b\u0438_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u044b", "label": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u044b", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_015_frontend_libraries_modernization_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "community": 125, "community_name": "Community 125", "source_file": "apps/docs/docs/adr/ADR-015-frontend-libraries-modernization.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system", "label": "ADR-016-design-system.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-016-design-system.md", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_016_design_system_adr_016_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_theme_wrapper_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "ADR-016: \u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u2014 \u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 (theme + wrapper-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-016: \u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u2014 \u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 (theme + wrapper-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b)", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_016_design_system_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_016_design_system_1_theme_only", "label": "1. Theme-only", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Theme-only", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_2_hybrid_\u0432\u044b\u0431\u0440\u0430\u043d", "label": "2. Hybrid (\u0432\u044b\u0431\u0440\u0430\u043d)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Hybrid (\u0432\u044b\u0431\u0440\u0430\u043d)", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_3_full_wrapper", "label": "3. Full wrapper", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Full wrapper", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_016_design_system_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_\u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "\u041e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_016_design_system_future", "label": "Future", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Future", "community": 160, "community_name": "Community 160", "source_file": "apps/docs/docs/adr/ADR-016-design-system.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter", "label": "ADR-017-biome-linter-formatter.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-017-biome-linter-formatter.md", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "ADR-017: Biome \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430 \u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-017: Biome \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430 \u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 6}, {"id": "adr_adr_017_biome_linter_formatter_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_017_biome_linter_formatter_biome_v2_5", "label": "Biome v2.5", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Biome v2.5", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_oxlint_oxfmt_oxc_project", "label": "Oxlint + Oxfmt (Oxc Project)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Oxlint + Oxfmt (Oxc Project)", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c_eslint_prettier", "label": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u044c ESLint + Prettier", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u044c ESLint + Prettier", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_017_biome_linter_formatter_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_017_biome_linter_formatter_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_\u0440\u0438\u0441\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_017_biome_linter_formatter_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "community": 152, "community_name": "Community 152", "source_file": "apps/docs/docs/adr/ADR-017-biome-linter-formatter.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router", "label": "ADR-018-tanstack-router.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-018-tanstack-router.md", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "label": "ADR-018: TanStack Router \u043a\u0430\u043a \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0440\u043e\u0443\u0442\u0435\u0440", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-018: TanStack Router \u043a\u0430\u043a \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0440\u043e\u0443\u0442\u0435\u0440", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 6}, {"id": "adr_adr_018_tanstack_router_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_018_tanstack_router_react_router_dom_v6_react_lazy", "label": "react-router-dom v6 + React.lazy", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom v6 + React.lazy", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_tanstack_router", "label": "TanStack Router", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TanStack Router", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 4}, {"id": "adr_adr_018_tanstack_router_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_\u0440\u0438\u0441\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "label": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_018_tanstack_router_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "community": 161, "community_name": "Community 161", "source_file": "apps/docs/docs/adr/ADR-018-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification", "label": "ADR-019-api-layer-unification.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-019-api-layer-unification.md", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 2}, {"id": "adr_adr_019_api_layer_unification_adr_019_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_api_\u0441\u043b\u043e\u044f_ky_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "label": "ADR-019: \u0423\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f API-\u0441\u043b\u043e\u044f: ky + codegen \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0442\u0438\u043f\u043e\u0432", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-019: \u0423\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f API-\u0441\u043b\u043e\u044f: ky + codegen \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0442\u0438\u043f\u043e\u0432", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_019_api_layer_unification_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 5}, {"id": "adr_adr_019_api_layer_unification_1_ky_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_http_\u043a\u043b\u0438\u0435\u043d\u0442", "label": "1. ky \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 HTTP-\u043a\u043b\u0438\u0435\u043d\u0442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. ky \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 HTTP-\u043a\u043b\u0438\u0435\u043d\u0442", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_2_openapi_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "label": "2. OpenAPI codegen \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0442\u0438\u043f\u043e\u0432", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. OpenAPI codegen \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0442\u0438\u043f\u043e\u0432", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_3_msw_browser_mode_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b", "label": "3. MSW Browser Mode (\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. MSW Browser Mode (\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b)", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_4_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "4. \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 3}, {"id": "adr_adr_019_api_layer_unification_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_\u0440\u0438\u0441\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_adr_019_api_layer_unification_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "community": 162, "community_name": "Community 162", "source_file": "apps/docs/docs/adr/ADR-019-api-layer-unification.md", "file_type": "document", "degree": 1}, {"id": "adr_index", "label": "index.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "index.md", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/index.md", "file_type": "document", "degree": 20}, {"id": "adr_index_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f_adr", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f (ADR)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f (ADR)", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/adr/index.md", "file_type": "document", "degree": 1}, {"id": "docs_architecture", "label": "architecture.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "architecture.md", "community": 114, "community_name": "Community 114", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 11}, {"id": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 7}, {"id": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430_\u0441\u0438\u0441\u0442\u0435\u043c\u044b", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 1}, {"id": "docs_architecture_\u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0435_\u043c\u043e\u0434\u0443\u043b\u0438_backend", "label": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0435 \u043c\u043e\u0434\u0443\u043b\u0438 backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0435 \u043c\u043e\u0434\u0443\u043b\u0438 backend", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 1}, {"id": "docs_architecture_\u043f\u043e\u0442\u043e\u043a_\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e_\u0437\u0430\u043f\u0440\u043e\u0441\u0430", "label": "\u041f\u043e\u0442\u043e\u043a \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u043e\u0441\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0442\u043e\u043a \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u043e\u0441\u0430", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 1}, {"id": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 1}, {"id": "docs_architecture_\u0444\u043e\u0440\u043c\u0430\u0442_\u043e\u0442\u0432\u0435\u0442\u0430", "label": "\u0424\u043e\u0440\u043c\u0430\u0442 \u043e\u0442\u0432\u0435\u0442\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u043e\u0440\u043c\u0430\u0442 \u043e\u0442\u0432\u0435\u0442\u0430", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 1}, {"id": "docs_architecture_\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0430\u044f_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "label": "\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0430\u044f \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0430\u044f \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "community": 230, "community_name": "Community 230", "source_file": "apps/docs/docs/architecture.md", "file_type": "document", "degree": 1}, {"id": "backend_api", "label": "api.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api.md", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_api_reference", "label": "API reference", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "API reference", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 9}, {"id": "backend_api_auth", "label": "Auth", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Auth", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 7}, {"id": "backend_api_post_auth_register", "label": "`POST /auth/register`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/register`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_post_auth_login", "label": "`POST /auth/login`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/login`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_post_auth_refresh", "label": "`POST /auth/refresh`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/refresh`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_post_auth_logout", "label": "`POST /auth/logout`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/logout`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_auth_me", "label": "`GET /auth/me`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /auth/me`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_patch_auth_me", "label": "`PATCH /auth/me`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`PATCH /auth/me`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_health", "label": "Health", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Health", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 2}, {"id": "backend_api_get_health", "label": "`GET /health`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /health`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_securities", "label": "Securities", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Securities", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 3}, {"id": "backend_api_get_securities_search", "label": "`GET /securities/search`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/search`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_screener", "label": "`GET /securities/screener`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/screener`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_shares", "label": "Shares", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Shares", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 5}, {"id": "backend_api_get_securities_shares_secid", "label": "`GET /securities/shares/:secid`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/shares/:secid`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_shares_secid_marketdata", "label": "`GET /securities/shares/:secid/marketdata`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/shares/:secid/marketdata`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_shares_secid_dividends", "label": "`GET /securities/shares/:secid/dividends`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/shares/:secid/dividends`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_shares_secid_history", "label": "`GET /securities/shares/:secid/history`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/shares/:secid/history`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_bonds", "label": "Bonds", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Bonds", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 4}, {"id": "backend_api_get_securities_bonds_secid", "label": "`GET /securities/bonds/:secid`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/bonds/:secid`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_bonds_secid_marketdata", "label": "`GET /securities/bonds/:secid/marketdata`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/bonds/:secid/marketdata`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_bonds_secid_history", "label": "`GET /securities/bonds/:secid/history`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/bonds/:secid/history`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_candles", "label": "Candles", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Candles", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 3}, {"id": "backend_api_get_securities_shares_secid_candles", "label": "`GET /securities/shares/:secid/candles`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/shares/:secid/candles`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_get_securities_bonds_secid_candles", "label": "`GET /securities/bonds/:secid/candles`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /securities/bonds/:secid/candles`", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "label": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_api_broker_t_bank_invest", "label": "Broker (T-Bank Invest)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker (T-Bank Invest)", "community": 75, "community_name": "Community 75", "source_file": "apps/docs/docs/backend/api.md", "file_type": "document", "degree": 1}, {"id": "backend_auth", "label": "auth.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.md", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_authentication_\u0438_authorization", "label": "Authentication \u0438 Authorization", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Authentication \u0438 Authorization", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 5}, {"id": "backend_auth_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 4}, {"id": "backend_auth_token_based_authentication", "label": "Token-based authentication", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Token-based authentication", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_\u043f\u043e\u0442\u043e\u043a", "label": "\u041f\u043e\u0442\u043e\u043a", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0442\u043e\u043a", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_api_endpoints", "label": "API endpoints", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "API endpoints", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 7}, {"id": "backend_auth_post_auth_register", "label": "`POST /auth/register`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/register`", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_post_auth_login", "label": "`POST /auth/login`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/login`", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_post_auth_refresh", "label": "`POST /auth/refresh`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/refresh`", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_post_auth_logout", "label": "`POST /auth/logout`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /auth/logout`", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_get_auth_me", "label": "`GET /auth/me`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /auth/me`", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_patch_auth_me", "label": "`PATCH /auth/me`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`PATCH /auth/me`", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_authorization_rbac", "label": "Authorization (RBAC)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Authorization (RBAC)", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_auth_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "community": 138, "community_name": "Community 138", "source_file": "apps/docs/docs/backend/auth.md", "file_type": "document", "degree": 1}, {"id": "backend_caching", "label": "caching.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "caching.md", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u041a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 7}, {"id": "backend_caching_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_cache", "label": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f cache", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f cache", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_caching_\u043f\u043e\u0442\u043e\u043a_cache", "label": "\u041f\u043e\u0442\u043e\u043a cache", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0442\u043e\u043a cache", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_caching_cacheservice", "label": "CacheService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheService", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_caching_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f_cachemodule", "label": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f CacheModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f CacheModule", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_caching_ttl_\u043f\u043e_\u0442\u0438\u043f\u0430\u043c_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "TTL \u043f\u043e \u0442\u0438\u043f\u0430\u043c \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TTL \u043f\u043e \u0442\u0438\u043f\u0430\u043c \u0434\u0430\u043d\u043d\u044b\u0445", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_caching_t_bank_cache", "label": "T-Bank cache", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "T-Bank cache", "community": 215, "community_name": "Community 215", "source_file": "apps/docs/docs/backend/caching.md", "file_type": "document", "degree": 1}, {"id": "backend_configuration", "label": "configuration.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "configuration.md", "community": 267, "community_name": "Community 267", "source_file": "apps/docs/docs/backend/configuration.md", "file_type": "document", "degree": 1}, {"id": "backend_configuration_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "label": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "community": 267, "community_name": "Community 267", "source_file": "apps/docs/docs/backend/configuration.md", "file_type": "document", "degree": 3}, {"id": "backend_configuration_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "community": 267, "community_name": "Community 267", "source_file": "apps/docs/docs/backend/configuration.md", "file_type": "document", "degree": 1}, {"id": "backend_configuration_\u0444\u0430\u0439\u043b_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438", "label": "\u0424\u0430\u0439\u043b \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438", "community": 267, "community_name": "Community 267", "source_file": "apps/docs/docs/backend/configuration.md", "file_type": "document", "degree": 1}, {"id": "backend_database", "label": "database.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "database.md", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "\u0421\u0445\u0435\u043c\u0430 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0445\u0435\u043c\u0430 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 6}, {"id": "backend_database_\u043e\u0431\u0437\u043e\u0440", "label": "\u041e\u0431\u0437\u043e\u0440", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_\u0441\u0445\u0435\u043c\u0430", "label": "\u0421\u0445\u0435\u043c\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0445\u0435\u043c\u0430", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "label": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 4}, {"id": "backend_database_user", "label": "User", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_portfolio", "label": "Portfolio", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_position", "label": "Position", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Position", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_prisma_client", "label": "Prisma Client", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Prisma Client", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_database_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "community": 188, "community_name": "Community 188", "source_file": "apps/docs/docs/backend/database.md", "file_type": "document", "degree": 1}, {"id": "backend_modules", "label": "modules.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "modules.md", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_\u043c\u043e\u0434\u0443\u043b\u0438_backend", "label": "\u041c\u043e\u0434\u0443\u043b\u0438 backend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u043e\u0434\u0443\u043b\u0438 backend", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 3}, {"id": "backend_modules_\u0433\u0440\u0430\u0444_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "label": "\u0413\u0440\u0430\u0444 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439 \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0440\u0430\u0444 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439 \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 3}, {"id": "backend_modules_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_appmodule", "label": "\u0418\u043c\u043f\u043e\u0440\u0442\u044b `AppModule`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043c\u043f\u043e\u0440\u0442\u044b `AppModule`", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438_\u043e\u0442_\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432", "label": "\u0417\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "label": "\u0421\u043f\u0438\u0441\u043e\u043a \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043f\u0438\u0441\u043e\u043a \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 12}, {"id": "backend_modules_prismamodule", "label": "PrismaModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrismaModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_cachemodule", "label": "CacheModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_moexclientmodule", "label": "MoexClientModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexClientModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_healthmodule", "label": "HealthModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_authmodule", "label": "AuthModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_securitiesmodule", "label": "SecuritiesModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SecuritiesModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_sharesmodule", "label": "SharesModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SharesModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_bondsmodule", "label": "BondsModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BondsModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_candlesmodule", "label": "CandlesModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CandlesModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_portfoliomodule", "label": "PortfolioModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_modules_tbankmodule", "label": "TBankModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TBankModule", "community": 126, "community_name": "Community 126", "source_file": "apps/docs/docs/backend/modules.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client", "label": "moex-client.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moex-client.md", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_moex_client", "label": "MOEX Client", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MOEX Client", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 8}, {"id": "backend_moex_client_\u043e\u0431\u0437\u043e\u0440", "label": "\u041e\u0431\u0437\u043e\u0440", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_rate_limiting", "label": "Rate limiting", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rate limiting", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_circuit_breaker", "label": "Circuit breaker", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Circuit breaker", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_\u043c\u0435\u0442\u043e\u0434_request", "label": "\u041c\u0435\u0442\u043e\u0434 request", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0435\u0442\u043e\u0434 request", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_\u0440\u0430\u0437\u0431\u043e\u0440_response", "label": "\u0420\u0430\u0437\u0431\u043e\u0440 response", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0431\u043e\u0440 response", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435_\u043c\u0435\u0442\u043e\u0434\u044b_moex", "label": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u0435\u0442\u043e\u0434\u044b MOEX", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u0435\u0442\u043e\u0434\u044b MOEX", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_moex_client_moex_iss_types", "label": "MOEX ISS types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MOEX ISS types", "community": 201, "community_name": "Community 201", "source_file": "apps/docs/docs/backend/moex-client.md", "file_type": "document", "degree": 1}, {"id": "backend_overview", "label": "overview.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "overview.md", "community": 257, "community_name": "Community 257", "source_file": "apps/docs/docs/backend/overview.md", "file_type": "document", "degree": 1}, {"id": "backend_overview_\u043e\u0431\u0437\u043e\u0440_backend", "label": "\u041e\u0431\u0437\u043e\u0440 backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440 backend", "community": 257, "community_name": "Community 257", "source_file": "apps/docs/docs/backend/overview.md", "file_type": "document", "degree": 4}, {"id": "backend_overview_\u0442\u043e\u0447\u043a\u0430_\u0432\u0445\u043e\u0434\u0430", "label": "\u0422\u043e\u0447\u043a\u0430 \u0432\u0445\u043e\u0434\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u043e\u0447\u043a\u0430 \u0432\u0445\u043e\u0434\u0430", "community": 257, "community_name": "Community 257", "source_file": "apps/docs/docs/backend/overview.md", "file_type": "document", "degree": 1}, {"id": "backend_overview_\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439_\u043c\u043e\u0434\u0443\u043b\u044c", "label": "\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043c\u043e\u0434\u0443\u043b\u044c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043c\u043e\u0434\u0443\u043b\u044c", "community": 257, "community_name": "Community 257", "source_file": "apps/docs/docs/backend/overview.md", "file_type": "document", "degree": 1}, {"id": "backend_overview_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "label": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "community": 257, "community_name": "Community 257", "source_file": "apps/docs/docs/backend/overview.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio", "label": "portfolio.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "portfolio.md", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_portfoliomodule", "label": "PortfolioModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioModule", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 11}, {"id": "backend_portfolio_\u0440\u0443\u0447\u043d\u044b\u0435_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438_\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0435_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "label": "\u0420\u0443\u0447\u043d\u044b\u0435 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438 \u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0435 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0443\u0447\u043d\u044b\u0435 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438 \u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0435 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u043e\u0431\u0437\u043e\u0440", "label": "\u041e\u0431\u0437\u043e\u0440", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_api_endpoints", "label": "API endpoints", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "API endpoints", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "\u0414\u043e\u043c\u0435\u043d\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043c\u0435\u043d\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_analytics_\u0438_pnl", "label": "Analytics \u0438 PnL", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Analytics \u0438 PnL", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u0442\u0438\u043f\u0430_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430", "label": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d\u044b_\u0430\u043a\u0446\u0438\u0439", "label": "\u0420\u0430\u0441\u0447\u0451\u0442 \u0446\u0435\u043d\u044b \u0430\u043a\u0446\u0438\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0447\u0451\u0442 \u0446\u0435\u043d\u044b \u0430\u043a\u0446\u0438\u0439", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d\u044b_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "\u0420\u0430\u0441\u0447\u0451\u0442 \u0446\u0435\u043d\u044b \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0447\u0451\u0442 \u0446\u0435\u043d\u044b \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u0432\u044b\u0431\u043e\u0440_moex_board", "label": "\u0412\u044b\u0431\u043e\u0440 MOEX board", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u044b\u0431\u043e\u0440 MOEX board", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_portfolio_\u0431\u0443\u0434\u0443\u0449\u0438\u0435_\u044d\u0442\u0430\u043f\u044b", "label": "\u0411\u0443\u0434\u0443\u0449\u0438\u0435 \u044d\u0442\u0430\u043f\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0443\u0434\u0443\u0449\u0438\u0435 \u044d\u0442\u0430\u043f\u044b", "community": 163, "community_name": "Community 163", "source_file": "apps/docs/docs/backend/portfolio.md", "file_type": "document", "degree": 1}, {"id": "backend_securities", "label": "securities.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "securities.md", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 1}, {"id": "backend_securities_securitiesmodule", "label": "SecuritiesModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SecuritiesModule", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 4}, {"id": "backend_securities_\u043e\u0431\u0437\u043e\u0440", "label": "\u041e\u0431\u0437\u043e\u0440", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 1}, {"id": "backend_securities_search_api", "label": "Search API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Search API", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 1}, {"id": "backend_securities_security_screener", "label": "Security Screener", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Security Screener", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 3}, {"id": "backend_securities_query_parameters", "label": "Query parameters", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query parameters", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 1}, {"id": "backend_securities_\u0434\u0435\u0442\u0430\u043b\u0438_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u0414\u0435\u0442\u0430\u043b\u0438 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0435\u0442\u0430\u043b\u0438 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 228, "community_name": "Community 228", "source_file": "apps/docs/docs/backend/securities.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest", "label": "tbank-invest.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tbank-invest.md", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_t_bank_invest", "label": "T-Bank Invest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "T-Bank Invest", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 9}, {"id": "backend_tbank_invest_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b", "label": "\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_backend_endpoints", "label": "Backend endpoints", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend endpoints", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_\u043f\u043e\u0442\u043e\u043a_\u0434\u0430\u043d\u043d\u044b\u0445_\u0434\u043b\u044f_events", "label": "\u041f\u043e\u0442\u043e\u043a \u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f `/events`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0442\u043e\u043a \u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f `/events`", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_\u043c\u0435\u0442\u043e\u0434\u044b_t_bank", "label": "\u041c\u0435\u0442\u043e\u0434\u044b T-Bank", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0435\u0442\u043e\u0434\u044b T-Bank", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0438_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "label": "\u041a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_rate_limiting", "label": "Rate limiting", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rate limiting", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "backend_tbank_invest_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "community": 189, "community_name": "Community 189", "source_file": "apps/docs/docs/backend/tbank-invest.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility", "label": "accessibility.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "accessibility.md", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c_accessibility", "label": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c (Accessibility)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c (Accessibility)", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 3}, {"id": "design_system_accessibility_\u0446\u0435\u043b\u0435\u0432\u043e\u0439_\u0443\u0440\u043e\u0432\u0435\u043d\u044c", "label": "\u0426\u0435\u043b\u0435\u0432\u043e\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u0435\u0432\u043e\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 9}, {"id": "design_system_accessibility_iconbutton", "label": "IconButton", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButton", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_dialog", "label": "Dialog", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_progress", "label": "Progress", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_pricechange", "label": "PriceChange", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_datatable", "label": "DataTable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTable", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_skeleton", "label": "Skeleton", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_alert", "label": "Alert", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alert", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_accessibility_loadingstate", "label": "LoadingState", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState", "community": 164, "community_name": "Community 164", "source_file": "apps/docs/docs/design-system/accessibility.md", "file_type": "document", "degree": 1}, {"id": "design_system_components", "label": "components.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "components.md", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 2}, {"id": "design_system_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 3}, {"id": "design_system_components_\u043c\u0430\u0442\u0440\u0438\u0446\u0430_\u0437\u0430\u0434\u0430\u0447\u0430_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442", "label": "\u041c\u0430\u0442\u0440\u0438\u0446\u0430 \u00ab\u0437\u0430\u0434\u0430\u0447\u0430 \u2192 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u00bb", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0430\u0442\u0440\u0438\u0446\u0430 \u00ab\u0437\u0430\u0434\u0430\u0447\u0430 \u2192 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u00bb", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 26}, {"id": "design_system_components_text", "label": "Text", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Text", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_heading", "label": "Heading", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Heading", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_link", "label": "Link", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Link", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_button", "label": "Button", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Button", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_iconbutton", "label": "IconButton", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IconButton", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_textfield", "label": "TextField", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TextField", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_select", "label": "Select", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Select", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_checkbox", "label": "Checkbox", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkbox", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_surface", "label": "Surface", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Surface", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_card", "label": "Card", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Card", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_chip", "label": "Chip", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Chip", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_badge", "label": "Badge", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_alert", "label": "Alert", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alert", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_dialog", "label": "Dialog", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_skeleton", "label": "Skeleton", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_progress", "label": "Progress", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_datatable", "label": "DataTable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTable", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_money", "label": "Money", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Money", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_metric", "label": "Metric", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Metric", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_pricechange", "label": "PriceChange", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_formfield", "label": "FormField", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_filterbar", "label": "FilterBar", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBar", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_emptystate", "label": "EmptyState", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_errorstate", "label": "ErrorState", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorState", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_components_loadingstate", "label": "LoadingState", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState", "community": 86, "community_name": "Community 86", "source_file": "apps/docs/docs/design-system/components.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundations", "label": "foundations.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "foundations.md", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 2}, {"id": "design_system_foundations_\u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u043a\u0435\u043d\u044b", "label": "\u0424\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u0442\u043e\u043a\u0435\u043d\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u0442\u043e\u043a\u0435\u043d\u044b", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 4}, {"id": "design_system_foundations_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 4}, {"id": "design_system_foundations_primitives", "label": "Primitives", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Primitives", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundations_semantic", "label": "Semantic", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Semantic", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundations_component", "label": "Component", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Component", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundations_\u0440\u0435\u0437\u043e\u043b\u0432\u0435\u0440", "label": "\u0420\u0435\u0437\u043e\u043b\u0432\u0435\u0440", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0437\u043e\u043b\u0432\u0435\u0440", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundations_\u0442\u043e\u043a\u0435\u043d\u044b_v1", "label": "\u0422\u043e\u043a\u0435\u043d\u044b v1", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u043e\u043a\u0435\u043d\u044b v1", "community": 219, "community_name": "Community 219", "source_file": "apps/docs/docs/design-system/foundations.md", "file_type": "document", "degree": 1}, {"id": "design_system_governance", "label": "governance.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "governance.md", "community": 243, "community_name": "Community 243", "source_file": "apps/docs/docs/design-system/governance.md", "file_type": "document", "degree": 1}, {"id": "design_system_governance_\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_governance", "label": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 (Governance)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 (Governance)", "community": 243, "community_name": "Community 243", "source_file": "apps/docs/docs/design-system/governance.md", "file_type": "document", "degree": 5}, {"id": "design_system_governance_\u0440\u0435\u0436\u0438\u043c_v1", "label": "\u0420\u0435\u0436\u0438\u043c v1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0436\u0438\u043c v1", "community": 243, "community_name": "Community 243", "source_file": "apps/docs/docs/design-system/governance.md", "file_type": "document", "degree": 1}, {"id": "design_system_governance_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "community": 243, "community_name": "Community 243", "source_file": "apps/docs/docs/design-system/governance.md", "file_type": "document", "degree": 1}, {"id": "design_system_governance_breaking_changes", "label": "Breaking changes", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Breaking changes", "community": 243, "community_name": "Community 243", "source_file": "apps/docs/docs/design-system/governance.md", "file_type": "document", "degree": 1}, {"id": "design_system_governance_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_mui", "label": "\u0418\u043c\u043f\u043e\u0440\u0442\u044b MUI", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043c\u043f\u043e\u0440\u0442\u044b MUI", "community": 243, "community_name": "Community 243", "source_file": "apps/docs/docs/design-system/governance.md", "file_type": "document", "degree": 1}, {"id": "design_system_overview", "label": "overview.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "overview.md", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 5}, {"id": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "label": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "community": 244, "community_name": "Community 244", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 6}, {"id": "design_system_overview_\u0447\u0442\u043e_\u044d\u0442\u043e", "label": "\u0427\u0442\u043e \u044d\u0442\u043e", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0427\u0442\u043e \u044d\u0442\u043e", "community": 244, "community_name": "Community 244", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 1}, {"id": "design_system_overview_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430_\u0442\u043e\u043a\u0435\u043d\u043e\u0432", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u0442\u043e\u043a\u0435\u043d\u043e\u0432", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u0442\u043e\u043a\u0435\u043d\u043e\u0432", "community": 244, "community_name": "Community 244", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 1}, {"id": "design_system_overview_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "community": 244, "community_name": "Community 244", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 1}, {"id": "design_system_overview_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "label": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "community": 244, "community_name": "Community 244", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 1}, {"id": "design_system_overview_adr", "label": "ADR", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR", "community": 244, "community_name": "Community 244", "source_file": "apps/docs/docs/design-system/overview.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns", "label": "patterns.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "patterns.md", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "label": "\u041f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 5}, {"id": "design_system_patterns_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0434\u0430\u043d\u043d\u044b\u0435", "label": "\u0424\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 4}, {"id": "design_system_patterns_money", "label": "Money", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Money", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_pricechange", "label": "PriceChange", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChange", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_metric", "label": "Metric", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Metric", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_\u0444\u043e\u0440\u043c\u044b", "label": "\u0424\u043e\u0440\u043c\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u043e\u0440\u043c\u044b", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 3}, {"id": "design_system_patterns_formfield", "label": "FormField", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_filterbar", "label": "FilterBar", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBar", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "label": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 2}, {"id": "design_system_patterns_emptystate_errorstate_loadingstate", "label": "EmptyState, ErrorState, LoadingState", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EmptyState, ErrorState, LoadingState", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "design_system_patterns_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "label": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 2}, {"id": "design_system_patterns_datatable", "label": "DataTable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DataTable", "community": 154, "community_name": "Community 154", "source_file": "apps/docs/docs/design-system/patterns.md", "file_type": "document", "degree": 1}, {"id": "development_codegen", "label": "codegen.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "codegen.md", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 1}, {"id": "development_codegen_\u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u0434\u0430", "label": "\u0413\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u044f \u043a\u043e\u0434\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u044f \u043a\u043e\u0434\u0430", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 2}, {"id": "development_codegen_openapi_types", "label": "OpenAPI types", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "OpenAPI types", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 6}, {"id": "development_codegen_\u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0442\u0438\u043f\u044b", "label": "\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0438\u043f\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0438\u043f\u044b", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 1}, {"id": "development_codegen_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 1}, {"id": "development_codegen_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 1}, {"id": "development_codegen_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 1}, {"id": "development_codegen_\u0440\u0443\u0447\u043d\u044b\u0435_\u0442\u0438\u043f\u044b", "label": "\u0420\u0443\u0447\u043d\u044b\u0435 \u0442\u0438\u043f\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0443\u0447\u043d\u044b\u0435 \u0442\u0438\u043f\u044b", "community": 220, "community_name": "Community 220", "source_file": "apps/docs/docs/development/codegen.md", "file_type": "document", "degree": 1}, {"id": "development_commands", "label": "commands.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "commands.md", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "label": "\u041a\u043e\u043c\u0430\u043d\u0434\u044b", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u0430\u043d\u0434\u044b", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 7}, {"id": "development_commands_\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439_workspace", "label": "\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 workspace", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 workspace", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_commands_backend_workspace", "label": "Backend workspace", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend workspace", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_commands_frontend_workspace", "label": "Frontend workspace", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend workspace", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_commands_design_system_workspace", "label": "Design system workspace", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Design system workspace", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_commands_docs_workspace", "label": "Docs workspace", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Docs workspace", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_commands_\u043e\u0434\u0438\u043d_\u0442\u0435\u0441\u0442", "label": "\u041e\u0434\u0438\u043d \u0442\u0435\u0441\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0434\u0438\u043d \u0442\u0435\u0441\u0442", "community": 221, "community_name": "Community 221", "source_file": "apps/docs/docs/development/commands.md", "file_type": "document", "degree": 1}, {"id": "development_conventions", "label": "conventions.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "conventions.md", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "label": "\u0421\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u043f\u043e \u043a\u043e\u0434\u0443", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u043f\u043e \u043a\u043e\u0434\u0443", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 8}, {"id": "development_conventions_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_linting", "label": "Linting", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Linting", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435_\u0432_backend", "label": "\u0418\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 backend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 backend", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_imports_\u0432_backend", "label": "Imports \u0432 backend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Imports \u0432 backend", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_imports_\u0432_frontend", "label": "Imports \u0432 frontend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Imports \u0432 frontend", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_typescript", "label": "TypeScript", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TypeScript", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_conventions_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430_backend", "label": "\u0421\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430 backend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430 backend", "community": 204, "community_name": "Community 204", "source_file": "apps/docs/docs/development/conventions.md", "file_type": "document", "degree": 1}, {"id": "development_testing", "label": "testing.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "testing.md", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 7}, {"id": "development_testing_\u0442\u0435\u0441\u0442\u044b_backend", "label": "\u0422\u0435\u0441\u0442\u044b backend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u044b backend", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 4}, {"id": "development_testing_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u0432\u0441\u0435_\u0442\u0435\u0441\u0442\u044b", "label": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0432\u0441\u0435 \u0442\u0435\u0441\u0442\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0432\u0441\u0435 \u0442\u0435\u0441\u0442\u044b", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u043e\u0434\u0438\u043d_\u0442\u0435\u0441\u0442", "label": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043e\u0434\u0438\u043d \u0442\u0435\u0441\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043e\u0434\u0438\u043d \u0442\u0435\u0441\u0442", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_watch_mode", "label": "Watch mode", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Watch mode", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "\u0422\u0435\u0441\u0442\u043e\u0432\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u043e\u0432\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "label": "\u0422\u0435\u0441\u0442\u044b frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u044b frontend", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 6}, {"id": "development_testing_\u0437\u0430\u043f\u0443\u0441\u043a", "label": "\u0417\u0430\u043f\u0443\u0441\u043a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u043f\u0443\u0441\u043a", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_helpers_src_shared_lib_test", "label": "Helpers (`src/shared/lib/test/`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Helpers (`src/shared/lib/test/`)", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u0448\u0430\u0431\u043b\u043e\u043d\u044b", "label": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u043a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u0438", "label": "\u041a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u0438", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u043f\u043e\u043a\u0440\u044b\u0442\u0438\u0435", "label": "\u041f\u043e\u043a\u0440\u044b\u0442\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043a\u0440\u044b\u0442\u0438\u0435", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_\u0442\u0435\u0441\u0442\u044b_design_system", "label": "\u0422\u0435\u0441\u0442\u044b design system", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u044b design system", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_storybook_browser_tests", "label": "Storybook browser tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Storybook browser tests", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "development_testing_live_moex_integration_tests", "label": "Live MOEX integration tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Live MOEX integration tests", "community": 135, "community_name": "Community 135", "source_file": "apps/docs/docs/development/testing.md", "file_type": "document", "degree": 1}, {"id": "frontend_api_client", "label": "api-client.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api-client.md", "community": 247, "community_name": "Community 247", "source_file": "apps/docs/docs/frontend/api-client.md", "file_type": "document", "degree": 1}, {"id": "frontend_api_client_api_client", "label": "API client", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API client", "community": 247, "community_name": "Community 247", "source_file": "apps/docs/docs/frontend/api-client.md", "file_type": "document", "degree": 5}, {"id": "frontend_api_client_\u043a\u043b\u0438\u0435\u043d\u0442_shared_api_kyclient_ts", "label": "\u041a\u043b\u0438\u0435\u043d\u0442 (`shared/api/kyClient.ts`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043b\u0438\u0435\u043d\u0442 (`shared/api/kyClient.ts`)", "community": 247, "community_name": "Community 247", "source_file": "apps/docs/docs/frontend/api-client.md", "file_type": "document", "degree": 1}, {"id": "frontend_api_client_public_api_shared_api_index_ts", "label": "Public API (`shared/api/index.ts`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Public API (`shared/api/index.ts`)", "community": 247, "community_name": "Community 247", "source_file": "apps/docs/docs/frontend/api-client.md", "file_type": "document", "degree": 1}, {"id": "frontend_api_client_api_functions", "label": "API functions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "API functions", "community": 247, "community_name": "Community 247", "source_file": "apps/docs/docs/frontend/api-client.md", "file_type": "document", "degree": 1}, {"id": "frontend_api_client_\u0442\u0438\u043f\u044b", "label": "\u0422\u0438\u043f\u044b", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0438\u043f\u044b", "community": 247, "community_name": "Community 247", "source_file": "apps/docs/docs/frontend/api-client.md", "file_type": "document", "degree": 1}, {"id": "frontend_components", "label": "components.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "components.md", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 8}, {"id": "frontend_components_layout_app_layouts_applayout_tsx_legacy_shim_components_layout_tsx", "label": "Layout (`app/layouts/AppLayout.tsx`, legacy shim: `components/Layout.tsx`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout (`app/layouts/AppLayout.tsx`, legacy shim: `components/Layout.tsx`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_searchbar_widgets_search_bar_ui_searchbar_tsx_public_api_widgets_search_bar", "label": "SearchBar (`widgets/search-bar/ui/SearchBar.tsx`, public API: `widgets/search-bar`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar (`widgets/search-bar/ui/SearchBar.tsx`, public API: `widgets/search-bar`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_pricechart_widgets_price_chart_ui_pricechart_tsx_public_api_widgets_price_chart", "label": "PriceChart (`widgets/price-chart/ui/PriceChart.tsx`, public API: `widgets/price-chart`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceChart (`widgets/price-chart/ui/PriceChart.tsx`, public API: `widgets/price-chart`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_stockdetails_widgets_stock_details_ui_stockdetails_tsx_public_api_widgets_stock_details", "label": "StockDetails (`widgets/stock-details/ui/StockDetails.tsx`, public API: `widgets/stock-details`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "StockDetails (`widgets/stock-details/ui/StockDetails.tsx`, public API: `widgets/stock-details`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_bonddetails_widgets_bond_details_ui_bonddetails_tsx_public_api_widgets_bond_details", "label": "BondDetails (`widgets/bond-details/ui/BondDetails.tsx`, public API: `widgets/bond-details`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BondDetails (`widgets/bond-details/ui/BondDetails.tsx`, public API: `widgets/bond-details`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_dividendstable_widgets_dividends_table_ui_dividendstable_tsx_public_api_widgets_dividends_table", "label": "DividendsTable (`widgets/dividends-table/ui/DividendsTable.tsx`, public API: `widgets/dividends-table`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DividendsTable (`widgets/dividends-table/ui/DividendsTable.tsx`, public API: `widgets/dividends-table`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_components_brokereventsoverview_widgets_broker_events_overview_ui_brokereventsoverview_tsx_public_api_widgets_broker_events_overview", "label": "BrokerEventsOverview (`widgets/broker-events-overview/ui/BrokerEventsOverview.tsx`, public API: `widgets/broker-events-overview`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerEventsOverview (`widgets/broker-events-overview/ui/BrokerEventsOverview.tsx`, public API: `widgets/broker-events-overview`)", "community": 205, "community_name": "Community 205", "source_file": "apps/docs/docs/frontend/components.md", "file_type": "document", "degree": 1}, {"id": "frontend_hooks", "label": "hooks.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hooks.md", "community": 250, "community_name": "Community 250", "source_file": "apps/docs/docs/frontend/hooks.md", "file_type": "document", "degree": 1}, {"id": "frontend_hooks_\u0445\u0443\u043a\u0438", "label": "\u0425\u0443\u043a\u0438", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0425\u0443\u043a\u0438", "community": 250, "community_name": "Community 250", "source_file": "apps/docs/docs/frontend/hooks.md", "file_type": "document", "degree": 5}, {"id": "frontend_hooks_public_api", "label": "Public API", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Public API", "community": 250, "community_name": "Community 250", "source_file": "apps/docs/docs/frontend/hooks.md", "file_type": "document", "degree": 1}, {"id": "frontend_hooks_test_helpers", "label": "Test helpers", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Test helpers", "community": 250, "community_name": "Community 250", "source_file": "apps/docs/docs/frontend/hooks.md", "file_type": "document", "degree": 1}, {"id": "frontend_hooks_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f_query", "label": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f Query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f Query", "community": 250, "community_name": "Community 250", "source_file": "apps/docs/docs/frontend/hooks.md", "file_type": "document", "degree": 1}, {"id": "frontend_hooks_\u043f\u0430\u0442\u0442\u0435\u0440\u043d_hook", "label": "\u041f\u0430\u0442\u0442\u0435\u0440\u043d hook", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0430\u0442\u0442\u0435\u0440\u043d hook", "community": 250, "community_name": "Community 250", "source_file": "apps/docs/docs/frontend/hooks.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview", "label": "overview.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "overview.md", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_\u043e\u0431\u0437\u043e\u0440_frontend", "label": "\u041e\u0431\u0437\u043e\u0440 frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440 frontend", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 4}, {"id": "frontend_overview_\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0441\u0442\u0435\u043a", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0435\u043a", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0435\u043a", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "label": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "label": "FSD-\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD-\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 8}, {"id": "frontend_overview_app_\u0441\u043b\u043e\u0439", "label": "app-\u0441\u043b\u043e\u0439", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "app-\u0441\u043b\u043e\u0439", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_runtime_config", "label": "Runtime config", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Runtime config", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_entities", "label": "entities", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "entities", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_widgets", "label": "widgets", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "widgets", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_test_helpers", "label": "test helpers", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test helpers", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_pages", "label": "pages", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pages", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_overview_features", "label": "features", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "features", "community": 170, "community_name": "Community 170", "source_file": "apps/docs/docs/frontend/overview.md", "file_type": "document", "degree": 1}, {"id": "frontend_routes", "label": "routes.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "routes.md", "community": 272, "community_name": "Community 272", "source_file": "apps/docs/docs/frontend/routes.md", "file_type": "document", "degree": 1}, {"id": "frontend_routes_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u044b", "label": "\u041c\u0430\u0440\u0448\u0440\u0443\u0442\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0430\u0440\u0448\u0440\u0443\u0442\u044b", "community": 272, "community_name": "Community 272", "source_file": "apps/docs/docs/frontend/routes.md", "file_type": "document", "degree": 3}, {"id": "frontend_routes_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043e\u0432", "label": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043e\u0432", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043e\u0432", "community": 272, "community_name": "Community 272", "source_file": "apps/docs/docs/frontend/routes.md", "file_type": "document", "degree": 1}, {"id": "frontend_routes_\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "community": 272, "community_name": "Community 272", "source_file": "apps/docs/docs/frontend/routes.md", "file_type": "document", "degree": 1}, {"id": "frontend_styling", "label": "styling.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "styling.md", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/frontend/styling.md", "file_type": "document", "degree": 2}, {"id": "frontend_styling_\u0441\u0442\u0438\u043b\u0438", "label": "\u0421\u0442\u0438\u043b\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0438\u043b\u0438", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/frontend/styling.md", "file_type": "document", "degree": 4}, {"id": "frontend_styling_\u043f\u043e\u0434\u0445\u043e\u0434", "label": "\u041f\u043e\u0434\u0445\u043e\u0434", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0434\u0445\u043e\u0434", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/frontend/styling.md", "file_type": "document", "degree": 1}, {"id": "frontend_styling_legacy_css_custom_properties", "label": "Legacy: CSS custom properties", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Legacy: CSS custom properties", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/frontend/styling.md", "file_type": "document", "degree": 1}, {"id": "frontend_styling_css_custom_properties", "label": "CSS custom properties", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS custom properties", "community": 202, "community_name": "Community 202", "source_file": "apps/docs/docs/frontend/styling.md", "file_type": "document", "degree": 1}, {"id": "docs_getting_started", "label": "getting-started.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getting-started.md", "community": 245, "community_name": "Community 245", "source_file": "apps/docs/docs/getting-started.md", "file_type": "document", "degree": 1}, {"id": "docs_getting_started_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "label": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0441\u0442\u0430\u0440\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0441\u0442\u0430\u0440\u0442", "community": 245, "community_name": "Community 245", "source_file": "apps/docs/docs/getting-started.md", "file_type": "document", "degree": 5}, {"id": "docs_getting_started_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 245, "community_name": "Community 245", "source_file": "apps/docs/docs/getting-started.md", "file_type": "document", "degree": 1}, {"id": "docs_getting_started_\u0437\u0430\u043f\u0443\u0441\u043a_\u0434\u043b\u044f_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "\u0417\u0430\u043f\u0443\u0441\u043a \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u043f\u0443\u0441\u043a \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "community": 245, "community_name": "Community 245", "source_file": "apps/docs/docs/getting-started.md", "file_type": "document", "degree": 1}, {"id": "docs_getting_started_docker", "label": "Docker", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Docker", "community": 245, "community_name": "Community 245", "source_file": "apps/docs/docs/getting-started.md", "file_type": "document", "degree": 1}, {"id": "docs_getting_started_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 245, "community_name": "Community 245", "source_file": "apps/docs/docs/getting-started.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_ci", "label": "ci.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ci.md", "community": 273, "community_name": "Community 273", "source_file": "apps/docs/docs/infrastructure/ci.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_ci_ci_cd", "label": "CI/CD", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CI/CD", "community": 273, "community_name": "Community 273", "source_file": "apps/docs/docs/infrastructure/ci.md", "file_type": "document", "degree": 3}, {"id": "infrastructure_ci_ci_pipeline", "label": "CI pipeline", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CI pipeline", "community": 273, "community_name": "Community 273", "source_file": "apps/docs/docs/infrastructure/ci.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_ci_jobs", "label": "Jobs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Jobs", "community": 273, "community_name": "Community 273", "source_file": "apps/docs/docs/infrastructure/ci.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker", "label": "docker.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "docker.md", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker_docker", "label": "Docker", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Docker", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 5}, {"id": "infrastructure_docker_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker_\u0441\u0435\u0440\u0432\u0438\u0441\u044b", "label": "\u0421\u0435\u0440\u0432\u0438\u0441\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0435\u0440\u0432\u0438\u0441\u044b", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 4}, {"id": "infrastructure_docker_backend_dockerfile_backend", "label": "Backend (`Dockerfile.backend`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (`Dockerfile.backend`)", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker_frontend_dockerfile_frontend", "label": "Frontend (`Dockerfile.frontend`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (`Dockerfile.frontend`)", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f_nginx_nginx_conf", "label": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f Nginx (`nginx.conf`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f Nginx (`nginx.conf`)", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker_docker_compose_docker_compose_yml", "label": "Docker Compose (`docker-compose.yml`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Docker Compose (`docker-compose.yml`)", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "infrastructure_docker_\u0437\u0430\u043f\u0443\u0441\u043a", "label": "\u0417\u0430\u043f\u0443\u0441\u043a", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u043f\u0443\u0441\u043a", "community": 210, "community_name": "Community 210", "source_file": "apps/docs/docs/infrastructure/docker.md", "file_type": "document", "degree": 1}, {"id": "docs_intro", "label": "intro.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "intro.md", "community": 261, "community_name": "Community 261", "source_file": "apps/docs/docs/intro.md", "file_type": "document", "degree": 1}, {"id": "docs_intro_moexvibe", "label": "MoexVibe", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibe", "community": 261, "community_name": "Community 261", "source_file": "apps/docs/docs/intro.md", "file_type": "document", "degree": 4}, {"id": "docs_intro_\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0441\u0442\u0435\u043a", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0435\u043a", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0435\u043a", "community": 261, "community_name": "Community 261", "source_file": "apps/docs/docs/intro.md", "file_type": "document", "degree": 1}, {"id": "docs_intro_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "label": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "community": 261, "community_name": "Community 261", "source_file": "apps/docs/docs/intro.md", "file_type": "document", "degree": 1}, {"id": "docs_intro_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "label": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "community": 261, "community_name": "Community 261", "source_file": "apps/docs/docs/intro.md", "file_type": "document", "degree": 1}, {"id": "test_readme", "label": "README.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "test_readme_frontend_testing_conventions", "label": "Frontend Testing Conventions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Testing Conventions", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 4}, {"id": "test_readme_helpers", "label": "Helpers", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Helpers", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 5}, {"id": "test_readme_renderwithproviders_test_utils_tsx", "label": "renderWithProviders (`test-utils.tsx`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithProviders (`test-utils.tsx`)", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "test_readme_plain_render", "label": "Plain render", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Plain render", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "test_readme_testsessionprovider_testsessionprovider_tsx", "label": "TestSessionProvider (`TestSessionProvider.tsx`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestSessionProvider (`TestSessionProvider.tsx`)", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "test_readme_factories_factories_ts", "label": "Factories (`factories.ts`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Factories (`factories.ts`)", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "test_readme_rules", "label": "Rules", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rules", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "test_readme_msw", "label": "MSW", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MSW", "community": 212, "community_name": "Community 212", "source_file": "apps/frontend/src/shared/lib/test/README.md", "file_type": "document", "degree": 1}, {"id": "epics_authentication", "label": "Authentication.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Authentication.md", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/Authentication.md", "file_type": "document", "degree": 2}, {"id": "epics_authentication_\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/Authentication.md", "file_type": "document", "degree": 1}, {"id": "epics_brokerportfolio", "label": "BrokerPortfolio.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BrokerPortfolio.md", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 13}, {"id": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "label": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c \u0431\u0440\u043e\u043a\u0435\u0440\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c \u0431\u0440\u043e\u043a\u0435\u0440\u0430", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 6}, {"id": "epics_brokerportfolio_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 1}, {"id": "epics_brokerportfolio_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f_\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c", "label": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 1}, {"id": "epics_brokerportfolio_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u044d\u043f\u0438\u043a\u0430", "label": "\u0413\u0440\u0430\u043d\u0438\u0446\u044b \u044d\u043f\u0438\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0440\u0430\u043d\u0438\u0446\u044b \u044d\u043f\u0438\u043a\u0430", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 1}, {"id": "epics_brokerportfolio_features", "label": "Features", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Features", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 1}, {"id": "epics_brokerportfolio_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0439_\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f_\u044d\u043f\u0438\u043a\u0430", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0439 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u044d\u043f\u0438\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0439 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u044d\u043f\u0438\u043a\u0430", "community": 116, "community_name": "Community 116", "source_file": "docs/epics/BrokerPortfolio.md", "file_type": "document", "degree": 1}, {"id": "epics_devops", "label": "DevOps.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DevOps.md", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/DevOps.md", "file_type": "document", "degree": 4}, {"id": "epics_devops_developer_operations", "label": "Developer Operations", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Developer Operations", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/DevOps.md", "file_type": "document", "degree": 1}, {"id": "epics_documentation", "label": "Documentation.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Documentation.md", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/Documentation.md", "file_type": "document", "degree": 4}, {"id": "epics_documentation_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/Documentation.md", "file_type": "document", "degree": 1}, {"id": "epics_frontenddebtbacklog", "label": "FrontendDebtBacklog.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FrontendDebtBacklog.md", "community": 146, "community_name": "Community 146", "source_file": "docs/epics/FrontendDebtBacklog.md", "file_type": "document", "degree": 6}, {"id": "epics_frontenddebtbacklog_frontend_debt_backlog", "label": "Frontend Debt Backlog", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Debt Backlog", "community": 146, "community_name": "Community 146", "source_file": "docs/epics/FrontendDebtBacklog.md", "file_type": "document", "degree": 1}, {"id": "epics_portfoliodashboard", "label": "PortfolioDashboard.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PortfolioDashboard.md", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/PortfolioDashboard.md", "file_type": "document", "degree": 8}, {"id": "epics_portfoliodashboard_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "label": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/PortfolioDashboard.md", "file_type": "document", "degree": 3}, {"id": "epics_portfoliodashboard_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/PortfolioDashboard.md", "file_type": "document", "degree": 1}, {"id": "epics_portfoliodashboard_features", "label": "Features", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Features", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/PortfolioDashboard.md", "file_type": "document", "degree": 1}, {"id": "epics_qualityassurance", "label": "QualityAssurance.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "QualityAssurance.md", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/QualityAssurance.md", "file_type": "document", "degree": 4}, {"id": "epics_qualityassurance_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "label": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "community": 87, "community_name": "Community 87", "source_file": "docs/epics/QualityAssurance.md", "file_type": "document", "degree": 1}, {"id": "auth_system_plan", "label": "plan.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 1}, {"id": "auth_system_plan_auth_system_implementation_plan", "label": "Auth System Implementation Plan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Auth System Implementation Plan", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 6}, {"id": "auth_system_plan_task_1_backend_dependencies_prisma_init", "label": "Task 1: Backend dependencies + Prisma init", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Backend dependencies + Prisma init", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 1}, {"id": "auth_system_plan_task_2_authservice_register_login_refresh_logout_tdd", "label": "Task 2: AuthService \u2014 register, login, refresh, logout (TDD)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: AuthService \u2014 register, login, refresh, logout (TDD)", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 1}, {"id": "auth_system_plan_task_3_auth_guards_decorators_controller_module", "label": "Task 3: Auth guards, decorators, controller, module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Auth guards, decorators, controller, module", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 1}, {"id": "auth_system_plan_task_4_integrate_authmodule_into_app", "label": "Task 4: Integrate AuthModule into app", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Integrate AuthModule into app", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 1}, {"id": "auth_system_plan_task_5_frontend_auth_types_refactored_client", "label": "Task 5: Frontend \u2014 auth types + refactored client", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Frontend \u2014 auth types + refactored client", "community": 227, "community_name": "Community 227", "source_file": "docs/features/auth-system/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan", "label": "plan.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_implementation_plan", "label": "\u0410\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 Implementation Plan", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 Implementation Plan", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 2}, {"id": "broker_account_analytics_plan_file_structure", "label": "File Structure", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "File Structure", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 9}, {"id": "broker_account_analytics_plan_backend_new_modified", "label": "Backend (new/modified)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (new/modified)", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_frontend_new_modified", "label": "Frontend (new/modified)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (new/modified)", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_task_1_backend_dto_\u0438_\u0441\u0435\u0440\u0432\u0438\u0441_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "label": "Task 1: Backend DTO \u0438 \u0441\u0435\u0440\u0432\u0438\u0441 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Backend DTO \u0438 \u0441\u0435\u0440\u0432\u0438\u0441 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 5}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_1_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_dto", "label": "\u0428\u0430\u0433 1.1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c DTO", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 1.1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c DTO", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_1_2_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0441\u0435\u0440\u0432\u0438\u0441_brokeranalyticsservice", "label": "\u0428\u0430\u0433 1.2: \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0438\u0441 `BrokerAnalyticsService`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 1.2: \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0438\u0441 `BrokerAnalyticsService`", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_1_3_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "\u0428\u0430\u0433 1.3: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 1.3: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_1_4_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "\u0428\u0430\u0433 1.4: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 1.4: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "label": "Task 2: Backend controller, module registration \u0438 \u043a\u043e\u043d\u0444\u0438\u0433 \u043a\u0435\u0448\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Backend controller, module registration \u0438 \u043a\u043e\u043d\u0444\u0438\u0433 \u043a\u0435\u0448\u0430", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 8}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_1_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_cache_key", "label": "\u0428\u0430\u0433 2.1: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c cache key", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.1: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c cache key", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_2_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_ttl_config", "label": "\u0428\u0430\u0433 2.2: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c TTL config", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.2: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c TTL config", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_3_\u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0441\u0435\u0440\u0432\u0438\u0441_\u0432_tbankmodule", "label": "\u0428\u0430\u0433 2.3: \u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0438\u0441 \u0432 `TbankModule`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.3: \u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0438\u0441 \u0432 `TbankModule`", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_4_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_envelope_dto", "label": "\u0428\u0430\u0433 2.4: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c envelope DTO", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.4: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c envelope DTO", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_5_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_endpoint_\u0432_tbankcontroller", "label": "\u0428\u0430\u0433 2.5: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c endpoint \u0432 `TbankController`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.5: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c endpoint \u0432 `TbankController`", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_6_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "\u0428\u0430\u0433 2.6: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.6: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_2_7_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "\u0428\u0430\u0433 2.7: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2.7: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "label": "Task 3: Frontend \u2014 shared types barrel, entity API \u0438 \u0445\u0443\u043a", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Frontend \u2014 shared types barrel, entity API \u0438 \u0445\u0443\u043a", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 8}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_1_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0442\u0438\u043f_brokeranalyticsdto_\u0432_types_ts", "label": "\u0428\u0430\u0433 3.1: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0438\u043f `BrokerAnalyticsDto` \u0432 `types.ts`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.1: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0438\u043f `BrokerAnalyticsDto` \u0432 `types.ts`", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_2_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0439_\u0442\u0438\u043f_\u0432_barrel_export", "label": "\u0428\u0430\u0433 3.2: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u0432 barrel export", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.2: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u0432 barrel export", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_3_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_api_\u0444\u0443\u043d\u043a\u0446\u0438\u044e", "label": "\u0428\u0430\u0433 3.3: \u0421\u043e\u0437\u0434\u0430\u0442\u044c API \u0444\u0443\u043d\u043a\u0446\u0438\u044e", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.3: \u0421\u043e\u0437\u0434\u0430\u0442\u044c API \u0444\u0443\u043d\u043a\u0446\u0438\u044e", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_4_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0445\u0443\u043a", "label": "\u0428\u0430\u0433 3.4: \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0445\u0443\u043a", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.4: \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0445\u0443\u043a", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_5_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_barrel_export", "label": "\u0428\u0430\u0433 3.5: \u0421\u043e\u0437\u0434\u0430\u0442\u044c barrel export", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.5: \u0421\u043e\u0437\u0434\u0430\u0442\u044c barrel export", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_6_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "\u0428\u0430\u0433 3.6: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.6: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_3_7_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "\u0428\u0430\u0433 3.7: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3.7: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_task_4_frontend_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "label": "Task 4: Frontend \u2014 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Frontend \u2014 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 5}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_4_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443", "label": "\u0428\u0430\u0433 4.1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 4.1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_4_2_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_barrel", "label": "\u0428\u0430\u0433 4.2: \u0421\u043e\u0437\u0434\u0430\u0442\u044c barrel", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 4.2: \u0421\u043e\u0437\u0434\u0430\u0442\u044c barrel", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_4_3_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "\u0428\u0430\u0433 4.3: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 4.3: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_4_4_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "\u0428\u0430\u0433 4.4: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 4.4: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_task_5_frontend_\u0440\u043e\u0443\u0442_\u0438_\u0442\u0430\u0431_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "label": "Task 5: Frontend \u2014 \u0440\u043e\u0443\u0442 \u0438 \u0442\u0430\u0431 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Frontend \u2014 \u0440\u043e\u0443\u0442 \u0438 \u0442\u0430\u0431 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 5}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_5_1_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0440\u043e\u0443\u0442", "label": "\u0428\u0430\u0433 5.1: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0440\u043e\u0443\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 5.1: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0440\u043e\u0443\u0442", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_5_2_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0442\u0430\u0431_\u0432_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e", "label": "\u0428\u0430\u0433 5.2: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431 \u0432 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 5.2: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431 \u0432 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_5_3_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "\u0428\u0430\u0433 5.3: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 5.3: \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_5_4_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "\u0428\u0430\u0433 5.4: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 5.4: \u0417\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_task_6_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043b\u0438\u043d\u0442\u0430_\u0438_\u0442\u0435\u0441\u0442\u043e\u0432", "label": "Task 6: \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043b\u0438\u043d\u0442\u0430 \u0438 \u0442\u0435\u0441\u0442\u043e\u0432", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043b\u0438\u043d\u0442\u0430 \u0438 \u0442\u0435\u0441\u0442\u043e\u0432", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 4}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_6_1_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u043b\u0438\u043d\u0442_\u0438_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "\u0428\u0430\u0433 6.1: \u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043b\u0438\u043d\u0442 \u0438 \u0441\u0431\u043e\u0440\u043a\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 6.1: \u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043b\u0438\u043d\u0442 \u0438 \u0441\u0431\u043e\u0440\u043a\u0443", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_6_2_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u044b", "label": "\u0428\u0430\u0433 6.2: \u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u044b", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 6.2: \u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u044b", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_plan_\u0448\u0430\u0433_6_3_\u0435\u0441\u043b\u0438_\u0432\u0441\u0451_\u043e\u043a_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0435_\u043f\u0440\u0430\u0432\u043a\u0438_\u0438_\u0437\u0430\u043f\u0443\u0448\u0438\u0442\u044c", "label": "\u0428\u0430\u0433 6.3: \u0415\u0441\u043b\u0438 \u0432\u0441\u0451 \u043e\u043a \u2014 \u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u043a\u0438 \u0438 \u0437\u0430\u043f\u0443\u0448\u0438\u0442\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 6.3: \u0415\u0441\u043b\u0438 \u0432\u0441\u0451 \u043e\u043a \u2014 \u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u043a\u0438 \u0438 \u0437\u0430\u043f\u0443\u0448\u0438\u0442\u044c", "community": 21, "community_name": "Community 21", "source_file": "docs/features/broker-account-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec", "label": "spec.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 2}, {"id": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "\u0410\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 8}, {"id": "broker_account_analytics_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 7}, {"id": "broker_account_analytics_spec_1_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "1. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_2_endpoint", "label": "2. Endpoint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Endpoint", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_3_\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438", "label": "3. \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_4_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "label": "4. \u0410\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0410\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_5_\u0432\u043a\u043b\u0430\u0434\u043a\u0430", "label": "5. \u0412\u043a\u043b\u0430\u0434\u043a\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0412\u043a\u043b\u0430\u0434\u043a\u0430", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_6_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0438_\u043e\u0448\u0438\u0431\u043a\u0438", "label": "6. \u041f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0438 \u043e\u0448\u0438\u0431\u043a\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u041f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0438 \u043e\u0448\u0438\u0431\u043a\u0438", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_spec_\u0432\u043d\u0435_\u043e\u0431\u043b\u0430\u0441\u0442\u0438_\u0444\u0438\u0447\u0438", "label": "\u0412\u043d\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0444\u0438\u0447\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u043d\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0444\u0438\u0447\u0438", "community": 139, "community_name": "Community 139", "source_file": "docs/features/broker-account-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_tasks", "label": "tasks.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 258, "community_name": "Community 258", "source_file": "docs/features/broker-account-analytics/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_tasks_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_tasks", "label": "\u0410\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 Tasks", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 Tasks", "community": 258, "community_name": "Community 258", "source_file": "docs/features/broker-account-analytics/tasks.md", "file_type": "document", "degree": 4}, {"id": "broker_account_analytics_tasks_backend", "label": "Backend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 258, "community_name": "Community 258", "source_file": "docs/features/broker-account-analytics/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_tasks_frontend", "label": "Frontend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 258, "community_name": "Community 258", "source_file": "docs/features/broker-account-analytics/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_analytics_tasks_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 258, "community_name": "Community 258", "source_file": "docs/features/broker-account-analytics/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan", "label": "plan.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 2}, {"id": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "label": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u2014 Plan", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u2014 Plan", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 13}, {"id": "broker_account_sections_ds_migration_plan_task_1_brokeraccountlayout", "label": "Task 1: BrokerAccountLayout", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: BrokerAccountLayout", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_2_brokeraccountoverviewpage_brokersummary_brokerassetcards", "label": "Task 2: BrokerAccountOverviewPage, BrokerSummary, BrokerAssetCards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: BrokerAccountOverviewPage, BrokerSummary, BrokerAssetCards", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_3_brokeroverviewskeleton", "label": "Task 3: BrokerOverviewSkeleton", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: BrokerOverviewSkeleton", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_4_brokerallocationchart_wrap_only", "label": "Task 4: BrokerAllocationChart (wrap only)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: BrokerAllocationChart (wrap only)", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_5_brokerpositiontable_positionticker", "label": "Task 5: BrokerPositionTable, PositionTicker", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: BrokerPositionTable, PositionTicker", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_6_tableskeleton", "label": "Task 6: TableSkeleton", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: TableSkeleton", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_7_brokeroperationstable", "label": "Task 7: BrokerOperationsTable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: BrokerOperationsTable", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_8_brokerpositionspage_brokeroperationspage", "label": "Task 8: BrokerPositionsPage, BrokerOperationsPage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: BrokerPositionsPage, BrokerOperationsPage", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_9_skeletonblock_\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "label": "Task 9: SkeletonBlock \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: SkeletonBlock \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_10_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_styles_css", "label": "Task 10: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 `styles.css`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 `styles.css`", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_11_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0438_\u0441\u0431\u043e\u0440\u043a\u0430", "label": "Task 11: \u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u0441\u0431\u043e\u0440\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: \u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u0441\u0431\u043e\u0440\u043a\u0430", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_plan_task_12_\u0432\u0435\u0440\u0434\u0438\u043a\u0442_\u0438_\u0437\u0430\u043f\u0438\u0441\u043a\u0430", "label": "Task 12: \u0412\u0435\u0440\u0434\u0438\u043a\u0442 \u0438 \u0437\u0430\u043f\u0438\u0441\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 12: \u0412\u0435\u0440\u0434\u0438\u043a\u0442 \u0438 \u0437\u0430\u043f\u0438\u0441\u043a\u0430", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 3}, {"id": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 8}, {"id": "broker_account_sections_ds_migration_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0444\u0438\u0447\u0438", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0444\u0438\u0447\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0444\u0438\u0447\u0438", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec_out_of_scope", "label": "Out of scope", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Out of scope", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "\u041f\u0440\u0438\u043d\u0446\u0438\u043f\u044b \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0438\u043d\u0446\u0438\u043f\u044b \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 2}, {"id": "broker_account_sections_ds_migration_spec_\u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f_\u043e\u0442_\u043f\u043b\u0430\u043d\u0430", "label": "\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f \u043e\u0442 \u043f\u043b\u0430\u043d\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f \u043e\u0442 \u043f\u043b\u0430\u043d\u0430", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks", "label": "tasks.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 3}, {"id": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "label": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u2014 Tasks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u2014 Tasks", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 12}, {"id": "broker_account_sections_ds_migration_tasks_task_1_brokeraccountlayout", "label": "Task 1: BrokerAccountLayout", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: BrokerAccountLayout", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_2_brokeraccountoverviewpage_brokersummary_brokerassetcards", "label": "Task 2: BrokerAccountOverviewPage + BrokerSummary + BrokerAssetCards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: BrokerAccountOverviewPage + BrokerSummary + BrokerAssetCards", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_3_brokeroverviewskeleton", "label": "Task 3: BrokerOverviewSkeleton", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: BrokerOverviewSkeleton", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_4_brokerallocationchart_wrap_only", "label": "Task 4: BrokerAllocationChart (wrap only)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: BrokerAllocationChart (wrap only)", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_5_brokerpositiontable_positionticker", "label": "Task 5: BrokerPositionTable + PositionTicker", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: BrokerPositionTable + PositionTicker", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_6_tableskeleton_ds_skeleton", "label": "Task 6: TableSkeleton (DS Skeleton)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: TableSkeleton (DS Skeleton)", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_7_brokeroperationstable", "label": "Task 7: BrokerOperationsTable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: BrokerOperationsTable", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_8_brokerpositionspage_brokeroperationspage", "label": "Task 8: BrokerPositionsPage + BrokerOperationsPage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: BrokerPositionsPage + BrokerOperationsPage", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_9_skeletonblock_\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "label": "Task 9: SkeletonBlock \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: SkeletonBlock \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_10_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_styles_css", "label": "Task 10: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 `styles.css`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 `styles.css`", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_ds_migration_tasks_task_11_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "Task 11: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 36, "community_name": "Community 36", "source_file": "docs/features/broker-account-sections-ds-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan", "label": "plan.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 2}, {"id": "broker_account_sections_plan_broker_account_sections_implementation_plan", "label": "Broker Account Sections Implementation Plan", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Account Sections Implementation Plan", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 14}, {"id": "broker_account_sections_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_sdd_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 SDD-\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 SDD-\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_gate_\u043f\u0435\u0440\u0435\u0434_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "label": "Gate \u043f\u0435\u0440\u0435\u0434 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Gate \u043f\u0435\u0440\u0435\u0434 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 6}, {"id": "broker_account_sections_plan_backend_contract", "label": "Backend contract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend contract", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_frontend_routes", "label": "Frontend routes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend routes", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_data_flow", "label": "Data flow", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Data flow", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_allocation_calculation", "label": "Allocation calculation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Allocation calculation", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_operation_filter", "label": "Operation filter", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Operation filter", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_file_structure", "label": "File Structure", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "File Structure", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 4}, {"id": "broker_account_sections_plan_backend", "label": "Backend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_frontend_contract_and_pure_rules", "label": "Frontend contract and pure rules", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend contract and pure rules", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_frontend_pages_and_components", "label": "Frontend pages and components", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend pages and components", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_1_backend_portfolio_position_counts", "label": "Task 1: Backend portfolio position counts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Backend portfolio position counts", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_2_openapi_and_frontend_contract_synchronization", "label": "Task 2: OpenAPI and frontend contract synchronization", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: OpenAPI and frontend contract synchronization", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_3_pure_allocation_model_and_exact_operation_options", "label": "Task 3: Pure allocation model and exact operation options", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Pure allocation model and exact operation options", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_4_nested_account_shell_and_responsive_navigation", "label": "Task 4: Nested account shell and responsive navigation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Nested account shell and responsive navigation", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_5_overview_summary_allocation_and_recent_operations", "label": "Task 5: Overview summary, allocation and recent operations", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Overview summary, allocation and recent operations", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_6_separate_share_and_bond_pages", "label": "Task 6: Separate share and bond pages", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Separate share and bond pages", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_7_exact_operation_type_filter_page", "label": "Task 7: Exact operation-type filter page", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Exact operation-type filter page", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_task_8_full_verification_and_documentation_status", "label": "Task 8: Full verification and documentation status", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: Full verification and documentation status", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_plan_final_acceptance_mapping", "label": "Final acceptance mapping", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Final acceptance mapping", "community": 115, "community_name": "Community 115", "source_file": "docs/features/broker-account-sections/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 4}, {"id": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "\u0420\u0430\u0437\u0434\u0435\u043b\u044b \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0434\u0435\u043b\u044b \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 8}, {"id": "broker_account_sections_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 10}, {"id": "broker_account_sections_spec_1_\u043e\u0431\u0449\u0430\u044f_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "label": "1. \u041e\u0431\u0449\u0430\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041e\u0431\u0449\u0430\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_2_\u043e\u0431\u0437\u043e\u0440_\u0441\u0447\u0451\u0442\u0430", "label": "2. \u041e\u0431\u0437\u043e\u0440 \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041e\u0431\u0437\u043e\u0440 \u0441\u0447\u0451\u0442\u0430", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_3_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "3. \u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_4_\u0441\u0447\u0451\u0442\u0447\u0438\u043a\u0438_\u043f\u043e\u0437\u0438\u0446\u0438\u0439", "label": "4. \u0421\u0447\u0451\u0442\u0447\u0438\u043a\u0438 \u043f\u043e\u0437\u0438\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0421\u0447\u0451\u0442\u0447\u0438\u043a\u0438 \u043f\u043e\u0437\u0438\u0446\u0438\u0439", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_5_\u0440\u0430\u0437\u0434\u0435\u043b_\u0430\u043a\u0446\u0438\u0439", "label": "5. \u0420\u0430\u0437\u0434\u0435\u043b \u0430\u043a\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0420\u0430\u0437\u0434\u0435\u043b \u0430\u043a\u0446\u0438\u0439", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_6_\u0440\u0430\u0437\u0434\u0435\u043b_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "6. \u0420\u0430\u0437\u0434\u0435\u043b \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0420\u0430\u0437\u0434\u0435\u043b \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_7_\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_overview", "label": "7. \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0430 overview", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0430 overview", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_8_\u0440\u0430\u0437\u0434\u0435\u043b_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "8. \u0420\u0430\u0437\u0434\u0435\u043b \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. \u0420\u0430\u0437\u0434\u0435\u043b \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_9_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430_\u043e\u0448\u0438\u0431\u043a\u0438_\u0438_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "9. \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430, \u043e\u0448\u0438\u0431\u043a\u0438 \u0438 \u043f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430, \u043e\u0448\u0438\u0431\u043a\u0438 \u0438 \u043f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_spec_\u0432\u043d\u0435_\u043e\u0431\u043b\u0430\u0441\u0442\u0438_\u0444\u0438\u0447\u0438", "label": "\u0412\u043d\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0444\u0438\u0447\u0438", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u043d\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0444\u0438\u0447\u0438", "community": 127, "community_name": "Community 127", "source_file": "docs/features/broker-account-sections/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_tasks", "label": "tasks.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 5}, {"id": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "\u0420\u0430\u0437\u0434\u0435\u043b\u044b \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0434\u0435\u043b\u044b \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 242, "community_name": "Community 242", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 6}, {"id": "broker_account_sections_tasks_backend_\u0438_api", "label": "Backend \u0438 API", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend \u0438 API", "community": 242, "community_name": "Community 242", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_tasks_\u0447\u0438\u0441\u0442\u044b\u0435_frontend_\u043c\u043e\u0434\u0435\u043b\u0438", "label": "\u0427\u0438\u0441\u0442\u044b\u0435 frontend-\u043c\u043e\u0434\u0435\u043b\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0427\u0438\u0441\u0442\u044b\u0435 frontend-\u043c\u043e\u0434\u0435\u043b\u0438", "community": 242, "community_name": "Community 242", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_tasks_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f_\u0438_overview", "label": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0438 overview", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0438 overview", "community": 242, "community_name": "Community 242", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_tasks_\u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "label": "\u041e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "community": 242, "community_name": "Community 242", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_account_sections_tasks_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0438_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e", "label": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e", "community": 242, "community_name": "Community 242", "source_file": "docs/features/broker-account-sections/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 2}, {"id": "broker_accounts_overview_plan_broker_accounts_overview_implementation_plan", "label": "Broker Accounts Overview Implementation Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Accounts Overview Implementation Plan", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 3}, {"id": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 6}, {"id": "broker_accounts_overview_plan_task_1_\u0447\u0438\u0441\u0442\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u0438", "label": "Task 1: \u0427\u0438\u0441\u0442\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c \u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0427\u0438\u0441\u0442\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c \u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u0438", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_plan_task_2_\u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u044b\u0435_portfolio_queries", "label": "Task 2: \u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u044b\u0435 portfolio queries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u044b\u0435 portfolio queries", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_plan_task_3_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b_\u0438_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "label": "Task 3: \u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0438 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0438 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_plan_task_4_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0438_responsive_qa", "label": "Task 4: \u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0438 responsive QA", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0438 responsive QA", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_plan_task_5_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_definition_of_done", "label": "Task 5: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 Definition of Done", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 Definition of Done", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_plan_definition_of_done", "label": "Definition of Done", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Definition of Done", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 186, "community_name": "Community 186", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 4}, {"id": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u043e\u0431\u0437\u043e\u0440 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u043e\u0431\u0437\u043e\u0440 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 8}, {"id": "broker_accounts_overview_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 7}, {"id": "broker_accounts_overview_spec_1_\u043e\u0431\u0449\u0430\u044f_\u0441\u0432\u043e\u0434\u043a\u0430", "label": "1. \u041e\u0431\u0449\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041e\u0431\u0449\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_2_\u043a\u0430\u0440\u0442\u043e\u0447\u043a\u0430_\u0441\u0447\u0451\u0442\u0430", "label": "2. \u041a\u0430\u0440\u0442\u043e\u0447\u043a\u0430 \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041a\u0430\u0440\u0442\u043e\u0447\u043a\u0430 \u0441\u0447\u0451\u0442\u0430", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_3_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430", "label": "3. \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_4_\u043e\u0448\u0438\u0431\u043a\u0438", "label": "4. \u041e\u0448\u0438\u0431\u043a\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u041e\u0448\u0438\u0431\u043a\u0438", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_5_\u043f\u0443\u0441\u0442\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "label": "5. \u041f\u0443\u0441\u0442\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u041f\u0443\u0441\u0442\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_6_\u0430\u0434\u0430\u043f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", "label": "6. \u0410\u0434\u0430\u043f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0410\u0434\u0430\u043f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "\u041d\u0435 \u0446\u0435\u043b\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0446\u0435\u043b\u0438", "community": 144, "community_name": "Community 144", "source_file": "docs/features/broker-accounts-overview/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_tasks", "label": "tasks.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 2}, {"id": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u043e\u0431\u0437\u043e\u0440 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u043e\u0431\u0437\u043e\u0440 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 6}, {"id": "broker_accounts_overview_tasks_1_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "label": "1. \u0410\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0410\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_tasks_2_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "2. \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_tasks_3_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "label": "3. \u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_tasks_4_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "4. \u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_overview_tasks_5_definition_of_done", "label": "5. Definition of Done", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Definition of Done", "community": 132, "community_name": "Community 132", "source_file": "docs/features/broker-accounts-overview/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan", "label": "plan.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "label": "Broker Accounts Page \u2014 Implementation Plan", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Accounts Page \u2014 Implementation Plan", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 7}, {"id": "broker_accounts_page_migration_plan_files", "label": "Files", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Files", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 3}, {"id": "broker_accounts_page_migration_plan_modify", "label": "Modify", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Modify", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_no_changes", "label": "No changes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "No changes", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_task_1_brokerallocationbar", "label": "Task 1: BrokerAllocationBar", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: BrokerAllocationBar", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_task_2_brokeraccountcard", "label": "Task 2: BrokerAccountCard", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: BrokerAccountCard", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_task_3_brokeraccountssummary", "label": "Task 3: BrokerAccountsSummary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: BrokerAccountsSummary", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_task_4_brokeraccountspage", "label": "Task 4: BrokerAccountsPage", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: BrokerAccountsPage", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_plan_task_5_clean_up_orphaned_css", "label": "Task 5: Clean up orphaned CSS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Clean up orphaned CSS", "community": 190, "community_name": "Community 190", "source_file": "docs/features/broker-accounts-page-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 2}, {"id": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "label": "Broker Accounts Page \u2014 Design System Migration", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Accounts Page \u2014 Design System Migration", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 6}, {"id": "broker_accounts_page_migration_spec_status", "label": "Status", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_spec_goal", "label": "Goal", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Goal", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_spec_scope", "label": "Scope", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Scope", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 2}, {"id": "broker_accounts_page_migration_spec_ds_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b_\u0434\u043b\u044f_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "label": "DS-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0434\u043b\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DS-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0434\u043b\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_spec_out_of_scope", "label": "Out of scope", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Out of scope", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 216, "community_name": "Community 216", "source_file": "docs/features/broker-accounts-page-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_tasks", "label": "tasks.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 275, "community_name": "Community 275", "source_file": "docs/features/broker-accounts-page-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_accounts_page_migration_tasks_broker_accounts_page_tasks", "label": "Broker Accounts Page \u2014 Tasks", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Accounts Page \u2014 Tasks", "community": 275, "community_name": "Community 275", "source_file": "docs/features/broker-accounts-page-migration/tasks.md", "file_type": "document", "degree": 2}, {"id": "broker_accounts_page_migration_tasks_tasks_checklist", "label": "Tasks Checklist", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tasks Checklist", "community": 275, "community_name": "Community 275", "source_file": "docs/features/broker-accounts-page-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan", "label": "plan.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 2}, {"id": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "label": "Broker Events And Payouts Implementation Plan", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Events And Payouts Implementation Plan", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 9}, {"id": "broker_events_and_payouts_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_sdd_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 SDD-\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 SDD-\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_gate_\u043f\u0435\u0440\u0435\u0434_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "label": "Gate \u043f\u0435\u0440\u0435\u0434 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Gate \u043f\u0435\u0440\u0435\u0434 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 7}, {"id": "broker_events_and_payouts_plan_backend_endpoint", "label": "Backend endpoint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend endpoint", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_backend_read_model", "label": "Backend read model", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend read model", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "\u0424\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_\u0441\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430_summary", "label": "\u0421\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430 summary", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430 summary", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_\u0444\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "\u0424\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_\u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f_\u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "label": "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f \u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f \u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_api_\u0438_\u0442\u0438\u043f\u044b", "label": "API \u0438 \u0442\u0438\u043f\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \u0438 \u0442\u0438\u043f\u044b", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 3}, {"id": "broker_events_and_payouts_plan_query_contract", "label": "Query contract", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query contract", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_response_contract", "label": "Response contract", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Response contract", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 4}, {"id": "broker_events_and_payouts_plan_backend", "label": "Backend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_frontend", "label": "Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_documentation", "label": "Documentation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Documentation", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_rollout_shape", "label": "Rollout shape", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Rollout shape", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 3}, {"id": "broker_events_and_payouts_plan_overview", "label": "Overview", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_dedicated_page", "label": "Dedicated page", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dedicated page", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_verification_strategy", "label": "Verification strategy", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification strategy", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 2}, {"id": "broker_events_and_payouts_plan_frontend_date_range_ui", "label": "Frontend date range UI", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend date range UI", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_follow_up_implementation_tasks", "label": "Follow-up implementation tasks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Follow-up implementation tasks", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 3}, {"id": "broker_events_and_payouts_plan_backend_252", "label": "Backend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_plan_frontend_264", "label": "Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 83, "community_name": "Community 83", "source_file": "docs/features/broker-events-and-payouts/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 4}, {"id": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0432\u044b\u043f\u043b\u0430\u0442 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0432\u044b\u043f\u043b\u0430\u0442 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 8}, {"id": "broker_events_and_payouts_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 13}, {"id": "broker_events_and_payouts_spec_1_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043f\u0435\u0440\u0432\u043e\u0439_\u0432\u0435\u0440\u0441\u0438\u0438", "label": "1. \u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0435\u0440\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0435\u0440\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_2_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f_\u0438_\u0442\u043e\u0447\u043a\u0438_\u0432\u0445\u043e\u0434\u0430", "label": "2. \u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0438 \u0442\u043e\u0447\u043a\u0438 \u0432\u0445\u043e\u0434\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0438 \u0442\u043e\u0447\u043a\u0438 \u0432\u0445\u043e\u0434\u0430", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_3_\u0442\u0438\u043f\u044b_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u043f\u0435\u0440\u0432\u043e\u0439_\u0432\u0435\u0440\u0441\u0438\u0438", "label": "3. \u0422\u0438\u043f\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u043f\u0435\u0440\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0422\u0438\u043f\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u043f\u0435\u0440\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_4_\u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d_\u0434\u0430\u0442", "label": "4. \u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u0434\u0430\u0442", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u0434\u0430\u0442", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_4_1_\u0444\u0438\u043b\u044c\u0442\u0440_\u0442\u0438\u043f\u043e\u0432_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "4.1. \u0424\u0438\u043b\u044c\u0442\u0440 \u0442\u0438\u043f\u043e\u0432 \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.1. \u0424\u0438\u043b\u044c\u0442\u0440 \u0442\u0438\u043f\u043e\u0432 \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_5_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "5. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_6_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430_\u0432\u044b\u043f\u043b\u0430\u0442", "label": "6. \u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430 \u0432\u044b\u043f\u043b\u0430\u0442", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430 \u0432\u044b\u043f\u043b\u0430\u0442", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 5}, {"id": "broker_events_and_payouts_spec_\u0434\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u044b", "label": "\u0414\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u044b", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u044b", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u043a\u0443\u043f\u043e\u043d\u044b", "label": "\u041a\u0443\u043f\u043e\u043d\u044b", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0443\u043f\u043e\u043d\u044b", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u043f\u043e\u0433\u0430\u0448\u0435\u043d\u0438\u0435", "label": "\u041f\u043e\u0433\u0430\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0433\u0430\u0448\u0435\u043d\u0438\u0435", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u043e\u0444\u0435\u0440\u0442\u0430", "label": "\u041e\u0444\u0435\u0440\u0442\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0444\u0435\u0440\u0442\u0430", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_6_1_\u0444\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "6.1. \u0424\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6.1. \u0424\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_7_overview_\u0441\u0447\u0451\u0442\u0430", "label": "7. Overview \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Overview \u0441\u0447\u0451\u0442\u0430", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_8_\u0432\u043a\u043b\u0430\u0434\u043a\u0430_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "8. \u0412\u043a\u043b\u0430\u0434\u043a\u0430 `\u0421\u043e\u0431\u044b\u0442\u0438\u044f`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. \u0412\u043a\u043b\u0430\u0434\u043a\u0430 `\u0421\u043e\u0431\u044b\u0442\u0438\u044f`", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_9_summary_\u043f\u043e_\u043f\u0435\u0440\u0438\u043e\u0434\u0443", "label": "9. Summary \u043f\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0443", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. Summary \u043f\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0443", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_10_\u043e\u0448\u0438\u0431\u043a\u0438_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0438_\u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f_\u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "label": "10. \u041e\u0448\u0438\u0431\u043a\u0438, \u043f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0438 \u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f \u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. \u041e\u0448\u0438\u0431\u043a\u0438, \u043f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0438 \u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f \u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_spec_\u0432\u043d\u0435_\u043e\u0431\u043b\u0430\u0441\u0442\u0438_\u0444\u0438\u0447\u0438", "label": "\u0412\u043d\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0444\u0438\u0447\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u043d\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0444\u0438\u0447\u0438", "community": 98, "community_name": "Community 98", "source_file": "docs/features/broker-events-and-payouts/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks", "label": "tasks.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 4}, {"id": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0432\u044b\u043f\u043b\u0430\u0442 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0432\u044b\u043f\u043b\u0430\u0442 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430 \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 11}, {"id": "broker_events_and_payouts_tasks_1_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430_\u0438_gate", "label": "1. \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0438 gate", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0438 gate", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_2_backend_contract", "label": "2. Backend contract", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Backend contract", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_3_backend_aggregation", "label": "3. Backend aggregation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Backend aggregation", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_4_backend_tests", "label": "4. Backend tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Backend tests", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_5_frontend_data_layer", "label": "5. Frontend data layer", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Frontend data layer", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_6_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441_overview", "label": "6. \u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 overview", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 overview", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_7_\u0432\u043a\u043b\u0430\u0434\u043a\u0430_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "7. \u0412\u043a\u043b\u0430\u0434\u043a\u0430 `\u0421\u043e\u0431\u044b\u0442\u0438\u044f`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. \u0412\u043a\u043b\u0430\u0434\u043a\u0430 `\u0421\u043e\u0431\u044b\u0442\u0438\u044f`", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_8_frontend_tests", "label": "8. Frontend tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Frontend tests", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_9_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_quality_gates", "label": "9. \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 quality gates", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 quality gates", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_events_and_payouts_tasks_10_follow_up_ux_\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432_\u0438_\u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "10. Follow-up: UX \u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432 \u0438 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. Follow-up: UX \u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432 \u0438 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", "community": 175, "community_name": "Community 175", "source_file": "docs/features/broker-events-and-payouts/tasks.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "label": "Broker Operations UI Improvements \u2014 Implementation Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Operations UI Improvements \u2014 Implementation Plan", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 6}, {"id": "broker_operations_ui_improvements_plan_task_1_remove_getbrokeroperationimpactlabel_from_brokerdisplay", "label": "Task 1: Remove `getBrokerOperationImpactLabel` from brokerDisplay", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Remove `getBrokerOperationImpactLabel` from brokerDisplay", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_plan_task_2_update_brokerpages_test_tsx_for_new_expectations", "label": "Task 2: Update BrokerPages.test.tsx for new expectations", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Update BrokerPages.test.tsx for new expectations", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_plan_task_3_remove_badges_and_add_prefix_style_pagination_buttons", "label": "Task 3: Remove badges and add \"+\" prefix, style pagination buttons", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Remove badges and add &quot;+&quot; prefix, style pagination buttons", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_plan_task_4_add_keeppreviousdata_to_operations_query", "label": "Task 4: Add keepPreviousData to operations query", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Add keepPreviousData to operations query", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_plan_task_5_run_lint_and_verify", "label": "Task 5: Run lint and verify", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Run lint and verify", "community": 229, "community_name": "Community 229", "source_file": "docs/features/broker-operations-ui-improvements/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec", "label": "spec.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 3}, {"id": "broker_operations_ui_improvements_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_ui_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439_\u0438_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438_\u0432_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "label": "\u0423\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 UI \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0438 \u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438 \u0432 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 UI \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0438 \u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438 \u0432 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 5}, {"id": "broker_operations_ui_improvements_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 5}, {"id": "broker_operations_ui_improvements_spec_1_\u0443\u0431\u0440\u0430\u0442\u044c_\u0431\u0435\u0439\u0434\u0436\u0438_impact_\u0438\u0437_\u0442\u0430\u0431\u043b\u0438\u0446\u044b_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "label": "1. \u0423\u0431\u0440\u0430\u0442\u044c \u0431\u0435\u0439\u0434\u0436\u0438 impact \u0438\u0437 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \"\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0423\u0431\u0440\u0430\u0442\u044c \u0431\u0435\u0439\u0434\u0436\u0438 impact \u0438\u0437 \u0442\u0430\u0431\u043b\u0438\u0446\u044b &quot;\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438&quot;", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec_2_\u043f\u0440\u0435\u0444\u0438\u043a\u0441_\u0434\u043b\u044f_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445_\u0441\u0443\u043c\u043c", "label": "2. \u041f\u0440\u0435\u0444\u0438\u043a\u0441 \"+\" \u0434\u043b\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0441\u0443\u043c\u043c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041f\u0440\u0435\u0444\u0438\u043a\u0441 &quot;+&quot; \u0434\u043b\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0441\u0443\u043c\u043c", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec_3_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_keeppreviousdata_\u0438_\u0441\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "label": "3. \u041f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f: keepPreviousData \u0438 \u0441\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u041f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f: keepPreviousData \u0438 \u0441\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec_4_\u0434\u0440\u0443\u0433\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "label": "4. \"\u0414\u0440\u0443\u0433\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. &quot;\u0414\u0440\u0443\u0433\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b&quot;", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_operations_ui_improvements_spec_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 191, "community_name": "Community 191", "source_file": "docs/features/broker-operations-ui-improvements/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan", "label": "plan.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "label": "Broker Portfolio Display Implementation Plan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Portfolio Display Implementation Plan", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 7}, {"id": "broker_portfolio_display_plan_file_structure", "label": "File Structure", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "File Structure", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan_task_1_display_helpers", "label": "Task 1: Display Helpers", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Display Helpers", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan_task_2_broker_position_tables", "label": "Task 2: Broker Position Tables", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Broker Position Tables", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan_task_3_broker_operations_table_and_cursor_pagination", "label": "Task 3: Broker Operations Table and Cursor Pagination", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Broker Operations Table and Cursor Pagination", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan_task_4_regression_verification", "label": "Task 4: Regression Verification", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Regression Verification", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_plan_task_5_review_handoff", "label": "Task 5: Review Handoff", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Review Handoff", "community": 217, "community_name": "Community 217", "source_file": "docs/features/broker-portfolio-display/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec", "label": "spec.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 3}, {"id": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "\u0423\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 9}, {"id": "broker_portfolio_display_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "label": "\u041f\u043e\u0437\u0438\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0437\u0438\u0446\u0438\u0438", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 2}, {"id": "broker_portfolio_display_spec_\u0441\u0441\u044b\u043b\u043a\u0438_\u043d\u0430_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "label": "\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 3}, {"id": "broker_portfolio_display_spec_\u0440\u0443\u0441\u0441\u043a\u0438\u0435_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f_\u0442\u0438\u043f\u043e\u0432", "label": "\u0420\u0443\u0441\u0441\u043a\u0438\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u0442\u0438\u043f\u043e\u0432", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0443\u0441\u0441\u043a\u0438\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u0442\u0438\u043f\u043e\u0432", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_\u044d\u0444\u0444\u0435\u043a\u0442_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "label": "\u042d\u0444\u0444\u0435\u043a\u0442 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0444\u0444\u0435\u043a\u0442 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_\u043e\u0448\u0438\u0431\u043a\u0438_\u0438_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "\u041e\u0448\u0438\u0431\u043a\u0438 \u0438 \u043f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0448\u0438\u0431\u043a\u0438 \u0438 \u043f\u0443\u0441\u0442\u044b\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_tdd_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f", "label": "TDD-\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TDD-\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_portfolio_display_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 153, "community_name": "Community 153", "source_file": "docs/features/broker-portfolio-display/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan", "label": "plan.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "label": "Broker Portfolio Enhancements Implementation Plan", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Broker Portfolio Enhancements Implementation Plan", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 15}, {"id": "broker_positions_pagination_and_loading_plan_task_1_backend_types_and_dtos_for_positions_page_operation_name", "label": "Task 1: Backend \u2014 Types and DTOs for positions page + operation name", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Backend \u2014 Types and DTOs for positions page + operation name", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_2_backend_mappers_separate_positions_add_name_to_operations", "label": "Task 2: Backend \u2014 Mappers (separate positions, add name to operations)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Backend \u2014 Mappers (separate positions, add name to operations)", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_3_backend_brokerportfolioservice_with_getpositions", "label": "Task 3: Backend \u2014 BrokerPortfolioService with getPositions()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Backend \u2014 BrokerPortfolioService with getPositions()", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_4_backend_controller_envelope_config_for_positions_endpoint", "label": "Task 4: Backend \u2014 Controller + Envelope + Config for positions endpoint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Backend \u2014 Controller + Envelope + Config for positions endpoint", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_5_backend_update_portfolio_service_tests_add_positions_tests", "label": "Task 5: Backend \u2014 Update portfolio service tests + add positions tests", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Backend \u2014 Update portfolio service tests + add positions tests", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_6_frontend_css_shimmer_animations", "label": "Task 6: Frontend \u2014 CSS shimmer animations", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Frontend \u2014 CSS shimmer animations", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_7_frontend_types_api_and_hooks", "label": "Task 7: Frontend \u2014 Types, API, and hooks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Frontend \u2014 Types, API, and hooks", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_8_frontend_skeletonblock_and_tableskeleton_components", "label": "Task 8: Frontend \u2014 SkeletonBlock and TableSkeleton components", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: Frontend \u2014 SkeletonBlock and TableSkeleton components", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_9_frontend_brokerpositionssection_with_pagination_skeleton", "label": "Task 9: Frontend \u2014 BrokerPositionsSection with pagination + skeleton", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: Frontend \u2014 BrokerPositionsSection with pagination + skeleton", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_10_frontend_brokeroperationstable_with_shimmer_instrument_name", "label": "Task 10: Frontend \u2014 BrokerOperationsTable with shimmer + instrument name", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: Frontend \u2014 BrokerOperationsTable with shimmer + instrument name", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_11_frontend_brokeraccountdetailpage_with_positions_hook_skeleton", "label": "Task 11: Frontend \u2014 BrokerAccountDetailPage with positions hook + skeleton", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: Frontend \u2014 BrokerAccountDetailPage with positions hook + skeleton", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_12_frontend_brokeraccountspage_skeleton_cards", "label": "Task 12: Frontend \u2014 BrokerAccountsPage skeleton cards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 12: Frontend \u2014 BrokerAccountsPage skeleton cards", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_13_frontend_update_brokerpages_tests", "label": "Task 13: Frontend \u2014 Update BrokerPages tests", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 13: Frontend \u2014 Update BrokerPages tests", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_plan_task_14_full_build_and_test_verification", "label": "Task 14: Full build and test verification", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 14: Full build and test verification", "community": 133, "community_name": "Community 133", "source_file": "docs/features/broker-positions-pagination-and-loading/plan.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec", "label": "spec.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 3}, {"id": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "label": "\u041f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u0439, \u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b, \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u0439, \u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b, \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 6}, {"id": "broker_positions_pagination_and_loading_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 7}, {"id": "broker_positions_pagination_and_loading_spec_1_backend_\u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439_endpoint_\u0434\u043b\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439", "label": "1. Backend: \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 endpoint \u0434\u043b\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u0439", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Backend: \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 endpoint \u0434\u043b\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u0439", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_2_frontend_\u043d\u043e\u0432\u044b\u0439_\u0445\u0443\u043a_\u0438_\u0442\u0438\u043f\u044b_\u0434\u043b\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439", "label": "2. Frontend: \u043d\u043e\u0432\u044b\u0439 \u0445\u0443\u043a \u0438 \u0442\u0438\u043f\u044b \u0434\u043b\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u0439", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Frontend: \u043d\u043e\u0432\u044b\u0439 \u0445\u0443\u043a \u0438 \u0442\u0438\u043f\u044b \u0434\u043b\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u0439", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_3_brokerpositionssection_\u0441_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0435\u0439", "label": "3. BrokerPositionsSection \u0441 \u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0435\u0439", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. BrokerPositionsSection \u0441 \u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0435\u0439", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_4_shimmer_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_css_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "4. Shimmer-\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b (CSS + \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Shimmer-\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b (CSS + \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b)", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_5_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "label": "5. \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_6_loading_\u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_shimmer_\u0441\u0442\u0440\u043e\u043a\u0438", "label": "6. Loading-\u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 (shimmer-\u0441\u0442\u0440\u043e\u043a\u0438)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Loading-\u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 (shimmer-\u0441\u0442\u0440\u043e\u043a\u0438)", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 3}, {"id": "broker_positions_pagination_and_loading_spec_backend", "label": "Backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_frontend", "label": "Frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "broker_positions_pagination_and_loading_spec_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 140, "community_name": "Community 140", "source_file": "docs/features/broker-positions-pagination-and-loading/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 259, "community_name": "Community 259", "source_file": "docs/features/ci-cd/plan.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_plan_ci_cd_implementation_plan", "label": "CI/CD Implementation Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CI/CD Implementation Plan", "community": 259, "community_name": "Community 259", "source_file": "docs/features/ci-cd/plan.md", "file_type": "document", "degree": 4}, {"id": "ci_cd_plan_task_1_add_format_check_script_to_root_package_json", "label": "Task 1: Add `format:check` script to root package.json", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Add `format:check` script to root package.json", "community": 259, "community_name": "Community 259", "source_file": "docs/features/ci-cd/plan.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_plan_task_2_create_gitea_actions_workflow", "label": "Task 2: Create Gitea Actions workflow", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Create Gitea Actions workflow", "community": 259, "community_name": "Community 259", "source_file": "docs/features/ci-cd/plan.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_plan_verification", "label": "Verification", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification", "community": 259, "community_name": "Community 259", "source_file": "docs/features/ci-cd/plan.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 3}, {"id": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "label": "CI/CD Pipeline for MoexVibe", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CI/CD Pipeline for MoexVibe", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 8}, {"id": "ci_cd_spec_overview", "label": "Overview", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec_triggers", "label": "Triggers", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Triggers", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec_pipeline_structure", "label": "Pipeline Structure", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pipeline Structure", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec_runtime", "label": "Runtime", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Runtime", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec_configuration_file", "label": "Configuration File", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Configuration File", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec_project_changes", "label": "Project Changes", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Changes", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "ci_cd_spec_explicitly_excluded", "label": "Explicitly Excluded", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Explicitly Excluded", "community": 218, "community_name": "Community 218", "source_file": "docs/features/ci-cd/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan", "label": "plan.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_design_system_foundation_implementation_plan", "label": "Design System Foundation Implementation Plan", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Design System Foundation Implementation Plan", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 3}, {"id": "design_system_foundation_plan_\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044b", "label": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044b", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 13}, {"id": "design_system_foundation_plan_task_1_pre_flight_\u0438_workspace_shell", "label": "Task 1: Pre-flight \u0438 workspace shell", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Pre-flight \u0438 workspace shell", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_2_token_schema_\u0438_resolver_tdd", "label": "Task 2: Token schema \u0438 resolver (TDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Token schema \u0438 resolver (TDD)", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_3_\u0442\u0440\u0438_\u0443\u0440\u043e\u0432\u043d\u044f_\u0442\u043e\u043a\u0435\u043d\u043e\u0432", "label": "Task 3: \u0422\u0440\u0438 \u0443\u0440\u043e\u0432\u043d\u044f \u0442\u043e\u043a\u0435\u043d\u043e\u0432", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u0422\u0440\u0438 \u0443\u0440\u043e\u0432\u043d\u044f \u0442\u043e\u043a\u0435\u043d\u043e\u0432", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_4_mui_adapter_\u0438_provider_tdd", "label": "Task 4: MUI adapter \u0438 provider (TDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: MUI adapter \u0438 provider (TDD)", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_5_storybook_\u0438_automated_story_checks", "label": "Task 5: Storybook \u0438 automated story checks", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Storybook \u0438 automated story checks", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_6_typography_\u0438_actions_tdd", "label": "Task 6: Typography \u0438 actions (TDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Typography \u0438 actions (TDD)", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_7_inputs_surfaces_\u0438_feedback_tdd", "label": "Task 7: Inputs, surfaces \u0438 feedback (TDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Inputs, surfaces \u0438 feedback (TDD)", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_8_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_data_patterns_tdd", "label": "Task 8: \u0424\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 data patterns (TDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: \u0424\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 data patterns (TDD)", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_9_form_\u0438_page_state_patterns_tdd", "label": "Task 9: Form \u0438 page-state patterns (TDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: Form \u0438 page-state patterns (TDD)", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_10_frontend_integration_\u0438_mui_boundary", "label": "Task 10: Frontend integration \u0438 MUI boundary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: Frontend integration \u0438 MUI boundary", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_11_docusaurus_\u0438_adr", "label": "Task 11: Docusaurus \u0438 ADR", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: Docusaurus \u0438 ADR", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_plan_task_12_ci_visual_checks_\u0438_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "Task 12: CI, visual checks \u0438 \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 12: CI, visual checks \u0438 \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 134, "community_name": "Community 134", "source_file": "docs/features/design-system-foundation/plan.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec", "label": "spec.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 2}, {"id": "design_system_foundation_spec_design_system_foundation", "label": "Design System Foundation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Design System Foundation", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 13}, {"id": "design_system_foundation_spec_\u0441\u0442\u0430\u0442\u0443\u0441", "label": "\u0421\u0442\u0430\u0442\u0443\u0441", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0430\u0442\u0443\u0441", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "label": "\u041f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 4}, {"id": "design_system_foundation_spec_workspace_\u043f\u0430\u043a\u0435\u0442", "label": "Workspace-\u043f\u0430\u043a\u0435\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Workspace-\u043f\u0430\u043a\u0435\u0442", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_storybook", "label": "Storybook", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Storybook", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_docusaurus", "label": "Docusaurus", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Docusaurus", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u043c\u043e\u0434\u0435\u043b\u044c_\u0442\u043e\u043a\u0435\u043d\u043e\u0432", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0442\u043e\u043a\u0435\u043d\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0442\u043e\u043a\u0435\u043d\u043e\u0432", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u0442\u0435\u043c\u0430_\u0438_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435_\u043e\u0441\u043d\u043e\u0432\u044b", "label": "\u0422\u0435\u043c\u0430 \u0438 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u043e\u0441\u043d\u043e\u0432\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u043c\u0430 \u0438 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u043e\u0441\u043d\u043e\u0432\u044b", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 3}, {"id": "design_system_foundation_spec_core_ui_v1", "label": "Core UI v1", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Core UI v1", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_product_patterns_v1", "label": "Product patterns v1", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Product patterns v1", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_governance", "label": "Governance", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Governance", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u0432\u043d\u0435_scope", "label": "\u0412\u043d\u0435 scope", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u043d\u0435 scope", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 120, "community_name": "Community 120", "source_file": "docs/features/design-system-foundation/spec.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks", "label": "tasks.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_design_system_foundation_tasks", "label": "Design System Foundation \u2014 Tasks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Design System Foundation \u2014 Tasks", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 8}, {"id": "design_system_foundation_tasks_1_pre_flight_\u0438_workspace", "label": "1. Pre-flight \u0438 workspace", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Pre-flight \u0438 workspace", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_2_tokens", "label": "2. Tokens", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Tokens", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_3_mui_adapter_\u0438_storybook", "label": "3. MUI adapter \u0438 Storybook", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. MUI adapter \u0438 Storybook", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_4_core_ui", "label": "4. Core UI", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Core UI", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_5_product_patterns", "label": "5. Product patterns", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Product patterns", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_6_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0438_governance", "label": "6. \u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0438 governance", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0438 governance", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "design_system_foundation_tasks_7_ci_\u0438_\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435", "label": "7. CI \u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. CI \u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435", "community": 203, "community_name": "Community 203", "source_file": "docs/features/design-system-foundation/tasks.md", "file_type": "document", "degree": 1}, {"id": "docusaurus_docs_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 3}, {"id": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "label": "Docusaurus Documentation \u2014 Design Spec", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Docusaurus Documentation \u2014 Design Spec", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 7}, {"id": "docusaurus_docs_spec_purpose", "label": "Purpose", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Purpose", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "docusaurus_docs_spec_location", "label": "Location", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Location", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "docusaurus_docs_spec_content_sources_\u0442\u043e\u043b\u044c\u043a\u043e_\u0438\u0437_\u043a\u043e\u0434\u0430_\u0431\u0435\u0437_\u0432\u044b\u043c\u044b\u0441\u043b\u0430", "label": "Content Sources (\u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u043a\u043e\u0434\u0430, \u0431\u0435\u0437 \u0432\u044b\u043c\u044b\u0441\u043b\u0430)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Content Sources (\u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u043a\u043e\u0434\u0430, \u0431\u0435\u0437 \u0432\u044b\u043c\u044b\u0441\u043b\u0430)", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "docusaurus_docs_spec_pages", "label": "Pages", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pages", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "docusaurus_docs_spec_mermaid_diagrams", "label": "Mermaid Diagrams", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Mermaid Diagrams", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "docusaurus_docs_spec_root_changes", "label": "Root Changes", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Changes", "community": 231, "community_name": "Community 231", "source_file": "docs/features/docusaurus-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_plan", "label": "plan.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 248, "community_name": "Community 248", "source_file": "docs/features/frontend-debt-audit/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_plan_frontend_debt_audit_and_backlog_implementation_plan", "label": "Frontend Debt Audit and Backlog Implementation Plan", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Debt Audit and Backlog Implementation Plan", "community": 248, "community_name": "Community 248", "source_file": "docs/features/frontend-debt-audit/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_debt_audit_plan_task_1_collect_audit_evidence", "label": "Task 1: Collect audit evidence", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Collect audit evidence", "community": 248, "community_name": "Community 248", "source_file": "docs/features/frontend-debt-audit/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_plan_task_2_synthesize_the_backlog", "label": "Task 2: Synthesize the backlog", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Synthesize the backlog", "community": 248, "community_name": "Community 248", "source_file": "docs/features/frontend-debt-audit/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_plan_task_3_sync_inbox_and_roadmap", "label": "Task 3: Sync inbox and roadmap", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Sync inbox and roadmap", "community": 248, "community_name": "Community 248", "source_file": "docs/features/frontend-debt-audit/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_plan_task_4_self_check_the_documentation_set", "label": "Task 4: Self-check the documentation set", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Self-check the documentation set", "community": 248, "community_name": "Community 248", "source_file": "docs/features/frontend-debt-audit/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "label": "Frontend Debt Audit and Backlog", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Debt Audit and Backlog", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 7}, {"id": "frontend_debt_audit_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_debt_audit_spec_1_\u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f_\u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "1. \u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_2_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0438\u0437\u0430\u0446\u0438\u044f_\u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e_\u0434\u043e\u043b\u0433\u0430", "label": "2. \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0438\u0437\u0430\u0446\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0434\u043e\u043b\u0433\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0438\u0437\u0430\u0446\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0434\u043e\u043b\u0433\u0430", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_3_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u043f\u0440\u043e\u0435\u043a\u0442\u043d\u043e\u0439_\u0434\u043e\u043a\u0438", "label": "3. \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043d\u043e\u0439 \u0434\u043e\u043a\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043d\u043e\u0439 \u0434\u043e\u043a\u0438", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_4_\u043d\u0438\u043a\u0430\u043a\u0438\u0445_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "label": "4. \u041d\u0438\u043a\u0430\u043a\u0438\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u041d\u0438\u043a\u0430\u043a\u0438\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0430\u0443\u0434\u0438\u0442\u0430", "label": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0430\u0443\u0434\u0438\u0442\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0430\u0443\u0434\u0438\u0442\u0430", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_debt_audit_spec_\u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "label": "\u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_spec_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043e\u043a", "label": "\u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043d\u0430\u0445\u043e\u0434\u043e\u043a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043d\u0430\u0445\u043e\u0434\u043e\u043a", "community": 155, "community_name": "Community 155", "source_file": "docs/features/frontend-debt-audit/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_tasks", "label": "tasks.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_tasks_frontend_debt_audit_and_backlog_tasks", "label": "Frontend Debt Audit and Backlog \u2014 tasks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Debt Audit and Backlog \u2014 tasks", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 5}, {"id": "frontend_debt_audit_tasks_1_\u0441\u043d\u044f\u0442\u044c_\u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435_frontend_\u0434\u043e\u043b\u0433\u0430", "label": "1. \u0421\u043d\u044f\u0442\u044c \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 frontend-\u0434\u043e\u043b\u0433\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0421\u043d\u044f\u0442\u044c \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 frontend-\u0434\u043e\u043b\u0433\u0430", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 2}, {"id": "frontend_debt_audit_tasks_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_tasks_2_\u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c_backlog_follow_up_\u0444\u0438\u0447", "label": "2. \u0421\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c backlog follow-up \u0444\u0438\u0447", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0421\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c backlog follow-up \u0444\u0438\u0447", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 3}, {"id": "frontend_debt_audit_tasks_\u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435_follow_up_\u0444\u0438\u0447\u0438_\u0441\u0442\u0430\u0442\u0443\u0441_completed", "label": "\u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 follow-up \u0444\u0438\u0447\u0438 (\u0441\u0442\u0430\u0442\u0443\u0441 completed):", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 follow-up \u0444\u0438\u0447\u0438 (\u0441\u0442\u0430\u0442\u0443\u0441 completed):", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_tasks_\u043d\u0443\u0436\u0434\u0430\u044e\u0442\u0441\u044f_\u0432_\u043d\u043e\u0432\u044b\u0445_\u0444\u0438\u0447\u0430\u0445_\u043d\u0435_\u0441\u043e\u0437\u0434\u0430\u043d\u044b", "label": "\u041d\u0443\u0436\u0434\u0430\u044e\u0442\u0441\u044f \u0432 \u043d\u043e\u0432\u044b\u0445 \u0444\u0438\u0447\u0430\u0445 (\u043d\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u044b):", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0443\u0436\u0434\u0430\u044e\u0442\u0441\u044f \u0432 \u043d\u043e\u0432\u044b\u0445 \u0444\u0438\u0447\u0430\u0445 (\u043d\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u044b):", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_tasks_3_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u043f\u0440\u043e\u0435\u043a\u0442\u043d\u0443\u044e_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "3. \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u043d\u0443\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u043d\u0443\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_debt_audit_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 206, "community_name": "Community 206", "source_file": "docs/features/frontend-debt-audit/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 249, "community_name": "Community 249", "source_file": "docs/features/frontend-docs-sync/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_plan_frontend_docs_sync_implementation_plan", "label": "Frontend Docs Sync Implementation Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Docs Sync Implementation Plan", "community": 249, "community_name": "Community 249", "source_file": "docs/features/frontend-docs-sync/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_docs_sync_plan_task_1_reconcile_current_docs_state", "label": "Task 1: Reconcile current docs state", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Reconcile current docs state", "community": 249, "community_name": "Community 249", "source_file": "docs/features/frontend-docs-sync/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_plan_task_2_update_inbox_and_roadmap_wording", "label": "Task 2: Update inbox and roadmap wording", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Update inbox and roadmap wording", "community": 249, "community_name": "Community 249", "source_file": "docs/features/frontend-docs-sync/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_plan_task_3_align_feature_docs_with_the_epic", "label": "Task 3: Align feature docs with the epic", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Align feature docs with the epic", "community": 249, "community_name": "Community 249", "source_file": "docs/features/frontend-docs-sync/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_plan_task_4_self_check_the_docs_set", "label": "Task 4: Self-check the docs set", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Self-check the docs set", "community": 249, "community_name": "Community 249", "source_file": "docs/features/frontend-docs-sync/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_docs_sync_spec_frontend_docs_sync", "label": "Frontend Docs Sync", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Docs Sync", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_docs_sync_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_docs_sync_spec_1_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_inbox", "label": "1. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c inbox", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c inbox", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_2_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_roadmap", "label": "2. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c roadmap", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c roadmap", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_3_\u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u0442\u044c_frontend_feature_docs", "label": "3. \u0421\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u0442\u044c frontend feature docs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0421\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u0442\u044c frontend feature docs", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_4_\u043d\u0435_\u043c\u0435\u043d\u044f\u0442\u044c_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "label": "4. \u041d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u041d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 146, "community_name": "Community 146", "source_file": "docs/features/frontend-docs-sync/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_tasks", "label": "tasks.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 262, "community_name": "Community 262", "source_file": "docs/features/frontend-docs-sync/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_tasks_frontend_docs_sync_tasks", "label": "Frontend Docs Sync \u2014 tasks", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Docs Sync \u2014 tasks", "community": 262, "community_name": "Community 262", "source_file": "docs/features/frontend-docs-sync/tasks.md", "file_type": "document", "degree": 4}, {"id": "frontend_docs_sync_tasks_1_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_inbox_\u0438_roadmap", "label": "1. \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c inbox \u0438 roadmap", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c inbox \u0438 roadmap", "community": 262, "community_name": "Community 262", "source_file": "docs/features/frontend-docs-sync/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_tasks_2_\u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438_frontend_docs_\u043a_\u0442\u0435\u043a\u0443\u0449\u0435\u043c\u0443_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044e", "label": "2. \u041f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 frontend docs \u043a \u0442\u0435\u043a\u0443\u0449\u0435\u043c\u0443 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044e", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 frontend docs \u043a \u0442\u0435\u043a\u0443\u0449\u0435\u043c\u0443 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044e", "community": 262, "community_name": "Community 262", "source_file": "docs/features/frontend-docs-sync/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_docs_sync_tasks_3_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "3. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 262, "community_name": "Community 262", "source_file": "docs/features/frontend-docs-sync/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan", "label": "plan.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "Frontend FSD App + Auth \u2014 \u041f\u043b\u0430\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD App + Auth \u2014 \u041f\u043b\u0430\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_app_auth_plan_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_\u0446\u0435\u043b\u0435\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "\u041f\u043e\u0442\u043e\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0442\u043e\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_app_auth_plan_auth_flow_\u0431\u0435\u0437_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439_\u0432_runtime", "label": "Auth flow (\u0431\u0435\u0437 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 runtime)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Auth flow (\u0431\u0435\u0437 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 runtime)", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_session_restore_\u043d\u0430_\u0441\u0442\u0430\u0440\u0442\u0435", "label": "Session restore \u043d\u0430 \u0441\u0442\u0430\u0440\u0442\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Session restore \u043d\u0430 \u0441\u0442\u0430\u0440\u0442\u0435", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_app_auth_plan_phase_1_entities_session", "label": "Phase 1: entities/session/", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: entities/session/", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_phase_2_app_providers", "label": "Phase 2: app/providers/", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: app/providers/", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_phase_3_app_routing", "label": "Phase 3: app/routing/", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: app/routing/", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_phase_4_app_layouts", "label": "Phase 4: app/layouts/", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: app/layouts/", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_phase_5_app_app_tsx", "label": "Phase 5: app/App.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5: app/App.tsx", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_phase_6_main_tsx", "label": "Phase 6: main.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 6: main.tsx", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_phase_7_update_pages", "label": "Phase 7: update pages", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 7: update pages", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 4}, {"id": "frontend_fsd_app_auth_plan_\u043f\u043e\u0447\u0435\u043c\u0443_entities_session_\u0430_\u043d\u0435_features_auth", "label": "\u041f\u043e\u0447\u0435\u043c\u0443 `entities/session`, \u0430 \u043d\u0435 `features/auth`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0447\u0435\u043c\u0443 `entities/session`, \u0430 \u043d\u0435 `features/auth`", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_\u043f\u043e\u0447\u0435\u043c\u0443_context_\u043d\u0435_\u0432_entities_\u0430_\u0432_app_providers", "label": "\u041f\u043e\u0447\u0435\u043c\u0443 context \u043d\u0435 \u0432 entities, \u0430 \u0432 app/providers", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0447\u0435\u043c\u0443 context \u043d\u0435 \u0432 entities, \u0430 \u0432 app/providers", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_plan_coexistence", "label": "Coexistence", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Coexistence", "community": 121, "community_name": "Community 121", "source_file": "docs/features/frontend-fsd-app-auth/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "label": "Frontend FSD App + Auth", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD App + Auth", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_app_auth_spec_\u043a\u043e\u043d\u0446\u0435\u043f\u0442", "label": "\u041a\u043e\u043d\u0446\u0435\u043f\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0446\u0435\u043f\u0442", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_app_auth_spec_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "\u0412\u0445\u043e\u0434\u0438\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0445\u043e\u0434\u0438\u0442", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_\u043d\u0435_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "\u041d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_app_auth_spec_1_app_\u0441\u043b\u043e\u0439_\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "label": "1. App-\u0441\u043b\u043e\u0439 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. App-\u0441\u043b\u043e\u0439 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_2_session_\u0441\u043b\u043e\u0439", "label": "2. Session-\u0441\u043b\u043e\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Session-\u0441\u043b\u043e\u0439", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_3_coexistence_\u0447\u0435\u0440\u0435\u0437_shims", "label": "3. Coexistence \u0447\u0435\u0440\u0435\u0437 shims", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Coexistence \u0447\u0435\u0440\u0435\u0437 shims", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_4_\u0442\u0435\u0441\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_\u0437\u0430_\u043a\u043e\u0434\u043e\u043c", "label": "4. \u0422\u0435\u0441\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u0437\u0430 \u043a\u043e\u0434\u043e\u043c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0422\u0435\u0441\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u0437\u0430 \u043a\u043e\u0434\u043e\u043c", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_5_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "5. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 147, "community_name": "Community 147", "source_file": "docs/features/frontend-fsd-app-auth/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks", "label": "tasks.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "Frontend FSD App + Auth \u2014 \u0417\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD App + Auth \u2014 \u0417\u0430\u0434\u0430\u0447\u0438", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_app_auth_tasks_phase_1_entities_session", "label": "Phase 1: entities/session/", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: entities/session/", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_phase_2_app_providers", "label": "Phase 2: app/providers/", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: app/providers/", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_phase_3_app_routing", "label": "Phase 3: app/routing/", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: app/routing/", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_phase_4_app_layouts", "label": "Phase 4: app/layouts/", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: app/layouts/", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_phase_5_app_app_tsx", "label": "Phase 5: app/App.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5: app/App.tsx", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_phase_6_main_tsx", "label": "Phase 6: main.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 6: main.tsx", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_app_auth_tasks_phase_7_update_pages", "label": "Phase 7: update pages", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 7: update pages", "community": 207, "community_name": "Community 207", "source_file": "docs/features/frontend-fsd-app-auth/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_plan", "label": "plan.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 2}, {"id": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "label": "Frontend FSD Broker Pilot Implementation Plan", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Broker Pilot Implementation Plan", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 7}, {"id": "frontend_fsd_broker_pilot_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_plan_task_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_fsd_entrypoints_\u0438_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043d\u044b\u0439_\u043a\u0430\u0440\u043a\u0430\u0441", "label": "Task 1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c FSD entrypoints \u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043d\u044b\u0439 \u043a\u0430\u0440\u043a\u0430\u0441", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c FSD entrypoints \u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043d\u044b\u0439 \u043a\u0430\u0440\u043a\u0430\u0441", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_plan_task_2_\u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438_broker_account_slice_\u0438_read_model_\u0441\u043f\u0438\u0441\u043a\u0430_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "Task 2: \u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 broker-account slice \u0438 read-model \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u0447\u0435\u0442\u043e\u0432", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 broker-account slice \u0438 read-model \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u0447\u0435\u0442\u043e\u0432", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_plan_task_3_\u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438_broker_position_slice_\u0438_allocation_instrument_helpers", "label": "Task 3: \u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 broker-position slice \u0438 allocation/instrument helpers", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 broker-position slice \u0438 allocation/instrument helpers", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_plan_task_4_\u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438_broker_operation_slice_layout_shell_\u0438_page_composition", "label": "Task 4: \u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 broker-operation slice, layout shell \u0438 page composition", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 broker-operation slice, layout shell \u0438 page composition", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_plan_task_5_\u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c_cleanup_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e_\u0438_verification", "label": "Task 5: \u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c cleanup, \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \u0438 verification", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c cleanup, \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \u0438 verification", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec", "label": "spec.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "label": "Frontend FSD Broker Pilot", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Broker Pilot", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 9}, {"id": "frontend_fsd_broker_pilot_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u044f_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "label": "\u0418\u0435\u0440\u0430\u0440\u0445\u0438\u044f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0435\u0440\u0430\u0440\u0445\u0438\u044f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_broker_pilot_spec_1_\u043f\u0435\u0440\u0432\u044b\u0439_fsd_\u0441\u0440\u0435\u0437_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d_broker_\u0434\u043e\u043c\u0435\u043d\u043e\u043c", "label": "1. \u041f\u0435\u0440\u0432\u044b\u0439 FSD-\u0441\u0440\u0435\u0437 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d broker-\u0434\u043e\u043c\u0435\u043d\u043e\u043c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041f\u0435\u0440\u0432\u044b\u0439 FSD-\u0441\u0440\u0435\u0437 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d broker-\u0434\u043e\u043c\u0435\u043d\u043e\u043c", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_2_broker_\u043a\u043e\u0434_\u0434\u043e\u043b\u0436\u0435\u043d_\u0431\u044b\u0442\u044c_\u0440\u0430\u0437\u0434\u0435\u043b\u0451\u043d_\u043f\u043e_fsd_\u0441\u043b\u043e\u044f\u043c", "label": "2. Broker-\u043a\u043e\u0434 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0451\u043d \u043f\u043e FSD-\u0441\u043b\u043e\u044f\u043c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Broker-\u043a\u043e\u0434 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0451\u043d \u043f\u043e FSD-\u0441\u043b\u043e\u044f\u043c", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_3_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u0441\u0440\u0435\u0437\u043e\u0432_\u0434\u043e\u043b\u0436\u043d\u044b_\u0431\u044b\u0442\u044c_\u044f\u0432\u043d\u044b\u043c\u0438", "label": "3. \u0413\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u0440\u0435\u0437\u043e\u0432 \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u044f\u0432\u043d\u044b\u043c\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0413\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u0440\u0435\u0437\u043e\u0432 \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u044f\u0432\u043d\u044b\u043c\u0438", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_4_query_\u043b\u043e\u0433\u0438\u043a\u0430_\u0447\u0442\u0435\u043d\u0438\u044f_\u0434\u043e\u043b\u0436\u043d\u0430_\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_\u0434\u043e\u043c\u0435\u043d\u043d\u044b\u043c_\u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "label": "4. Query-\u043b\u043e\u0433\u0438\u043a\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u043c\u0435\u043d\u043d\u044b\u043c \u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Query-\u043b\u043e\u0433\u0438\u043a\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u043c\u0435\u043d\u043d\u044b\u043c \u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_5_\u043e\u0431\u0449\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043d\u0435_\u0434\u043e\u043b\u0436\u043d\u0430_\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f_broker_specific", "label": "5. \u041e\u0431\u0449\u0430\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f broker-specific", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u041e\u0431\u0449\u0430\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f broker-specific", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_6_\u0442\u0435\u0441\u0442\u044b_\u0434\u043e\u043b\u0436\u043d\u044b_\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_\u043d\u043e\u0432\u044b\u043c_\u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "label": "6. \u0422\u0435\u0441\u0442\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u043c \u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0422\u0435\u0441\u0442\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u043c \u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_7_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_ui_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "7. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 UI \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 UI \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "\u041d\u0435 \u0446\u0435\u043b\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0446\u0435\u043b\u0438", "community": 128, "community_name": "Community 128", "source_file": "docs/features/frontend-fsd-broker-pilot/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_tasks", "label": "tasks.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 2}, {"id": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "Frontend FSD Broker Pilot \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Broker Pilot \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_broker_pilot_tasks_1_fsd_entrypoints", "label": "1. FSD entrypoints", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. FSD entrypoints", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_tasks_2_broker_account_slice", "label": "2. Broker account slice", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Broker account slice", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_tasks_3_broker_position_slice", "label": "3. Broker position slice", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Broker position slice", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_tasks_4_broker_operation_slice", "label": "4. Broker operation slice", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Broker operation slice", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_broker_pilot_tasks_5_cleanup_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "5. Cleanup \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Cleanup \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 141, "community_name": "Community 141", "source_file": "docs/features/frontend-fsd-broker-pilot/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "label": "Frontend FSD Cleanup \u2014 \u043f\u043b\u0430\u043d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Cleanup \u2014 \u043f\u043b\u0430\u043d", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 9}, {"id": "frontend_fsd_cleanup_plan_\u043e\u0431\u0449\u0438\u0439_\u043f\u043e\u0434\u0445\u043e\u0434", "label": "\u041e\u0431\u0449\u0438\u0439 \u043f\u043e\u0434\u0445\u043e\u0434", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0449\u0438\u0439 \u043f\u043e\u0434\u0445\u043e\u0434", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_1_\u0440\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c_\u0446\u0435\u043f\u043e\u0447\u043a\u0443_entity_shims_\u043a_api_broker_ts", "label": "\u0428\u0430\u0433 1. \u0420\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0446\u0435\u043f\u043e\u0447\u043a\u0443 entity shims \u043a `api/broker.ts`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 1. \u0420\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0446\u0435\u043f\u043e\u0447\u043a\u0443 entity shims \u043a `api/broker.ts`", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_2_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_\u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439_shim_\u043d\u0430_fsd_\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "label": "\u0428\u0430\u0433 2. \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439 shim \u043d\u0430 FSD-\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 2. \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439 shim \u043d\u0430 FSD-\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "label": "\u0428\u0430\u0433 3. \u0423\u0434\u0430\u043b\u0438\u0442\u044c shim-\u0444\u0430\u0439\u043b\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 3. \u0423\u0434\u0430\u043b\u0438\u0442\u044c shim-\u0444\u0430\u0439\u043b\u044b", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_cleanup_plan_api_\u043a\u0440\u043e\u043c\u0435_api_screener_ts", "label": "api/ (\u043a\u0440\u043e\u043c\u0435 api/screener.ts)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api/ (\u043a\u0440\u043e\u043c\u0435 api/screener.ts)", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_hooks_\u043a\u0440\u043e\u043c\u0435_hooks_usescreener_ts", "label": "hooks/ (\u043a\u0440\u043e\u043c\u0435 hooks/useScreener.ts)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hooks/ (\u043a\u0440\u043e\u043c\u0435 hooks/useScreener.ts)", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_context", "label": "context/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "context/", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_components_\u043a\u0440\u043e\u043c\u0435_components_screener_\u0438_components_portfolios", "label": "components/ (\u043a\u0440\u043e\u043c\u0435 components/screener/ \u0438 components/portfolios/)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "components/ (\u043a\u0440\u043e\u043c\u0435 components/screener/ \u0438 components/portfolios/)", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_pages_flat_shims", "label": "pages/ flat shims", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pages/ flat shims", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_pages_broker_\u0432\u0435\u0441\u044c_\u043a\u0430\u0442\u0430\u043b\u043e\u0433", "label": "pages/broker/ (\u0432\u0435\u0441\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pages/broker/ (\u0432\u0435\u0441\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433)", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u043a\u043e\u0440\u0435\u043d\u044c_src", "label": "\u041a\u043e\u0440\u0435\u043d\u044c src/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u0440\u0435\u043d\u044c src/", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_4_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u044b_\u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u043a_shim_\u0444\u0430\u0439\u043b\u0430\u043c", "label": "\u0428\u0430\u0433 4. \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u044b, \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043a shim-\u0444\u0430\u0439\u043b\u0430\u043c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 4. \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u044b, \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043a shim-\u0444\u0430\u0439\u043b\u0430\u043c", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_5_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_api_broker_ts", "label": "\u0428\u0430\u0433 5. \u0423\u0434\u0430\u043b\u0438\u0442\u044c `api/broker.ts`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 5. \u0423\u0434\u0430\u043b\u0438\u0442\u044c `api/broker.ts`", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_6_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "\u0428\u0430\u0433 6. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 6. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_7_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "\u0428\u0430\u0433 7. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0433 7. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 129, "community_name": "Community 129", "source_file": "docs/features/frontend-fsd-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "label": "Frontend FSD Cleanup", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Cleanup", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_cleanup_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_cleanup_spec_\u0443\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435_shim_\u0444\u0430\u0439\u043b\u044b_re_export_only", "label": "\u0423\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435 shim-\u0444\u0430\u0439\u043b\u044b (re-export only)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435 shim-\u0444\u0430\u0439\u043b\u044b (re-export only)", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u043f\u0435\u0440\u0435\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u044b\u0435_entity_api_\u0440\u0430\u0437\u0440\u044b\u0432_\u0446\u0435\u043f\u043e\u0447\u043a\u0438_\u043a_api_broker_ts", "label": "\u041f\u0435\u0440\u0435\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u044b\u0435 entity API (\u0440\u0430\u0437\u0440\u044b\u0432 \u0446\u0435\u043f\u043e\u0447\u043a\u0438 \u043a `api/broker.ts`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u044b\u0435 entity API (\u0440\u0430\u0437\u0440\u044b\u0432 \u0446\u0435\u043f\u043e\u0447\u043a\u0438 \u043a `api/broker.ts`)", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u0443\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0439_\u043c\u0451\u0440\u0442\u0432\u044b\u0439_\u043a\u043e\u0434", "label": "\u0423\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0439 \u043c\u0451\u0440\u0442\u0432\u044b\u0439 \u043a\u043e\u0434", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0439 \u043c\u0451\u0440\u0442\u0432\u044b\u0439 \u043a\u043e\u0434", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u044b\u0435_\u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435_\u0441_shim_\u043d\u0430_fsd_\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "label": "\u041e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 (\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0441 shim \u043d\u0430 FSD-\u0438\u043c\u043f\u043e\u0440\u0442\u044b)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 (\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0441 shim \u043d\u0430 FSD-\u0438\u043c\u043f\u043e\u0440\u0442\u044b)", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "\u041e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 167, "community_name": "Community 167", "source_file": "docs/features/frontend-fsd-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks", "label": "tasks.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "Frontend FSD Cleanup \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Cleanup \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_cleanup_tasks_1_\u0440\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c_\u0446\u0435\u043f\u043e\u0447\u043a\u0443_entity_shims", "label": "1. \u0420\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0446\u0435\u043f\u043e\u0447\u043a\u0443 entity shims", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0420\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0446\u0435\u043f\u043e\u0447\u043a\u0443 entity shims", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_2_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_\u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439_shim_\u043d\u0430_fsd_\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "label": "2. \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439 shim \u043d\u0430 FSD-\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439 shim \u043d\u0430 FSD-\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "label": "3. \u0423\u0434\u0430\u043b\u0438\u0442\u044c shim-\u0444\u0430\u0439\u043b\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0423\u0434\u0430\u043b\u0438\u0442\u044c shim-\u0444\u0430\u0439\u043b\u044b", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_cleanup_tasks_api", "label": "api/", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api/", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_hooks", "label": "hooks/", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hooks/", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_context", "label": "context/", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "context/", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_components", "label": "components/", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "components/", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_pages_flat_shims", "label": "pages/ flat shims", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pages/ flat shims", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_pages_broker", "label": "pages/broker/", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pages/broker/", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_\u043a\u043e\u0440\u0435\u043d\u044c_src", "label": "\u041a\u043e\u0440\u0435\u043d\u044c src/", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u0440\u0435\u043d\u044c src/", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_4_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u044b_\u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u043a_shim_\u0444\u0430\u0439\u043b\u0430\u043c", "label": "4. \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u044b, \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043a shim-\u0444\u0430\u0439\u043b\u0430\u043c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u044b, \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043a shim-\u0444\u0430\u0439\u043b\u0430\u043c", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_5_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_api_broker_ts", "label": "5. \u0423\u0434\u0430\u043b\u0438\u0442\u044c api/broker.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0423\u0434\u0430\u043b\u0438\u0442\u044c api/broker.ts", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_6_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "6. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_cleanup_tasks_7_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "7. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 136, "community_name": "Community 136", "source_file": "docs/features/frontend-fsd-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan", "label": "plan.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan_fsd_final_cleanup_implementation_plan", "label": "FSD Final Cleanup Implementation Plan", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Final Cleanup Implementation Plan", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_fsd_final_plan_phase_a_move_brokerallocationchart_to_shared_ui", "label": "Phase A: Move BrokerAllocationChart to shared/ui/", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase A: Move BrokerAllocationChart to shared/ui/", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_final_plan_task_a1_create_shared_ui_broker_allocation_chart", "label": "Task A1: Create shared/ui/broker-allocation-chart", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task A1: Create shared/ui/broker-allocation-chart", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan_task_a2_update_consumers_and_delete_old_location", "label": "Task A2: Update consumers and delete old location", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task A2: Update consumers and delete old location", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan_phase_b_fix_cross_entity_deep_import_in_brokerdisplay_ts", "label": "Phase B: Fix cross-entity deep import in brokerDisplay.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase B: Fix cross-entity deep import in brokerDisplay.ts", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 2}, {"id": "frontend_fsd_final_plan_task_b1_update_import_path", "label": "Task B1: Update import path", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task B1: Update import path", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan_phase_c_add_missing_barrel_export", "label": "Phase C: Add missing barrel export", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase C: Add missing barrel export", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_final_plan_task_c1_export_brokeraccountsaggregate", "label": "Task C1: Export BrokerAccountsAggregate", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task C1: Export BrokerAccountsAggregate", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan_task_c2_update_consumer_to_use_barrel", "label": "Task C2: Update consumer to use barrel", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task C2: Update consumer to use barrel", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_plan_verification", "label": "Verification", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 2}, {"id": "frontend_fsd_final_plan_task_d1_run_tests_lint_build", "label": "Task D1: Run tests, lint, build", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task D1: Run tests, lint, build", "community": 168, "community_name": "Community 168", "source_file": "docs/features/frontend-fsd-final/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec", "label": "spec.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_fsd_final_cleanup", "label": "FSD Final Cleanup", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Final Cleanup", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_fsd_final_spec_goal", "label": "Goal", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Goal", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_requirements", "label": "Requirements", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Requirements", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 9}, {"id": "frontend_fsd_final_spec_r1_all_imports_use_path_aliases", "label": "R1: All imports use `@/` path aliases", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R1: All imports use `@/` path aliases", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r2_brokeraccountlayout_lives_in_widgets_layer", "label": "R2: BrokerAccountLayout lives in widgets layer", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R2: BrokerAccountLayout lives in widgets layer", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r3_entities_search_has_an_api_layer", "label": "R3: entities/search has an `api/` layer", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R3: entities/search has an `api/` layer", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r4_app_layer_uses_barrel_imports", "label": "R4: App layer uses barrel imports", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R4: App layer uses barrel imports", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r5_tests_use_path_aliases", "label": "R5: Tests use `@/` path aliases", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R5: Tests use `@/` path aliases", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r6_brokerallocationchart_lives_in_shared_ui", "label": "R6: BrokerAllocationChart lives in shared/ui", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R6: BrokerAllocationChart lives in shared/ui", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r7_no_cross_entity_deep_relative_imports", "label": "R7: No cross-entity deep relative imports", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R7: No cross-entity deep relative imports", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_r8_all_entities_fully_export_their_public_api", "label": "R8: All entities fully export their public API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R8: All entities fully export their public API", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_constraints", "label": "Constraints", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Constraints", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_spec_out_of_scope", "label": "Out of Scope", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Out of Scope", "community": 148, "community_name": "Community 148", "source_file": "docs/features/frontend-fsd-final/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks", "label": "tasks.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "label": "Tasks: FSD Final Cleanup", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Tasks: FSD Final Cleanup", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 10}, {"id": "frontend_fsd_final_tasks_phase_1_fix_import_aliases", "label": "Phase 1: Fix import aliases", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Fix import aliases", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_2_move_brokeraccountlayout_to_widgets", "label": "Phase 2: Move BrokerAccountLayout to widgets", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Move BrokerAccountLayout to widgets", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_3_add_api_to_entities_search", "label": "Phase 3: Add api/ to entities/search", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Add api/ to entities/search", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_4_fix_app_layer_deep_imports", "label": "Phase 4: Fix app layer deep imports", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: Fix app layer deep imports", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_5_fix_test_relative_imports", "label": "Phase 5: Fix test relative imports", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5: Fix test relative imports", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_a_move_brokerallocationbar_to_shared_ui", "label": "Phase A: Move BrokerAllocationBar to shared/ui/", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase A: Move BrokerAllocationBar to shared/ui/", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_b_fix_cross_entity_deep_import", "label": "Phase B: Fix cross-entity deep import", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase B: Fix cross-entity deep import", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_phase_c_add_missing_barrel_export", "label": "Phase C: Add missing barrel export", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase C: Add missing barrel export", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_final_tasks_verification", "label": "Verification", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification", "community": 177, "community_name": "Community 177", "source_file": "docs/features/frontend-fsd-final/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan", "label": "plan.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 2}, {"id": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "label": "Frontend FSD Market Pages Implementation Plan", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Market Pages Implementation Plan", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_market_pages_plan_\u0431\u0430\u0437\u043e\u0432\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "label": "\u0411\u0430\u0437\u043e\u0432\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0430\u0437\u043e\u0432\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_market_pages_plan_create", "label": "Create", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Create", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_modify", "label": "Modify", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Modify", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_\u0446\u0435\u043b\u0435\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "\u041f\u043e\u0442\u043e\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0442\u043e\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 4}, {"id": "frontend_fsd_market_pages_plan_stock_page", "label": "Stock page", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stock page", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_bond_page", "label": "Bond page", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Bond page", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_search_flow", "label": "Search flow", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Search flow", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_fsd_market_pages_plan_phase_1_search_entity_\u0438_searchbar_widget", "label": "Phase 1: Search entity \u0438 SearchBar widget", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Search entity \u0438 SearchBar widget", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_phase_2_market_widgets", "label": "Phase 2: Market widgets", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Market widgets", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_phase_3_market_pages_\u0438_route_imports", "label": "Phase 3: Market pages \u0438 route imports", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Market pages \u0438 route imports", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_phase_4_documentation_adr_\u0438_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_verification", "label": "Phase 4: Documentation, ADR \u0438 \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f verification", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: Documentation, ADR \u0438 \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f verification", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_\u0440\u0438\u0441\u043a\u0438_\u0438_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u0447\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438 \u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0435 \u0442\u043e\u0447\u043a\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438 \u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0435 \u0442\u043e\u0447\u043a\u0438", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_plan_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f_\u043f\u043b\u0430\u043d\u0430", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u043d\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u043d\u0430", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec", "label": "spec.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "label": "Frontend FSD Market Pages", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Market Pages", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 9}, {"id": "frontend_fsd_market_pages_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u044f_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "label": "\u0418\u0435\u0440\u0430\u0440\u0445\u0438\u044f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0435\u0440\u0430\u0440\u0445\u0438\u044f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_market_pages_spec_1_\u0432\u0441\u0435_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_fsd_\u0441\u043b\u043e\u044f\u043c", "label": "1. \u0412\u0441\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 FSD-\u0441\u043b\u043e\u044f\u043c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0412\u0441\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 FSD-\u0441\u043b\u043e\u044f\u043c", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_1_1_ownership_\u0434\u0430\u043d\u043d\u044b\u0445_\u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f_\u0443_pages_\u0438_entities", "label": "1.1 Ownership \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f \u0443 pages \u0438 entities", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Ownership \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f \u0443 pages \u0438 entities", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_2_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u0441\u0440\u0435\u0437\u043e\u0432_\u044f\u0432\u043d\u044b\u0435_\u0447\u0435\u0440\u0435\u0437_public_api", "label": "2. \u0413\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u0440\u0435\u0437\u043e\u0432 \u044f\u0432\u043d\u044b\u0435 \u0447\u0435\u0440\u0435\u0437 public API", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0413\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u0440\u0435\u0437\u043e\u0432 \u044f\u0432\u043d\u044b\u0435 \u0447\u0435\u0440\u0435\u0437 public API", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_3_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_ui_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "3. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 UI \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 UI \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_4_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c_\u0447\u0435\u0440\u0435\u0437_shim_\u0444\u0430\u0439\u043b\u044b", "label": "4. \u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c \u0447\u0435\u0440\u0435\u0437 shim-\u0444\u0430\u0439\u043b\u044b", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c \u0447\u0435\u0440\u0435\u0437 shim-\u0444\u0430\u0439\u043b\u044b", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_5_\u0442\u0435\u0441\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_\u043d\u043e\u0432\u044b\u043c_\u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "label": "5. \u0422\u0435\u0441\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u043d\u043e\u0432\u044b\u043c \u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0422\u0435\u0441\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u043d\u043e\u0432\u044b\u043c \u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_6_\u043e\u0431\u0449\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f_\u0432_shared", "label": "6. \u041e\u0431\u0449\u0430\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f \u0432 shared", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u041e\u0431\u0449\u0430\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f \u0432 shared", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "\u041d\u0435 \u0446\u0435\u043b\u0438", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0446\u0435\u043b\u0438", "community": 130, "community_name": "Community 130", "source_file": "docs/features/frontend-fsd-market-pages/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_tasks", "label": "tasks.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/tasks.md", "file_type": "document", "degree": 2}, {"id": "frontend_fsd_market_pages_tasks_frontend_fsd_market_pages_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "Frontend FSD Market Pages \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Market Pages \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/tasks.md", "file_type": "document", "degree": 5}, {"id": "frontend_fsd_market_pages_tasks_1_search_slice", "label": "1. Search slice", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Search slice", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_tasks_2_market_widgets", "label": "2. Market widgets", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Market widgets", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_tasks_3_market_pages", "label": "3. Market pages", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Market pages", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_market_pages_tasks_4_docs_\u0438_verification", "label": "4. Docs \u0438 verification", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Docs \u0438 verification", "community": 101, "community_name": "Community 101", "source_file": "docs/features/frontend-fsd-market-pages/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "label": "Frontend FSD \u2014 Portfolio Pages Implementation Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD \u2014 Portfolio Pages Implementation Plan", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_portfolios_plan_task_1_create_widget_directory_structure_and_barrel_files", "label": "Task 1: Create widget directory structure and barrel files", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Create widget directory structure and barrel files", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_plan_task_2_update_pages_to_use_widgets", "label": "Task 2: Update pages to use widgets", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Update pages to use widgets", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_plan_task_3_remove_flat_components_portfolios", "label": "Task 3: Remove flat components/portfolios/", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Remove flat components/portfolios/", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_plan_task_4_update_documentation", "label": "Task 4: Update documentation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Update documentation", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_plan_task_5_final_verification", "label": "Task 5: Final verification", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Final verification", "community": 232, "community_name": "Community 232", "source_file": "docs/features/frontend-fsd-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec", "label": "spec.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "label": "Frontend FSD \u2014 Portfolio Pages", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD \u2014 Portfolio Pages", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_portfolios_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_portfolios_spec_\u043c\u0438\u0433\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "\u041c\u0438\u0433\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u0433\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_\u0443\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "\u0423\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_\u0441\u043f\u0438\u0441\u043e\u043a_\u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432", "label": "\u0421\u043f\u0438\u0441\u043e\u043a \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043f\u0438\u0441\u043e\u043a \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 178, "community_name": "Community 178", "source_file": "docs/features/frontend-fsd-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_tasks", "label": "tasks.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "label": "Frontend FSD \u2014 Portfolio Pages Tasks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD \u2014 Portfolio Pages Tasks", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_portfolios_tasks_1_create_widget_directory_structure_and_barrel_files", "label": "1. Create widget directory structure and barrel files", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Create widget directory structure and barrel files", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_tasks_2_update_pages_to_use_widgets", "label": "2. Update pages to use widgets", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Update pages to use widgets", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_tasks_3_remove_flat_components_portfolios", "label": "3. Remove flat components/portfolios/", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Remove flat components/portfolios/", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_tasks_4_update_documentation", "label": "4. Update documentation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Update documentation", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_portfolios_tasks_5_final_verification", "label": "5. Final verification", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Final verification", "community": 233, "community_name": "Community 233", "source_file": "docs/features/frontend-fsd-portfolios/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_plan_frontend_fsd_screener_implementation_plan", "label": "Frontend FSD Screener \u2014 Implementation Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Screener \u2014 Implementation Plan", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 4}, {"id": "frontend_fsd_screener_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 4}, {"id": "frontend_fsd_screener_plan_create", "label": "Create", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Create", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_plan_modify", "label": "Modify", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Modify", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_plan_delete", "label": "Delete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_plan_verification", "label": "Verification", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification", "community": 222, "community_name": "Community 222", "source_file": "docs/features/frontend-fsd-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec", "label": "spec.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_frontend_fsd_screener", "label": "Frontend FSD Screener", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Screener", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_fsd_screener_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 4}, {"id": "frontend_fsd_screener_spec_1_features_\u0441\u043b\u043e\u0439", "label": "1. Features \u0441\u043b\u043e\u0439", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Features \u0441\u043b\u043e\u0439", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_2_pages_\u0441\u043b\u043e\u0439", "label": "2. Pages \u0441\u043b\u043e\u0439", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Pages \u0441\u043b\u043e\u0439", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_3_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "label": "3. \u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438_acceptance_criteria", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438 (Acceptance Criteria)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438 (Acceptance Criteria)", "community": 192, "community_name": "Community 192", "source_file": "docs/features/frontend-fsd-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks", "label": "tasks.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "Frontend FSD Screener \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Screener \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 8}, {"id": "frontend_fsd_screener_tasks_1_api_\u0441\u043b\u043e\u0439", "label": "1. API \u0441\u043b\u043e\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. API \u0441\u043b\u043e\u0439", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_2_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "2. \u041c\u043e\u0434\u0435\u043b\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u041c\u043e\u0434\u0435\u043b\u044c", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_3_ui_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "3. UI \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. UI \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_4_pages", "label": "4. Pages", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Pages", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_5_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "5. \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_6_\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435_legacy", "label": "6. \u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 legacy", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 legacy", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_screener_tasks_7_verification", "label": "7. Verification", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Verification", "community": 208, "community_name": "Community 208", "source_file": "docs/features/frontend-fsd-screener/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "label": "Frontend FSD Shared Layer \u2014 Implementation Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Shared Layer \u2014 Implementation Plan", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 7}, {"id": "frontend_fsd_shared_layer_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 4}, {"id": "frontend_fsd_shared_layer_plan_\u0431\u0443\u0434\u0443\u0442_\u0441\u043e\u0437\u0434\u0430\u043d\u044b", "label": "\u0411\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u044b", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_\u0431\u0443\u0434\u0443\u0442_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b_\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f_re_export_shims", "label": "\u0411\u0443\u0434\u0443\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b (\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f re-export shims)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0443\u0434\u0443\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b (\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f re-export shims)", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_\u0431\u0443\u0434\u0443\u0442_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_shared", "label": "\u0411\u0443\u0434\u0443\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b (\u0438\u043c\u043f\u043e\u0440\u0442\u044b \u2192 @/shared/)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0443\u0434\u0443\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b (\u0438\u043c\u043f\u043e\u0440\u0442\u044b \u2192 @/shared/)", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_task_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_shared_api_re_export_shims", "label": "Task 1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c shared/api/ + re-export shims", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c shared/api/ + re-export shims", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_task_2_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_shared_ui_re_export_shims", "label": "Task 2: \u0421\u043e\u0437\u0434\u0430\u0442\u044c shared/ui/ + re-export shims", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u0421\u043e\u0437\u0434\u0430\u0442\u044c shared/ui/ + re-export shims", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_task_3_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_fsd_entities_widgets_pages_\u043d\u0430_shared", "label": "Task 3: \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u043c\u043f\u043e\u0440\u0442\u044b FSD entities/widgets/pages \u043d\u0430 @/shared/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u043c\u043f\u043e\u0440\u0442\u044b FSD entities/widgets/pages \u043d\u0430 @/shared/", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_task_4_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_legacy_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_\u043d\u0430_shared", "label": "Task 4: \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c legacy \u0438\u043c\u043f\u043e\u0440\u0442\u044b \u043d\u0430 @/shared/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c legacy \u0438\u043c\u043f\u043e\u0440\u0442\u044b \u043d\u0430 @/shared/", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_plan_task_5_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "Task 5: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 179, "community_name": "Community 179", "source_file": "docs/features/frontend-fsd-shared-layer/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec", "label": "spec.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "label": "Frontend FSD Shared Layer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend FSD Shared Layer", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 7}, {"id": "frontend_fsd_shared_layer_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_fsd_shared_layer_spec_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "\u0412\u0445\u043e\u0434\u0438\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0445\u043e\u0434\u0438\u0442", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_\u043d\u0435_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "\u041d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_fsd_shared_layer_spec_1_shared_api_\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442_\u0431\u0430\u0437\u043e\u0432\u0443\u044e_http_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "label": "1. shared/api/ \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0431\u0430\u0437\u043e\u0432\u0443\u044e HTTP-\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. shared/api/ \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0431\u0430\u0437\u043e\u0432\u0443\u044e HTTP-\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_2_shared_ui_\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442_\u0442\u043e\u043b\u044c\u043a\u043e_truly_generic_ui_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "2. shared/ui/ \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e truly generic UI-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. shared/ui/ \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e truly generic UI-\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_3_coexistence_\u0447\u0435\u0440\u0435\u0437_shims", "label": "3. Coexistence \u0447\u0435\u0440\u0435\u0437 shims", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Coexistence \u0447\u0435\u0440\u0435\u0437 shims", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_4_fsd_\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u0438_\u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442_\u0447\u0435\u0440\u0435\u0437_shared", "label": "4. FSD-\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442 \u0447\u0435\u0440\u0435\u0437 @/shared/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. FSD-\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442 \u0447\u0435\u0440\u0435\u0437 @/shared/", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 149, "community_name": "Community 149", "source_file": "docs/features/frontend-fsd-shared-layer/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_tasks", "label": "tasks.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 280, "community_name": "Community 280", "source_file": "docs/features/frontend-fsd-shared-layer/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_fsd_shared_layer_tasks_tasks_frontend_fsd_shared_layer", "label": "Tasks: Frontend FSD Shared Layer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tasks: Frontend FSD Shared Layer", "community": 280, "community_name": "Community 280", "source_file": "docs/features/frontend-fsd-shared-layer/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_plan", "label": "plan.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "label": "Frontend Infrastructure Hardening Implementation Plan", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Infrastructure Hardening Implementation Plan", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 6}, {"id": "frontend_infrastructure_hardening_plan_task_1_browser_mock_mode_wiring", "label": "Task 1: Browser mock mode wiring", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Browser mock mode wiring", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_plan_task_2_env_validation", "label": "Task 2: Env validation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Env validation", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_plan_task_3_tooling_consistency", "label": "Task 3: Tooling consistency", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Tooling consistency", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_plan_task_4_contract_freshness", "label": "Task 4: Contract freshness", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Contract freshness", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_plan_task_5_verification", "label": "Task 5: Verification", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Verification", "community": 234, "community_name": "Community 234", "source_file": "docs/features/frontend-infrastructure-hardening/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec", "label": "spec.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "label": "Frontend Infrastructure Hardening", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Infrastructure Hardening", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_infrastructure_hardening_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_infrastructure_hardening_spec_1_browser_mock_mode", "label": "1. Browser mock mode", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Browser mock mode", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_2_env_validation", "label": "2. Env validation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Env validation", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_3_tooling_consistency", "label": "3. Tooling consistency", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Tooling consistency", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_4_contract_freshness", "label": "4. Contract freshness", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Contract freshness", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 180, "community_name": "Community 180", "source_file": "docs/features/frontend-infrastructure-hardening/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_tasks", "label": "tasks.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "label": "Frontend Infrastructure Hardening \u2014 tasks", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Infrastructure Hardening \u2014 tasks", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 6}, {"id": "frontend_infrastructure_hardening_tasks_1_\u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c_browser_mock_mode", "label": "1. \u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c browser mock mode", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c browser mock mode", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_tasks_2_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_env", "label": "2. \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f env", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f env", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_tasks_3_tooling_consistency", "label": "3. Tooling consistency", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Tooling consistency", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_tasks_4_contract_freshness", "label": "4. Contract freshness", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Contract freshness", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_hardening_tasks_5_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "5. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 235, "community_name": "Community 235", "source_file": "docs/features/frontend-infrastructure-hardening/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan", "label": "plan.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_frontend_infrastructure_tooling_implementation_plan", "label": "Frontend Infrastructure Tooling \u2014 Implementation Plan", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Infrastructure Tooling \u2014 Implementation Plan", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_infrastructure_tooling_plan_architecture_decisions", "label": "Architecture Decisions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture Decisions", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 3}, {"id": "frontend_infrastructure_tooling_plan_adr_references", "label": "ADR references", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR references", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_non_adr_decisions", "label": "Non-ADR decisions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Non-ADR decisions", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_phases", "label": "Phases", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Phases", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 7}, {"id": "frontend_infrastructure_tooling_plan_phase_1_ky_migration", "label": "Phase 1 \u2014 ky Migration", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1 \u2014 ky Migration", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_phase_2_biome", "label": "Phase 2 \u2014 Biome", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2 \u2014 Biome", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_phase_3_unify_api_types", "label": "Phase 3 \u2014 Unify API Types", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3 \u2014 Unify API Types", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_phase_4_msw_browser", "label": "Phase 4 \u2014 MSW Browser", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4 \u2014 MSW Browser", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_phase_5_env_validation", "label": "Phase 5 \u2014 Env Validation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5 \u2014 Env Validation", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_phase_6_tanstack_router", "label": "Phase 6 \u2014 TanStack Router", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 6 \u2014 TanStack Router", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_dependencies", "label": "Dependencies", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_plan_rollback_strategy", "label": "Rollback Strategy", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rollback Strategy", "community": 150, "community_name": "Community 150", "source_file": "docs/features/frontend-infrastructure-tooling/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec", "label": "spec.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_frontend_infrastructure_tooling", "label": "Frontend Infrastructure Tooling", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Infrastructure Tooling", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_infrastructure_tooling_spec_purpose", "label": "Purpose", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Purpose", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_requirements", "label": "Requirements", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Requirements", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 7}, {"id": "frontend_infrastructure_tooling_spec_1_msw_browser_mode", "label": "1. MSW Browser Mode", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. MSW Browser Mode", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_2_biome_\u0432\u043c\u0435\u0441\u0442\u043e_eslint_prettier", "label": "2. Biome \u0432\u043c\u0435\u0441\u0442\u043e ESLint + Prettier", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Biome \u0432\u043c\u0435\u0441\u0442\u043e ESLint + Prettier", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_3_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0442\u0438\u043f\u043e\u0432_api", "label": "3. \u0423\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0442\u0438\u043f\u043e\u0432 API", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0423\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0442\u0438\u043f\u043e\u0432 API", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_4_\u043f\u043e\u043b\u043d\u0430\u044f_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u043d\u0430_ky", "label": "4. \u041f\u043e\u043b\u043d\u0430\u044f \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u043d\u0430 ky", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u041f\u043e\u043b\u043d\u0430\u044f \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u043d\u0430 ky", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_5_tanstack_router_lazy_loading", "label": "5. TanStack Router + Lazy Loading", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. TanStack Router + Lazy Loading", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_6_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "6. \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_spec_out_of_scope", "label": "Out of Scope", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Out of Scope", "community": 169, "community_name": "Community 169", "source_file": "docs/features/frontend-infrastructure-tooling/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks", "label": "tasks.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "label": "Frontend Infrastructure Tooling \u2014 Tasks", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Infrastructure Tooling \u2014 Tasks", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 7}, {"id": "frontend_infrastructure_tooling_tasks_phase_1_ky_migration", "label": "Phase 1: ky Migration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: ky Migration", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_phase_2_biome_migration", "label": "Phase 2: Biome Migration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Biome Migration", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_phase_3_unify_api_types", "label": "Phase 3: Unify API Types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Unify API Types", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_phase_4_msw_browser", "label": "Phase 4: MSW Browser", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: MSW Browser", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_phase_5_env_validation", "label": "Phase 5: Env Validation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5: Env Validation", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "label": "Phase 6: TanStack Router", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 6: TanStack Router", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 7}, {"id": "frontend_infrastructure_tooling_tasks_setup", "label": "Setup", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Setup", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_route_files", "label": "Route files", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Route files", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_router_integration", "label": "Router integration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Router integration", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_replace_imports", "label": "Replace imports", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Replace imports", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_tests", "label": "Tests", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tests", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_tasks_devtools", "label": "Devtools", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Devtools", "community": 151, "community_name": "Community 151", "source_file": "docs/features/frontend-infrastructure-tooling/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan", "label": "plan.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "label": "plan.md - \u041f\u043b\u0430\u043d \u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md - \u041f\u043b\u0430\u043d \u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 14}, {"id": "frontend_libraries_plan_\u043e\u0431\u0437\u043e\u0440", "label": "\u041e\u0431\u0437\u043e\u0440", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435_\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "label": "\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 3}, {"id": "frontend_libraries_plan_\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430_\u0440\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0433\u043e_\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e_\u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440\u0430", "label": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0440\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0440\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b_\u043a\u043e\u0434\u0430_\u0438_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "\u041f\u0430\u0442\u0442\u0435\u0440\u043d\u044b \u043a\u043e\u0434\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0430\u0442\u0442\u0435\u0440\u043d\u044b \u043a\u043e\u0434\u0430 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_libraries_plan_\u0444\u043e\u0440\u043c\u044b_\u043f\u043e_\u0448\u0430\u0431\u043b\u043e\u043d\u0443", "label": "\u0424\u043e\u0440\u043c\u044b \u043f\u043e \u0448\u0430\u0431\u043b\u043e\u043d\u0443", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u043e\u0440\u043c\u044b \u043f\u043e \u0448\u0430\u0431\u043b\u043e\u043d\u0443", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e_\u0440\u0430\u0431\u043e\u0442\u044b_\u0441_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u043c\u0438", "label": "\u0423\u0434\u043e\u0431\u0441\u0442\u0432\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u043c\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0434\u043e\u0431\u0441\u0442\u0432\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u043c\u0438", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u0434\u0430\u043d\u043d\u044b\u043c\u0438", "label": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "label": "\u042d\u0442\u0430\u043f\u044b \u0440\u0430\u0431\u043e\u0442\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f\u044b \u0440\u0430\u0431\u043e\u0442\u044b", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 11}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_1_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430_\u0438_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "\u042d\u0442\u0430\u043f 1: \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 1: \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_2_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_http_\u043a\u043b\u0438\u0435\u043d\u0442\u0430_ky", "label": "\u042d\u0442\u0430\u043f 2: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 HTTP-\u043a\u043b\u0438\u0435\u043d\u0442\u0430 (ky)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 2: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 HTTP-\u043a\u043b\u0438\u0435\u043d\u0442\u0430 (ky)", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_3_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_zustand_stores", "label": "\u042d\u0442\u0430\u043f 3: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 Zustand stores", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 3: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 Zustand stores", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_4_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_mui_\u0442\u0435\u043c\u0443", "label": "\u042d\u0442\u0430\u043f 4: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 MUI + \u0442\u0435\u043c\u0443", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 4: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 MUI + \u0442\u0435\u043c\u0443", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_5_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0434\u0430\u0442\u044b_dayjs", "label": "\u042d\u0442\u0430\u043f 5: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0434\u0430\u0442\u044b (dayjs)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 5: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0434\u0430\u0442\u044b (dayjs)", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_6_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0444\u043e\u0440\u043c_react_hook_form_zod", "label": "\u042d\u0442\u0430\u043f 6: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0444\u043e\u0440\u043c (react-hook-form + zod)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 6: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0444\u043e\u0440\u043c (react-hook-form + zod)", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_7_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0443\u0442\u0438\u043b\u0438\u0442\u044b_clsx", "label": "\u042d\u0442\u0430\u043f 7: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0443\u0442\u0438\u043b\u0438\u0442\u044b clsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 7: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0443\u0442\u0438\u043b\u0438\u0442\u044b clsx", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_8_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0442\u0430\u0431\u043b\u0438\u0446_tanstack_react_table", "label": "\u042d\u0442\u0430\u043f 8: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0430\u0431\u043b\u0438\u0446 (TanStack react-table)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 8: \u0412\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0430\u0431\u043b\u0438\u0446 (TanStack react-table)", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_9_\u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430_\u043a\u043e\u0434\u043e\u0432\u043e\u0439_\u0431\u0430\u0437\u044b", "label": "\u042d\u0442\u0430\u043f 9: \u041f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u043a\u043e\u0434\u043e\u0432\u043e\u0439 \u0431\u0430\u0437\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 9: \u041f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u043a\u043e\u0434\u043e\u0432\u043e\u0439 \u0431\u0430\u0437\u044b", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_10_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_\u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430", "label": "\u042d\u0442\u0430\u043f 10: \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 10: \u0412\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0440\u0438\u0441\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_libraries_plan_1_\u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438_mui_\u0441_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438_css_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438", "label": "1. \u0421\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 MUI \u0441 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438 CSS-\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0421\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 MUI \u0441 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438 CSS-\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_2_\u0437\u0430\u043c\u0435\u043d\u0430_\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438_\u0441_\u0442\u043e\u043a\u0435\u043d\u0430\u043c\u0438_\u043d\u0430_zustand", "label": "2. \u0417\u0430\u043c\u0435\u043d\u0430 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u0442\u043e\u043a\u0435\u043d\u0430\u043c\u0438 \u043d\u0430 Zustand", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0417\u0430\u043c\u0435\u043d\u0430 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u0442\u043e\u043a\u0435\u043d\u0430\u043c\u0438 \u043d\u0430 Zustand", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_3_\u0440\u0438\u0441\u043a\u0438_\u0441\u0442\u0430\u0440\u0435\u043d\u0438\u044f_\u0434\u043e\u043a\u0430_\u0432_\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "label": "3. \u0420\u0438\u0441\u043a\u0438 \u0441\u0442\u0430\u0440\u0435\u043d\u0438\u044f \u0434\u043e\u043a\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0420\u0438\u0441\u043a\u0438 \u0441\u0442\u0430\u0440\u0435\u043d\u0438\u044f \u0434\u043e\u043a\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_4_\u043d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439_\u043d\u0430_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435_\u0444\u0430\u043a\u0442\u044b", "label": "4. \u041d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435/\u0444\u0430\u043a\u0442\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u041d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435/\u0444\u0430\u043a\u0442\u044b", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u043e\u0431\u0443\u0447\u0435\u043d\u0438\u0435_\u0438_\u0438\u043d\u0442\u0435\u0440\u043d\u0430\u0442\u0443\u0440\u0430", "label": "\u041e\u0431\u0443\u0447\u0435\u043d\u0438\u0435 \u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0430\u0442\u0443\u0440\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0443\u0447\u0435\u043d\u0438\u0435 \u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0430\u0442\u0443\u0440\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u043f\u043e_\u043a\u0430\u0436\u0434\u043e\u043c\u0443_\u044d\u0442\u0430\u043f\u0443_\u0440\u0430\u0431\u043e\u0442\u044b", "label": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u044d\u0442\u0430\u043f\u0443 \u0440\u0430\u0431\u043e\u0442\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u044d\u0442\u0430\u043f\u0443 \u0440\u0430\u0431\u043e\u0442\u044b", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439_\u0444\u043e\u043d", "label": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0444\u043e\u043d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0444\u043e\u043d", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0439_\u0441\u043f\u0438\u0441\u043e\u043a_\u0430\u0432\u0442\u043e\u0440\u0430", "label": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0430\u0432\u0442\u043e\u0440\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0430\u0432\u0442\u043e\u0440\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0448\u0430\u0431\u043b\u043e\u043d_\u043a\u043e\u0434\u0430", "label": "\u0428\u0430\u0431\u043b\u043e\u043d \u043a\u043e\u0434\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0431\u043b\u043e\u043d \u043a\u043e\u0434\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435_\u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0441\u0442\u0438_\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439_\u0438_\u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0445_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432_\u0440\u0430\u0431\u043e\u0442\u044b_\u043d\u0430\u0434_\u0437\u0430\u0434\u0430\u0447\u0435\u0439", "label": "\u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0441\u0442\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u0437\u0430\u0434\u0430\u0447\u0435\u0439", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0441\u0442\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u0437\u0430\u0434\u0430\u0447\u0435\u0439", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0448\u0430\u0431\u043b\u043e\u043d_\u0440\u0438\u0441\u043a\u043e\u0432_\u043a\u043e\u043c\u0438\u0441\u0441\u0430\u0440\u0430", "label": "\u0428\u0430\u0431\u043b\u043e\u043d \u0440\u0438\u0441\u043a\u043e\u0432 \u043a\u043e\u043c\u0438\u0441\u0441\u0430\u0440\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0428\u0430\u0431\u043b\u043e\u043d \u0440\u0438\u0441\u043a\u043e\u0432 \u043a\u043e\u043c\u0438\u0441\u0441\u0430\u0440\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430", "label": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430\\\u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u0434\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_plan_\u0437\u0430\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439_\u0441\u043b\u043e\u0432\u0435\u0441\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430", "label": "\u0417\u0430\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u043b\u043e\u0432\u0435\u0441\u043d\u044b\u0439 \u043e\u0431\u0437\u043e\u0440 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u043b\u043e\u0432\u0435\u0441\u043d\u044b\u0439 \u043e\u0431\u0437\u043e\u0440 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430", "community": 54, "community_name": "Community 54", "source_file": "docs/features/frontend-libraries/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec", "label": "spec.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "label": "spec.md - \u0424\u0440\u043e\u043d\u0442\u0435\u043d\u0434 \u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 - \u0421\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0441\u0442\u0435\u043a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md - \u0424\u0440\u043e\u043d\u0442\u0435\u043d\u0434 \u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 - \u0421\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0441\u0442\u0435\u043a", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 7}, {"id": "frontend_libraries_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u044b", "label": "\u0420\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u044b", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_libraries_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_\u043f\u0440\u0438\u0435\u043c\u043b\u0435\u043c\u043e\u0441\u0442\u044c", "label": "\u041f\u0440\u0438\u0435\u043c\u043b\u0435\u043c\u043e\u0441\u0442\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0438\u0435\u043c\u043b\u0435\u043c\u043e\u0441\u0442\u044c", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f_\u0436\u0438\u0437\u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0436\u0438\u0437\u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c / \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0436\u0438\u0437\u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c / \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_spec_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0438\u043d\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0438\u043d\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0438\u043d\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 193, "community_name": "Community 193", "source_file": "docs/features/frontend-libraries/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks", "label": "tasks.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks_tasks_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "label": "tasks.md - \u0424\u0440\u043e\u043d\u0442\u0435\u043d\u0434 \u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 - \u0421\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0441\u0442\u0435\u043a", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md - \u0424\u0440\u043e\u043d\u0442\u0435\u043d\u0434 \u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 - \u0421\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0441\u0442\u0435\u043a", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 4}, {"id": "frontend_libraries_tasks_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks_\u0431\u0430\u0437\u043e\u0432\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "label": "\u0411\u0430\u0437\u043e\u0432\u0430\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u2014 \u2705 \u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0430\u0437\u043e\u0432\u0430\u044f \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u2014 \u2705 \u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 4}, {"id": "frontend_libraries_tasks_\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430", "label": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks_\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "label": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks_\u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435_\u0444\u0430\u0439\u043b\u044b_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "\u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b (\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b (\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430)", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks_\u043e\u0441\u0442\u0430\u0432\u0448\u0438\u0435\u0441\u044f_\u0437\u0430\u0434\u0430\u0447\u0438_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "\u041e\u0441\u0442\u0430\u0432\u0448\u0438\u0435\u0441\u044f \u0437\u0430\u0434\u0430\u0447\u0438 \u2014 \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0441\u0442\u0430\u0432\u0448\u0438\u0435\u0441\u044f \u0437\u0430\u0434\u0430\u0447\u0438 \u2014 \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 3}, {"id": "frontend_libraries_tasks_mid_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439_\u0441\u043f\u0440\u0438\u043d\u0442", "label": "MID-\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 (\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0441\u043f\u0440\u0438\u043d\u0442)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MID-\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 (\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0441\u043f\u0440\u0438\u043d\u0442)", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_libraries_tasks_low_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442_\u043f\u043e_\u043c\u0435\u0440\u0435_\u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438", "label": "LOW-\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 (\u043f\u043e \u043c\u0435\u0440\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LOW-\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 (\u043f\u043e \u043c\u0435\u0440\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438)", "community": 194, "community_name": "Community 194", "source_file": "docs/features/frontend-libraries/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_plan", "label": "plan.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "label": "Frontend Shared Boundary Cleanup Implementation Plan", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Shared Boundary Cleanup Implementation Plan", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 6}, {"id": "frontend_shared_boundary_cleanup_plan_task_1_audit_shared_public_boundaries", "label": "Task 1: Audit shared/public boundaries", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Audit shared/public boundaries", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_plan_task_2_narrow_the_shared_surface", "label": "Task 2: Narrow the shared surface", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Narrow the shared surface", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_plan_task_3_fix_ambiguous_cross_boundary_imports", "label": "Task 3: Fix ambiguous cross-boundary imports", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Fix ambiguous cross-boundary imports", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_plan_task_4_update_boundary_docs", "label": "Task 4: Update boundary docs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Update boundary docs", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_plan_task_5_verification", "label": "Task 5: Verification", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Verification", "community": 236, "community_name": "Community 236", "source_file": "docs/features/frontend-shared-boundary-cleanup/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec", "label": "spec.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "label": "Frontend Shared Boundary Cleanup", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Shared Boundary Cleanup", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_shared_boundary_cleanup_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_shared_boundary_cleanup_spec_1_\u0441\u0443\u0437\u0438\u0442\u044c_shared_public_api", "label": "1. \u0421\u0443\u0437\u0438\u0442\u044c shared public API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0421\u0443\u0437\u0438\u0442\u044c shared public API", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_2_\u0443\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c_boundary_ambiguity", "label": "2. \u0423\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c boundary ambiguity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0423\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c boundary ambiguity", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_3_\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c_runtime_behavior", "label": "3. \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c runtime behavior", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c runtime behavior", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_4_\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c_public_api_\u043f\u0440\u0430\u0432\u0438\u043b\u0430", "label": "4. \u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c public API \u043f\u0440\u0430\u0432\u0438\u043b\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c public API \u043f\u0440\u0430\u0432\u0438\u043b\u0430", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 181, "community_name": "Community 181", "source_file": "docs/features/frontend-shared-boundary-cleanup/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_tasks", "label": "tasks.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 251, "community_name": "Community 251", "source_file": "docs/features/frontend-shared-boundary-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_tasks_frontend_shared_boundary_cleanup_tasks", "label": "Frontend Shared Boundary Cleanup \u2014 tasks", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Shared Boundary Cleanup \u2014 tasks", "community": 251, "community_name": "Community 251", "source_file": "docs/features/frontend-shared-boundary-cleanup/tasks.md", "file_type": "document", "degree": 5}, {"id": "frontend_shared_boundary_cleanup_tasks_1_\u043d\u0430\u0439\u0442\u0438_boundary_ambiguity", "label": "1. \u041d\u0430\u0439\u0442\u0438 boundary ambiguity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041d\u0430\u0439\u0442\u0438 boundary ambiguity", "community": 251, "community_name": "Community 251", "source_file": "docs/features/frontend-shared-boundary-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_tasks_2_\u0441\u0443\u0437\u0438\u0442\u044c_shared_public_surface", "label": "2. \u0421\u0443\u0437\u0438\u0442\u044c shared/public surface", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0421\u0443\u0437\u0438\u0442\u044c shared/public surface", "community": 251, "community_name": "Community 251", "source_file": "docs/features/frontend-shared-boundary-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_tasks_3_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e_\u0441\u043b\u043e\u0451\u0432", "label": "3. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \u0441\u043b\u043e\u0451\u0432", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \u0441\u043b\u043e\u0451\u0432", "community": 251, "community_name": "Community 251", "source_file": "docs/features/frontend-shared-boundary-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_shared_boundary_cleanup_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 251, "community_name": "Community 251", "source_file": "docs/features/frontend-shared-boundary-cleanup/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan", "label": "plan.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "label": "Frontend Test Coverage Implementation Plan", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Test Coverage Implementation Plan", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 9}, {"id": "frontend_test_coverage_plan_task_1_infrastructure_vitest_config_test_helpers", "label": "Task 1: Infrastructure \u2014 vitest config + test helpers", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Infrastructure \u2014 vitest config + test helpers", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_2_api_client_tests", "label": "Task 2: API client tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: API client tests", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_3_auth_api_tests", "label": "Task 3: Auth API tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Auth API tests", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_4_authcontext_tests", "label": "Task 4: AuthContext tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: AuthContext tests", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_5_hook_tests", "label": "Task 5: Hook tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Hook tests", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_6_ui_component_tests", "label": "Task 6: UI Component tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: UI Component tests", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_7_page_tests", "label": "Task 7: Page tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Page tests", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_plan_task_8_final_verification", "label": "Task 8: Final verification", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: Final verification", "community": 195, "community_name": "Community 195", "source_file": "docs/features/frontend-test-coverage/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_test_coverage_spec_frontend_unit_test_coverage", "label": "Frontend Unit Test Coverage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Unit Test Coverage", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 8}, {"id": "frontend_test_coverage_spec_stack", "label": "Stack", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stack", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_project_structure_new_files", "label": "Project structure (new files)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Project structure (new files)", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_conventions", "label": "Conventions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Conventions", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_renderwithproviders", "label": "renderWithProviders", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderWithProviders", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_msw_handlers_default", "label": "MSW handlers (default)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MSW handlers (default)", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_implementation_order_5_phases", "label": "Implementation order (5 phases)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation order (5 phases)", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_test_coverage_spec_phase_1_infrastructure_api_client", "label": "Phase 1: Infrastructure + API client", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Infrastructure + API client", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_phase_2_auth_hooks", "label": "Phase 2: Auth + Hooks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Auth + Hooks", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_phase_3_ui_components", "label": "Phase 3: UI Components", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: UI Components", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_phase_4_pages", "label": "Phase 4: Pages", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: Pages", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_phase_5_scripts_wiring", "label": "Phase 5: Scripts & wiring", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5: Scripts &amp; wiring", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_coverage_spec_testing_rules", "label": "Testing rules", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing rules", "community": 156, "community_name": "Community 156", "source_file": "docs/features/frontend-test-coverage/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 252, "community_name": "Community 252", "source_file": "docs/features/frontend-test-hygiene/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_plan_frontend_test_hygiene_implementation_plan", "label": "Frontend Test Hygiene Implementation Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Test Hygiene Implementation Plan", "community": 252, "community_name": "Community 252", "source_file": "docs/features/frontend-test-hygiene/plan.md", "file_type": "document", "degree": 5}, {"id": "frontend_test_hygiene_plan_task_1_inspect_the_current_test_helpers", "label": "Task 1: Inspect the current test helpers", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Inspect the current test helpers", "community": 252, "community_name": "Community 252", "source_file": "docs/features/frontend-test-hygiene/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_plan_task_2_narrow_the_helpers", "label": "Task 2: Narrow the helpers", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Narrow the helpers", "community": 252, "community_name": "Community 252", "source_file": "docs/features/frontend-test-hygiene/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_plan_task_3_normalize_conventions", "label": "Task 3: Normalize conventions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Normalize conventions", "community": 252, "community_name": "Community 252", "source_file": "docs/features/frontend-test-hygiene/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_plan_task_4_verify_coverage_remains_stable", "label": "Task 4: Verify coverage remains stable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Verify coverage remains stable", "community": 252, "community_name": "Community 252", "source_file": "docs/features/frontend-test-hygiene/plan.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec", "label": "spec.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 3}, {"id": "frontend_test_hygiene_spec_frontend_test_hygiene", "label": "Frontend Test Hygiene", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Test Hygiene", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 6}, {"id": "frontend_test_hygiene_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 5}, {"id": "frontend_test_hygiene_spec_1_test_helpers_stay_minimal", "label": "1. Test helpers stay minimal", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Test helpers stay minimal", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_2_testing_conventions_stay_consistent", "label": "2. Testing conventions stay consistent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Testing conventions stay consistent", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_3_coverage_is_preserved", "label": "3. Coverage is preserved", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Coverage is preserved", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_4_no_production_behavior_changes", "label": "4. No production behavior changes", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. No production behavior changes", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 182, "community_name": "Community 182", "source_file": "docs/features/frontend-test-hygiene/spec.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_tasks", "label": "tasks.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 253, "community_name": "Community 253", "source_file": "docs/features/frontend-test-hygiene/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_tasks_frontend_test_hygiene_tasks", "label": "Frontend Test Hygiene \u2014 tasks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Test Hygiene \u2014 tasks", "community": 253, "community_name": "Community 253", "source_file": "docs/features/frontend-test-hygiene/tasks.md", "file_type": "document", "degree": 5}, {"id": "frontend_test_hygiene_tasks_1_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435_helpers", "label": "1. \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435 helpers", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435 helpers", "community": 253, "community_name": "Community 253", "source_file": "docs/features/frontend-test-hygiene/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_tasks_2_\u0441\u0443\u0437\u0438\u0442\u044c_test_layer", "label": "2. \u0421\u0443\u0437\u0438\u0442\u044c test layer", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0421\u0443\u0437\u0438\u0442\u044c test layer", "community": 253, "community_name": "Community 253", "source_file": "docs/features/frontend-test-hygiene/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_tasks_3_\u043d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c_conventions", "label": "3. \u041d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c conventions", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u041d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c conventions", "community": 253, "community_name": "Community 253", "source_file": "docs/features/frontend-test-hygiene/tasks.md", "file_type": "document", "degree": 1}, {"id": "frontend_test_hygiene_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 253, "community_name": "Community 253", "source_file": "docs/features/frontend-test-hygiene/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 2}, {"id": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "label": "FSD Entities Migration \u2014 Implementation Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Entities Migration \u2014 Implementation Plan", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 6}, {"id": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0440\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 8}, {"id": "fsd_entities_migration_plan_stock_entity", "label": "Stock entity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stock entity", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_bond_entity", "label": "Bond entity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Bond entity", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_portfolio_entity", "label": "Portfolio entity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio entity", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_shared_cleanup", "label": "Shared cleanup", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Shared cleanup", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_consumer_migration", "label": "Consumer migration", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Consumer migration", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_shim_files_\u043e\u0431\u0440\u0430\u0442\u043d\u043e_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0435_re_export", "label": "Shim files (\u043e\u0431\u0440\u0430\u0442\u043d\u043e-\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0435 re-export)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Shim files (\u043e\u0431\u0440\u0430\u0442\u043d\u043e-\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0435 re-export)", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_test_relocation", "label": "Test relocation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Test relocation", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_task_1_entities_stock", "label": "Task 1: entities/stock/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: entities/stock/", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 3}, {"id": "fsd_entities_migration_plan_\u0444\u0430\u0439\u043b\u044b", "label": "\u0424\u0430\u0439\u043b\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_task_2_entities_bond", "label": "Task 2: entities/bond/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: entities/bond/", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 3}, {"id": "fsd_entities_migration_plan_\u0444\u0430\u0439\u043b\u044b_112", "label": "\u0424\u0430\u0439\u043b\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_121", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_task_3_entities_portfolio", "label": "Task 3: entities/portfolio/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: entities/portfolio/", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 3}, {"id": "fsd_entities_migration_plan_\u0444\u0430\u0439\u043b\u044b_142", "label": "\u0424\u0430\u0439\u043b\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_152", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_plan_task_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "Task 4: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_fsd_entities_migration", "label": "FSD Entities Migration", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Entities Migration", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 6}, {"id": "fsd_entities_migration_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 7}, {"id": "fsd_entities_migration_spec_1_\u043a\u0430\u0436\u0434\u0430\u044f_\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u044c_\u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442_\u044f\u0432\u043d\u0443\u044e_fsd_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "label": "1. \u041a\u0430\u0436\u0434\u0430\u044f \u0441\u0443\u0449\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442 \u044f\u0432\u043d\u0443\u044e FSD-\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u041a\u0430\u0436\u0434\u0430\u044f \u0441\u0443\u0449\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442 \u044f\u0432\u043d\u0443\u044e FSD-\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_2_api_\u0444\u0443\u043d\u043a\u0446\u0438\u0438_\u0432\u044b\u043d\u043e\u0441\u044f\u0442\u0441\u044f_\u0438\u0437_shared_api_client_ts", "label": "2. API-\u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0432\u044b\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0438\u0437 shared/api/client.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. API-\u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0432\u044b\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0438\u0437 shared/api/client.ts", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_3_query_\u0445\u0443\u043a\u0438_\u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f_\u0438\u0437_global_hooks", "label": "3. Query-\u0445\u0443\u043a\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0438\u0437 global hooks/", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Query-\u0445\u0443\u043a\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0438\u0437 global hooks/", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_4_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c_\u043d\u0430_\u0432\u0440\u0435\u043c\u044f_\u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430", "label": "4. \u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c \u043d\u0430 \u0432\u0440\u0435\u043c\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c \u043d\u0430 \u0432\u0440\u0435\u043c\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_5_\u0442\u0435\u0441\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_\u0437\u0430_\u043a\u043e\u0434\u043e\u043c", "label": "5. \u0422\u0435\u0441\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u0437\u0430 \u043a\u043e\u0434\u043e\u043c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0422\u0435\u0441\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u0437\u0430 \u043a\u043e\u0434\u043e\u043c", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_6_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "6. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0435 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 157, "community_name": "Community 157", "source_file": "docs/features/fsd-entities-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_tasks", "label": "tasks.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 2}, {"id": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "FSD Entities Migration \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Entities Migration \u2014 \u0437\u0430\u0434\u0430\u0447\u0438", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 6}, {"id": "fsd_entities_migration_tasks_pre_flight", "label": "Pre-flight", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pre-flight", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_tasks_1_entities_stock", "label": "1. entities/stock/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. entities/stock/", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_tasks_2_entities_bond", "label": "2. entities/bond/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. entities/bond/", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_tasks_3_entities_portfolio", "label": "3. entities/portfolio/", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. entities/portfolio/", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_entities_migration_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 79, "community_name": "Community 79", "source_file": "docs/features/fsd-entities-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan", "label": "plan.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "label": "FSD Frontend Refactor \u2014 Implementation Plan", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Frontend Refactor \u2014 Implementation Plan", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 9}, {"id": "fsd_frontend_refactor_plan_file_map", "label": "File Map", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "File Map", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_task_1_\u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c_\u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435_shared_app_testsessionprovider", "label": "Task 1: \u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435 shared \u2192 app (TestSessionProvider)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435 shared \u2192 app (TestSessionProvider)", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_task_2_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokerpositiontable_\u0438\u0437_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "Task 2: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerPositionTable \u0438\u0437 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerPositionTable \u0438\u0437 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_task_3_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokersummary_brokerassetcards_brokeroverviewskeleton_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "Task 3: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerSummary, BrokerAssetCards, BrokerOverviewSkeleton \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerSummary, BrokerAssetCards, BrokerOverviewSkeleton \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_task_4_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_addpositionform_\u0432_features_add_position", "label": "Task 4: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 AddPositionForm \u0432 features/add-position", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 AddPositionForm \u0432 features/add-position", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_task_5_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_cursor_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e_\u0432_shared_lib_usecursorpagination", "label": "Task 5: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 cursor-\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e \u0432 shared/lib/useCursorPagination", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u0412\u044b\u043d\u0435\u0441\u0442\u0438 cursor-\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e \u0432 shared/lib/useCursorPagination", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_task_6_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_conarti_eslint_plugin_feature_sliced", "label": "Task 6: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c @conarti/eslint-plugin-feature-sliced", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c @conarti/eslint-plugin-feature-sliced", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_plan_self_review_checklist", "label": "Self-Review Checklist", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Self-Review Checklist", "community": 196, "community_name": "Community 196", "source_file": "docs/features/fsd-frontend-refactor/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec", "label": "spec.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 2}, {"id": "fsd_frontend_refactor_spec_fsd_frontend_refactor", "label": "FSD Frontend Refactor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Frontend Refactor", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 5}, {"id": "fsd_frontend_refactor_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "\u0417\u0430\u0434\u0430\u0447\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0434\u0430\u0447\u0438", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 7}, {"id": "fsd_frontend_refactor_spec_1_\u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c_\u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435_\u0441\u043b\u043e\u0451\u0432_\u0432_shared_lib_test", "label": "1. \u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435 \u0441\u043b\u043e\u0451\u0432 \u0432 shared/lib/test", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435 \u0441\u043b\u043e\u0451\u0432 \u0432 shared/lib/test", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_2_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokerpositiontable_\u0438\u0437_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "2. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerPositionTable \u0438\u0437 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerPositionTable \u0438\u0437 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_3_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokersummary_brokerassetcards_brokeroverviewskeleton_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "3. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerSummary, BrokerAssetCards, BrokerOverviewSkeleton \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 BrokerSummary, BrokerAssetCards, BrokerOverviewSkeleton \u0432 \u0432\u0438\u0434\u0436\u0435\u0442", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_4_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_addpositionform_\u0432_\u0444\u0438\u0447\u0443", "label": "4. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 AddPositionForm \u0432 \u0444\u0438\u0447\u0443", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 AddPositionForm \u0432 \u0444\u0438\u0447\u0443", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_5_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_cursor_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e_\u0432_shared_\u0445\u0443\u043a", "label": "5. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 cursor-\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e \u0432 shared-\u0445\u0443\u043a", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0412\u044b\u043d\u0435\u0441\u0442\u0438 cursor-\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e \u0432 shared-\u0445\u0443\u043a", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_6_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_eslint_\u043f\u043b\u0430\u0433\u0438\u043d_fsd", "label": "6. \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c ESLint-\u043f\u043b\u0430\u0433\u0438\u043d FSD", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c ESLint-\u043f\u043b\u0430\u0433\u0438\u043d FSD", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0451\u043c\u043a\u0438_acceptance_criteria", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0451\u043c\u043a\u0438 (Acceptance Criteria)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0451\u043c\u043a\u0438 (Acceptance Criteria)", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "community": 171, "community_name": "Community 171", "source_file": "docs/features/fsd-frontend-refactor/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_tasks", "label": "tasks.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 281, "community_name": "Community 281", "source_file": "docs/features/fsd-frontend-refactor/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_frontend_refactor_tasks_fsd_frontend_refactor_tasks", "label": "FSD Frontend Refactor \u2014 Tasks", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Frontend Refactor \u2014 Tasks", "community": 281, "community_name": "Community 281", "source_file": "docs/features/fsd-frontend-refactor/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan_fsd_quick_fix_plan", "label": "FSD Quick Fix \u2014 Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Quick Fix \u2014 Plan", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 3}, {"id": "fsd_quick_fix_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "label": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 6}, {"id": "fsd_quick_fix_plan_task_1_\u0443\u0431\u0440\u0430\u0442\u044c_cross_entity_import", "label": "Task 1: \u0423\u0431\u0440\u0430\u0442\u044c cross-entity import", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0423\u0431\u0440\u0430\u0442\u044c cross-entity import", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan_task_2_\u0434\u0435\u0434\u0443\u043f\u043b\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0444\u043e\u0440\u043c\u0430\u0442\u0442\u0435\u0440\u044b", "label": "Task 2: \u0414\u0435\u0434\u0443\u043f\u043b\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0442\u0435\u0440\u044b", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u0414\u0435\u0434\u0443\u043f\u043b\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0442\u0435\u0440\u044b", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan_task_3_\u0443\u043f\u043b\u043e\u0441\u0442\u0438\u0442\u044c_shared_ui_broker_allocation_bar", "label": "Task 3: \u0423\u043f\u043b\u043e\u0441\u0442\u0438\u0442\u044c shared/ui/broker-allocation-bar", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u0423\u043f\u043b\u043e\u0441\u0442\u0438\u0442\u044c shared/ui/broker-allocation-bar", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan_task_4_\u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c_entities_stock_index_ts", "label": "Task 4: \u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c entities/stock/index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c entities/stock/index.ts", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_plan_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 209, "community_name": "Community 209", "source_file": "docs/features/fsd-quick-fix/plan.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_spec", "label": "spec.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 263, "community_name": "Community 263", "source_file": "docs/features/fsd-quick-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_spec_fsd_quick_fix", "label": "FSD Quick Fix", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Quick Fix", "community": 263, "community_name": "Community 263", "source_file": "docs/features/fsd-quick-fix/spec.md", "file_type": "document", "degree": 4}, {"id": "fsd_quick_fix_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 263, "community_name": "Community 263", "source_file": "docs/features/fsd-quick-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 263, "community_name": "Community 263", "source_file": "docs/features/fsd-quick-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 263, "community_name": "Community 263", "source_file": "docs/features/fsd-quick-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_tasks", "label": "tasks.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 282, "community_name": "Community 282", "source_file": "docs/features/fsd-quick-fix/tasks.md", "file_type": "document", "degree": 1}, {"id": "fsd_quick_fix_tasks_fsd_quick_fix_tasks", "label": "FSD Quick Fix \u2014 Tasks", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FSD Quick Fix \u2014 Tasks", "community": 282, "community_name": "Community 282", "source_file": "docs/features/fsd-quick-fix/tasks.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan", "label": "plan.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "label": "MoexVibe MVP Implementation Plan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibe MVP Implementation Plan", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 8}, {"id": "moex_vibe_plan_file_structure", "label": "File Structure", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "File Structure", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_sprint_1_backend_foundation", "label": "SPRINT 1: Backend Foundation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SPRINT 1: Backend Foundation", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 8}, {"id": "moex_vibe_plan_task_1_1_initialize_project_root_with_npm_workspaces", "label": "Task 1.1: Initialize project root with npm workspaces", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.1: Initialize project root with npm workspaces", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_1_2_scaffold_nestjs_backend", "label": "Task 1.2: Scaffold NestJS backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.2: Scaffold NestJS backend", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_1_3_configuration_module", "label": "Task 1.3: Configuration module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.3: Configuration module", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_1_4_common_dtos_filters_interceptors_middleware", "label": "Task 1.4: Common DTOs, filters, interceptors, middleware", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.4: Common DTOs, filters, interceptors, middleware", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_1_5_health_check_endpoint", "label": "Task 1.5: Health check endpoint", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.5: Health check endpoint", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_1_6_moexclient_module_with_rate_limiting", "label": "Task 1.6: MoexClient module with rate limiting", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.6: MoexClient module with rate limiting", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_1_7_cache_module", "label": "Task 1.7: Cache module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1.7: Cache module", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_sprint_2_securities_api", "label": "SPRINT 2: Securities API", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SPRINT 2: Securities API", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 3}, {"id": "moex_vibe_plan_task_2_1_securities_search_module", "label": "Task 2.1: Securities search module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2.1: Securities search module", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_2_2_shares_module_spec_marketdata", "label": "Task 2.2: Shares module \u2014 spec + marketdata", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2.2: Shares module \u2014 spec + marketdata", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_sprint_3_bonds_history_candles", "label": "SPRINT 3: Bonds + History + Candles", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SPRINT 3: Bonds + History + Candles", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 3}, {"id": "moex_vibe_plan_task_3_1_bonds_module", "label": "Task 3.1: Bonds module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3.1: Bonds module", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_3_2_candles_module_shared_by_shares_bonds", "label": "Task 3.2: Candles module (shared by shares + bonds)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3.2: Candles module (shared by shares + bonds)", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_sprint_4_frontend_foundation", "label": "SPRINT 4: Frontend Foundation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SPRINT 4: Frontend Foundation", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 5}, {"id": "moex_vibe_plan_task_4_1_scaffold_react_vite_frontend", "label": "Task 4.1: Scaffold React + Vite frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4.1: Scaffold React + Vite frontend", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_4_2_generate_api_client_from_openapi_schema", "label": "Task 4.2: Generate API client from OpenAPI schema", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4.2: Generate API client from OpenAPI schema", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_4_3_layout_component", "label": "Task 4.3: Layout component", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4.3: Layout component", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_4_4_search_hook_homepage", "label": "Task 4.4: Search hook + HomePage", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4.4: Search hook + HomePage", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_sprint_5_frontend_details", "label": "SPRINT 5: Frontend Details", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SPRINT 5: Frontend Details", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 7}, {"id": "moex_vibe_plan_task_5_1_stock_page_hook", "label": "Task 5.1: Stock page hook", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5.1: Stock page hook", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_5_2_stockdetails_component", "label": "Task 5.2: StockDetails component", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5.2: StockDetails component", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_5_3_bond_page_hooks", "label": "Task 5.3: Bond page hooks", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5.3: Bond page hooks", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_5_4_bonddetails_component", "label": "Task 5.4: BondDetails component", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5.4: BondDetails component", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_5_5_pricechart_component", "label": "Task 5.5: PriceChart component", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5.5: PriceChart component", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_5_6_stockpage_and_bondpage", "label": "Task 5.6: StockPage and BondPage", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5.6: StockPage and BondPage", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_sprint_6_documentation_infrastructure", "label": "SPRINT 6: Documentation + Infrastructure", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SPRINT 6: Documentation + Infrastructure", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 5}, {"id": "moex_vibe_plan_task_6_1_openapi_spec_finalization", "label": "Task 6.1: OpenAPI spec finalization", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6.1: OpenAPI spec finalization", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_6_2_adr_documentation", "label": "Task 6.2: ADR documentation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6.2: ADR documentation", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_6_3_docker_setup", "label": "Task 6.3: Docker setup", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6.3: Docker setup", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_plan_task_6_4_readme_and_final_checks", "label": "Task 6.4: README and final checks", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6.4: README and final checks", "community": 57, "community_name": "Community 57", "source_file": "docs/features/moex-vibe/plan.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec", "label": "spec.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 2}, {"id": "moex_vibe_spec_moexvibe_mvp_design_specification", "label": "MoexVibe \u2014 MVP Design Specification", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MoexVibe \u2014 MVP Design Specification", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 9}, {"id": "moex_vibe_spec_1_product_requirements_document_prd", "label": "1. Product Requirements Document (PRD)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Product Requirements Document (PRD)", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 6}, {"id": "moex_vibe_spec_1_1_product_vision", "label": "1.1 Product Vision", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Product Vision", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_1_2_target_audience", "label": "1.2 Target Audience", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2 Target Audience", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_1_3_mvp_scope", "label": "1.3 MVP Scope", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3 MVP Scope", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_1_4_user_stories", "label": "1.4 User Stories", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4 User Stories", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_1_5_non_functional_requirements", "label": "1.5 Non-Functional Requirements", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.5 Non-Functional Requirements", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_2_domain_model", "label": "2. Domain Model", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Domain Model", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_3_architecture", "label": "3. Architecture", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Architecture", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 4}, {"id": "moex_vibe_spec_3_1_caching_strategy", "label": "3.1 Caching Strategy", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.1 Caching Strategy", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_3_2_error_handling_strategy", "label": "3.2 Error Handling Strategy", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.2 Error Handling Strategy", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_3_3_rate_limiting", "label": "3.3 Rate Limiting", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.3 Rate Limiting", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_4_api_endpoints", "label": "4. API Endpoints", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. API Endpoints", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_5_repo_structure", "label": "5. Repo Structure", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Repo Structure", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_6_sprint_plan", "label": "6. Sprint Plan", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Sprint Plan", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 7}, {"id": "moex_vibe_spec_sprint_1_backend_foundation", "label": "Sprint 1 \u2014 Backend Foundation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sprint 1 \u2014 Backend Foundation", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_sprint_2_securities_api", "label": "Sprint 2 \u2014 Securities API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sprint 2 \u2014 Securities API", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_sprint_3_bonds_history", "label": "Sprint 3 \u2014 Bonds + History", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sprint 3 \u2014 Bonds + History", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_sprint_4_frontend_foundation", "label": "Sprint 4 \u2014 Frontend Foundation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sprint 4 \u2014 Frontend Foundation", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_sprint_5_frontend_details", "label": "Sprint 5 \u2014 Frontend Details", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sprint 5 \u2014 Frontend Details", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_sprint_6_docs_infrastructure", "label": "Sprint 6 \u2014 Docs + Infrastructure", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sprint 6 \u2014 Docs + Infrastructure", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_7_risks", "label": "7. Risks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Risks", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "moex_vibe_spec_8_post_mvp_roadmap", "label": "8. Post-MVP Roadmap", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Post-MVP Roadmap", "community": 113, "community_name": "Community 113", "source_file": "docs/features/moex-vibe/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan", "label": "plan.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "label": "Pagination Loading Overlay \u2014 Implementation Plan", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Pagination Loading Overlay \u2014 Implementation Plan", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 7}, {"id": "pagination_loading_overlay_plan_task_1_css_spinner_animation_and_overlay_styles", "label": "Task 1: CSS \u2014 spinner animation and overlay styles", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: CSS \u2014 spinner animation and overlay styles", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan_task_2_positiongrouptable_overlay_on_pagination_spinner_in_buttons", "label": "Task 2: PositionGroupTable \u2014 overlay on pagination + spinner in buttons", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: PositionGroupTable \u2014 overlay on pagination + spinner in buttons", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan_task_3_brokeroperationstable_new_isfetching_prop_overlay", "label": "Task 3: BrokerOperationsTable \u2014 new `isFetching` prop + overlay", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: BrokerOperationsTable \u2014 new `isFetching` prop + overlay", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan_task_4_brokeraccountdetailpage_pass_isfetching_to_operations_table", "label": "Task 4: BrokerAccountDetailPage \u2014 pass `isFetching` to operations table", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: BrokerAccountDetailPage \u2014 pass `isFetching` to operations table", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan_task_5_update_tests", "label": "Task 5: Update tests", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Update tests", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_plan_task_6_lint_and_final_verification", "label": "Task 6: Lint and final verification", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Lint and final verification", "community": 225, "community_name": "Community 225", "source_file": "docs/features/pagination-loading-overlay/plan.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 3}, {"id": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "label": "\u0418\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0432 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445 \u0431\u0440\u043e\u043a\u0435\u0440\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0432 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445 \u0431\u0440\u043e\u043a\u0435\u0440\u0430", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 7}, {"id": "pagination_loading_overlay_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0432\u044b\u0431\u0440\u0430\u043d_c3", "label": "\u0414\u0438\u0437\u0430\u0439\u043d (\u0432\u044b\u0431\u0440\u0430\u043d C3)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0437\u0430\u0439\u043d (\u0432\u044b\u0431\u0440\u0430\u043d C3)", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 5}, {"id": "pagination_loading_overlay_spec_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0435_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "label": "\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u043a\u0430\u043a_\u044d\u0442\u043e_\u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438", "label": "\u041a\u0430\u043a \u044d\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u043a \u044d\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_tableloadingoverlay", "label": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 TableLoadingOverlay", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 TableLoadingOverlay", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u0441\u043f\u0438\u043d\u043d\u0435\u0440_\u0432_\u043a\u043d\u043e\u043f\u043a\u0435", "label": "\u041f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f: \u0441\u043f\u0438\u043d\u043d\u0435\u0440 \u0432 \u043a\u043d\u043e\u043f\u043a\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f: \u0441\u043f\u0438\u043d\u043d\u0435\u0440 \u0432 \u043a\u043d\u043e\u043f\u043a\u0435", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u0433\u0434\u0435_\u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "\u0413\u0434\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0434\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pagination_loading_overlay_spec_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "community": 183, "community_name": "Community 183", "source_file": "docs/features/pagination-loading-overlay/spec.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan", "label": "plan.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan_pilot_migration_implementation_plan", "label": "Pilot Migration \u2014 Implementation Plan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pilot Migration \u2014 Implementation Plan", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 4}, {"id": "pilot_migration_plan_architecture", "label": "Architecture", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan_files", "label": "Files", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Files", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 3}, {"id": "pilot_migration_plan_modify", "label": "Modify", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Modify", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan_no_changes", "label": "No changes", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "No changes", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan_step_by_step", "label": "Step-by-step", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Step-by-step", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 4}, {"id": "pilot_migration_plan_step_1_migrate_homepage", "label": "Step 1: Migrate HomePage", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 1: Migrate HomePage", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan_step_2_migrate_searchbar", "label": "Step 2: Migrate SearchBar", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2: Migrate SearchBar", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_plan_step_3_verify", "label": "Step 3: Verify", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 3: Verify", "community": 197, "community_name": "Community 197", "source_file": "docs/features/pilot-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 2}, {"id": "pilot_migration_spec_pilot_migration_design_system_adoption", "label": "Pilot Migration \u2014 Design System Adoption", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Pilot Migration \u2014 Design System Adoption", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 6}, {"id": "pilot_migration_spec_status", "label": "Status", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_spec_goal", "label": "Goal", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Goal", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_spec_scope", "label": "Scope", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Scope", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_spec_out_of_scope", "label": "Out of scope", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Out of scope", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 237, "community_name": "Community 237", "source_file": "docs/features/pilot-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_tasks", "label": "tasks.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 264, "community_name": "Community 264", "source_file": "docs/features/pilot-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_tasks_pilot_migration_tasks", "label": "Pilot Migration \u2014 Tasks", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pilot Migration \u2014 Tasks", "community": 264, "community_name": "Community 264", "source_file": "docs/features/pilot-migration/tasks.md", "file_type": "document", "degree": 4}, {"id": "pilot_migration_tasks_1_homepage", "label": "1. HomePage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. HomePage", "community": 264, "community_name": "Community 264", "source_file": "docs/features/pilot-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_tasks_2_searchbar", "label": "2. SearchBar", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. SearchBar", "community": 264, "community_name": "Community 264", "source_file": "docs/features/pilot-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "pilot_migration_tasks_3_verification", "label": "3. Verification", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Verification", "community": 264, "community_name": "Community 264", "source_file": "docs/features/pilot-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_plan", "label": "plan.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 274, "community_name": "Community 274", "source_file": "docs/features/portfolio-allocation-chart/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_plan_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u0414\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f \u2014 \u041f\u043b\u0430\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f \u2014 \u041f\u043b\u0430\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 274, "community_name": "Community 274", "source_file": "docs/features/portfolio-allocation-chart/plan.md", "file_type": "document", "degree": 3}, {"id": "portfolio_allocation_chart_plan_\u0437\u0430\u0434\u0430\u0447\u0430_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_allocationchart", "label": "\u0417\u0430\u0434\u0430\u0447\u0430 1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c AllocationChart", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0434\u0430\u0447\u0430 1: \u0421\u043e\u0437\u0434\u0430\u0442\u044c AllocationChart", "community": 274, "community_name": "Community 274", "source_file": "docs/features/portfolio-allocation-chart/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_plan_\u0437\u0430\u0434\u0430\u0447\u0430_2_\u0438\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0432_portfoliosummary", "label": "\u0417\u0430\u0434\u0430\u0447\u0430 2: \u0418\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 PortfolioSummary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0434\u0430\u0447\u0430 2: \u0418\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 PortfolioSummary", "community": 274, "community_name": "Community 274", "source_file": "docs/features/portfolio-allocation-chart/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "\u0414\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f \u2014 \u0421\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f \u2014 \u0421\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 6}, {"id": "portfolio_allocation_chart_spec_\u043e\u0431\u0437\u043e\u0440", "label": "\u041e\u0431\u0437\u043e\u0440", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0437\u043e\u0440", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_allocationchart", "label": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442: `AllocationChart`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442: `AllocationChart`", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_allocation_chart_spec_\u0446\u0432\u0435\u0442\u043e\u0432\u0430\u044f_\u0441\u0445\u0435\u043c\u0430", "label": "\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "label": "\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u0438\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "\u0418\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435 \u0444\u0430\u0439\u043b\u044b", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_allocation_chart_spec_\u043d\u043e\u0432\u044b\u0439", "label": "\u041d\u043e\u0432\u044b\u0439", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u043e\u0432\u044b\u0439", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u0438\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0439", "label": "\u0418\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0439", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0439", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_allocation_chart_spec_\u0433\u0440\u0430\u043d\u0438\u0447\u043d\u044b\u0435_\u0441\u043b\u0443\u0447\u0430\u0438", "label": "\u0413\u0440\u0430\u043d\u0438\u0447\u043d\u044b\u0435 \u0441\u043b\u0443\u0447\u0430\u0438", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0440\u0430\u043d\u0438\u0447\u043d\u044b\u0435 \u0441\u043b\u0443\u0447\u0430\u0438", "community": 184, "community_name": "Community 184", "source_file": "docs/features/portfolio-allocation-chart/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_portfolio_analytics_implementation_plan", "label": "Portfolio Analytics \u2014 Implementation Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio Analytics \u2014 Implementation Plan", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 2}, {"id": "portfolio_analytics_plan_file_structure", "label": "File Structure", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "File Structure", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 17}, {"id": "portfolio_analytics_plan_backend_modified_files", "label": "Backend (modified files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (modified files)", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_backend_new_files", "label": "Backend (new files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (new files)", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_frontend_modified_files", "label": "Frontend (modified files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (modified files)", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_frontend_new_files", "label": "Frontend (new files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (new files)", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_1_prisma_schema_add_buyprice_and_buydate_to_position", "label": "Task 1: Prisma schema \u2014 add buyPrice and buyDate to Position", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Prisma schema \u2014 add buyPrice and buyDate to Position", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_2_backend_dto_updates_add_position_and_update_position", "label": "Task 2: Backend DTO updates \u2014 add-position and update-position", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Backend DTO updates \u2014 add-position and update-position", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_3_backend_portfolioservice_pnl_enrichment", "label": "Task 3: Backend PortfolioService \u2014 PnL enrichment", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Backend PortfolioService \u2014 PnL enrichment", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_4_backend_analyticsresponsedto", "label": "Task 4: Backend AnalyticsResponseDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Backend AnalyticsResponseDto", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_5_backend_tests_pnl_calculation", "label": "Task 5: Backend tests \u2014 PnL calculation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Backend tests \u2014 PnL calculation", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_6_frontend_types_add_pnl_fields_to_responses_ts", "label": "Task 6: Frontend types \u2014 add PnL fields to responses.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Frontend types \u2014 add PnL fields to responses.ts", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_7_frontend_api_client_hooks_pass_buyprice_buydate", "label": "Task 7: Frontend API client + hooks \u2014 pass buyPrice/buyDate", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Frontend API client + hooks \u2014 pass buyPrice/buyDate", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_8_frontend_sharepositionrow_add_pnl_columns", "label": "Task 8: Frontend SharePositionRow \u2014 add PnL columns", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: Frontend SharePositionRow \u2014 add PnL columns", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_9_frontend_bondpositionrow_add_pnl_columns", "label": "Task 9: Frontend BondPositionRow \u2014 add PnL columns", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: Frontend BondPositionRow \u2014 add PnL columns", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_10_frontend_analyticssummary_portfoliosummary_update", "label": "Task 10: Frontend AnalyticsSummary + PortfolioSummary update", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: Frontend AnalyticsSummary + PortfolioSummary update", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_11_frontend_portfoliodetailpage_add_buyprice_to_add_position_form", "label": "Task 11: Frontend PortfolioDetailPage \u2014 add buyPrice to add position form", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: Frontend PortfolioDetailPage \u2014 add buyPrice to add position form", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_plan_task_12_verify_everything_works", "label": "Task 12: Verify everything works", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 12: Verify everything works", "community": 122, "community_name": "Community 122", "source_file": "docs/features/portfolio-analytics/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "label": "Portfolio Analytics \u2014 Design Specification (SDD)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio Analytics \u2014 Design Specification (SDD)", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 13}, {"id": "portfolio_analytics_spec_1_product_requirements_document_prd", "label": "1. Product Requirements Document (PRD)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Product Requirements Document (PRD)", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 6}, {"id": "portfolio_analytics_spec_1_1_product_vision", "label": "1.1 Product Vision", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Product Vision", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_1_2_target_audience", "label": "1.2 Target Audience", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2 Target Audience", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_1_3_scope", "label": "1.3 Scope", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3 Scope", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_1_4_user_stories", "label": "1.4 User Stories", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4 User Stories", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_1_5_non_functional_requirements", "label": "1.5 Non-Functional Requirements", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.5 Non-Functional Requirements", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_2_domain_model", "label": "2. Domain Model", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Domain Model", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_analytics_spec_\u0440\u0430\u0441\u0447\u0451\u0442_pnl_\u0434\u043b\u044f_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "\u0420\u0430\u0441\u0447\u0451\u0442 PnL \u0434\u043b\u044f \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0447\u0451\u0442 PnL \u0434\u043b\u044f \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_\u0440\u0430\u0441\u0447\u0451\u0442_\u0434\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u043d\u043e\u0433\u043e_\u0434\u043e\u0445\u043e\u0434\u0430", "label": "\u0420\u0430\u0441\u0447\u0451\u0442 \u0434\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u0445\u043e\u0434\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0447\u0451\u0442 \u0434\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u0445\u043e\u0434\u0430", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_3_architecture", "label": "3. Architecture", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Architecture", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_analytics_spec_3_1_backend_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_\u0432_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c_portfoliomodule", "label": "3.1 Backend \u2014 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c PortfolioModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.1 Backend \u2014 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c PortfolioModule", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_3_2_frontend", "label": "3.2 Frontend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.2 Frontend", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_3_3_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "3.3 \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.3 \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_4_api_contracts", "label": "4. API Contracts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "4. API Contracts", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_analytics_spec_4_1_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_\u0432_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445_\u044d\u043d\u0434\u043f\u043e\u0438\u043d\u0442\u0430\u0445", "label": "4.1 \u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u044d\u043d\u0434\u043f\u043e\u0438\u043d\u0442\u0430\u0445", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.1 \u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u044d\u043d\u0434\u043f\u043e\u0438\u043d\u0442\u0430\u0445", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_4_2_response_types", "label": "4.2 Response Types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.2 Response Types", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_4_3_error_codes", "label": "4.3 Error Codes", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.3 Error Codes", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_5_database_schema_prisma", "label": "5. Database Schema (Prisma)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Database Schema (Prisma)", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_6_business_rules", "label": "6. Business Rules", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Business Rules", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_7_events_domain_events", "label": "7. Events (Domain Events)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Events (Domain Events)", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_8_risks_and_edge_cases", "label": "8. Risks and Edge Cases", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Risks and Edge Cases", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_9_implementation_phases", "label": "9. Implementation Phases", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "9. Implementation Phases", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_analytics_spec_phase_1_cost_basis_pnl_core", "label": "Phase 1: Cost Basis + PnL Core", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Cost Basis + PnL Core", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_phase_2_dividend_income", "label": "Phase 2: Dividend Income", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Dividend Income", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_phase_3_target_allocation_comparison", "label": "Phase 3: Target Allocation Comparison", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Target Allocation Comparison", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_10_openapi_specification", "label": "10. OpenAPI Specification", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. OpenAPI Specification", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_11_adr", "label": "11. ADR", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "11. ADR", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_analytics_spec_adr_011_pnl_calculation_on_backend", "label": "ADR-011: PnL Calculation on Backend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-011: PnL Calculation on Backend", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_adr_012_buyprice_\u043a\u0430\u043a_float_\u043d\u0435_decimal", "label": "ADR-012: BuyPrice \u043a\u0430\u043a Float (\u043d\u0435 Decimal)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-012: BuyPrice \u043a\u0430\u043a Float (\u043d\u0435 Decimal)", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_adr_013_dividend_income_calculation", "label": "ADR-013: Dividend Income Calculation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-013: Dividend Income Calculation", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_analytics_spec_12_self_review_checklist", "label": "12. Self-Review Checklist", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12. Self-Review Checklist", "community": 61, "community_name": "Community 61", "source_file": "docs/features/portfolio-analytics/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_plan", "label": "plan.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "label": "Portfolio Enricher Optimization \u2014 Implementation Plan", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio Enricher Optimization \u2014 Implementation Plan", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 6}, {"id": "portfolio_enricher_optimization_plan_task_1_add_types_shortname_on_share_market_data_moexbondpositiondata_combined_type", "label": "Task 1: Add types \u2014 `shortName` on share market data + `MoexBondPositionData` combined type", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Add types \u2014 `shortName` on share market data + `MoexBondPositionData` combined type", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_plan_task_2_add_batch_methods_to_moexclientservice", "label": "Task 2: Add batch methods to MoexClientService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Add batch methods to MoexClientService", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_plan_task_3_rewrite_enrichpositions_in_portfolioservice", "label": "Task 3: Rewrite `enrichPositions` in PortfolioService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Rewrite `enrichPositions` in PortfolioService", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_plan_task_4_verify_and_lint", "label": "Task 4: Verify and lint", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Verify and lint", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_plan_task_5_document_performance_gain", "label": "Task 5: Document performance gain", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Document performance gain", "community": 238, "community_name": "Community 238", "source_file": "docs/features/portfolio-enricher-optimization/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "label": "Portfolio Enricher Optimization", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio Enricher Optimization", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 6}, {"id": "portfolio_enricher_optimization_spec_problem", "label": "Problem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_root_cause", "label": "Root Cause", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_solution", "label": "Solution", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Solution", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 5}, {"id": "portfolio_enricher_optimization_spec_1_merge_bond_data_calls", "label": "1. Merge bond data calls", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Merge bond data calls", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_2_remove_redundant_getsecuritydescription", "label": "2. Remove redundant getSecurityDescription", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Remove redundant getSecurityDescription", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_3_batch_requests_by_market", "label": "3. Batch requests by market", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Batch requests by market", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_metrics", "label": "Metrics", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Metrics", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_files_changed", "label": "Files Changed", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Files Changed", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_enricher_optimization_spec_risks_and_mitigations", "label": "Risks and Mitigations", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks and Mitigations", "community": 198, "community_name": "Community 198", "source_file": "docs/features/portfolio-enricher-optimization/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan", "label": "plan.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "label": "Portfolio List Enrichment \u2014 Implementation Plan", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio List Enrichment \u2014 Implementation Plan", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 8}, {"id": "portfolio_list_enrichment_plan_task_1_create_portfoliolistresponsedto", "label": "Task 1: Create PortfolioListResponseDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Create PortfolioListResponseDto", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_task_2_write_failing_tests_for_portfolioservice_findall_enrichment", "label": "Task 2: Write failing tests for PortfolioService.findAll enrichment", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Write failing tests for PortfolioService.findAll enrichment", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_task_3_implement_backend_enrichment_in_portfolioservice_findall", "label": "Task 3: Implement backend enrichment in PortfolioService.findAll", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Implement backend enrichment in PortfolioService.findAll", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_task_4_update_portfoliocontroller_with_new_dto", "label": "Task 4: Update PortfolioController with new DTO", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Update PortfolioController with new DTO", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_task_5_update_frontend_types", "label": "Task 5: Update frontend types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Update frontend types", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_task_6_update_portfoliocard_to_show_enriched_data", "label": "Task 6: Update PortfolioCard to show enriched data", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Update PortfolioCard to show enriched data", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_plan_task_7_run_full_test_suite_and_verify", "label": "Task 7: Run full test suite and verify", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Run full test suite and verify", "community": 211, "community_name": "Community 211", "source_file": "docs/features/portfolio-list-enrichment/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_list_enrichment_spec_portfolio_list_enrichment", "label": "Portfolio List Enrichment", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio List Enrichment", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_list_enrichment_spec_problem", "label": "Problem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_solution", "label": "Solution", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Solution", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 5}, {"id": "portfolio_list_enrichment_spec_backend", "label": "Backend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_list_enrichment_spec_\u043d\u043e\u0432\u044b\u0439_dto_portfoliolistresponsedto", "label": "\u041d\u043e\u0432\u044b\u0439 DTO: `PortfolioListResponseDto`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u043e\u0432\u044b\u0439 DTO: `PortfolioListResponseDto`", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435_portfolioservice_findall_userid", "label": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 `PortfolioService.findAll(userId)`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 `PortfolioService.findAll(userId)`", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435_portfoliocontroller_findall", "label": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 `PortfolioController.findAll`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 `PortfolioController.findAll`", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_frontend", "label": "Frontend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_list_enrichment_spec_\u0442\u0438\u043f_portfolio_\u0432_responses_ts_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043f\u043e\u043b\u044f", "label": "\u0422\u0438\u043f `Portfolio` \u0432 `responses.ts` \u2014 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0438\u043f `Portfolio` \u0432 `responses.ts` \u2014 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044f", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_portfoliocard_tsx_\u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c", "label": "`PortfolioCard.tsx` \u2014 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`PortfolioCard.tsx` \u2014 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_portfolioslistpage_tsx_\u0431\u0435\u0437_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "`PortfoliosListPage.tsx` \u2014 \u0431\u0435\u0437 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`PortfoliosListPage.tsx` \u2014 \u0431\u0435\u0437 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_data_flow", "label": "Data Flow", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Data Flow", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_list_enrichment_spec_risks_and_edge_cases", "label": "Risks and Edge Cases", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks and Edge Cases", "community": 158, "community_name": "Community 158", "source_file": "docs/features/portfolio-list-enrichment/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_portfolio_phase_1_implementation_plan", "label": "Portfolio Phase 1 Implementation Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio Phase 1 Implementation Plan", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 3}, {"id": "portfolio_plan_file_structure", "label": "File Structure", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "File Structure", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 12}, {"id": "portfolio_plan_backend_new_files", "label": "Backend (new files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (new files)", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_backend_modified_files", "label": "Backend (modified files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (modified files)", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_frontend_new_files", "label": "Frontend (new files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (new files)", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_frontend_modified_files", "label": "Frontend (modified files)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (modified files)", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_1_prisma_schema_portfolio_and_position_models", "label": "Task 1: Prisma schema \u2014 Portfolio and Position models", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Prisma schema \u2014 Portfolio and Position models", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_2_backend_portfoliomodule_scaffold", "label": "Task 2: Backend \u2014 PortfolioModule scaffold", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Backend \u2014 PortfolioModule scaffold", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_3_frontend_api_types_and_client", "label": "Task 3: Frontend \u2014 API types and client", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Frontend \u2014 API types and client", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_4_frontend_tanstack_query_hooks", "label": "Task 4: Frontend \u2014 TanStack Query hooks", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Frontend \u2014 TanStack Query hooks", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_5_frontend_portfolio_components", "label": "Task 5: Frontend \u2014 Portfolio components", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Frontend \u2014 Portfolio components", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_6_frontend_pages", "label": "Task 6: Frontend \u2014 Pages", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Frontend \u2014 Pages", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_task_7_docusaurus_documentation", "label": "Task 7: Docusaurus documentation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Docusaurus documentation", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_plan_self_review", "label": "Self-Review", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Self-Review", "community": 142, "community_name": "Community 142", "source_file": "docs/features/portfolio/plan.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_spec_portfolio_design_specification_sdd", "label": "Portfolio \u2014 Design Specification (SDD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Portfolio \u2014 Design Specification (SDD)", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 13}, {"id": "portfolio_spec_1_product_requirements_document_prd", "label": "1. Product Requirements Document (PRD)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Product Requirements Document (PRD)", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 6}, {"id": "portfolio_spec_1_1_product_vision", "label": "1.1 Product Vision", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Product Vision", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_1_2_target_audience", "label": "1.2 Target Audience", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2 Target Audience", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_1_3_scope", "label": "1.3 Scope", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3 Scope", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_1_4_user_stories", "label": "1.4 User Stories", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4 User Stories", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_1_5_non_functional_requirements", "label": "1.5 Non-Functional Requirements", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.5 Non-Functional Requirements", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_2_domain_model", "label": "2. Domain Model", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Domain Model", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_3_architecture", "label": "3. Architecture", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Architecture", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_spec_3_1_backend", "label": "3.1 Backend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.1 Backend", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_3_2_frontend", "label": "3.2 Frontend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.2 Frontend", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_3_3_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "3.3 \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.3 \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_4_api_contracts", "label": "4. API Contracts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "4. API Contracts", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 4}, {"id": "portfolio_spec_4_1_portfolio_crud", "label": "4.1 Portfolio CRUD", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.1 Portfolio CRUD", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_4_2_position_crud", "label": "4.2 Position CRUD", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.2 Position CRUD", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_4_3_response_types_swagger_dtos", "label": "4.3 Response Types (Swagger DTOs)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.3 Response Types (Swagger DTOs)", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_5_database_schema_prisma", "label": "5. Database Schema (Prisma)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Database Schema (Prisma)", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_6_business_rules", "label": "6. Business Rules", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Business Rules", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_7_events_domain_events", "label": "7. Events (Domain Events)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Events (Domain Events)", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_8_risks_and_edge_cases", "label": "8. Risks and Edge Cases", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Risks and Edge Cases", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_9_implementation_phases", "label": "9. Implementation Phases", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "9. Implementation Phases", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 7}, {"id": "portfolio_spec_phase_1_portfolio_position_crud", "label": "Phase 1: Portfolio + Position CRUD", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Portfolio + Position CRUD", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_phase_2_positions_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435", "label": "Phase 2: Positions \u2014 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Positions \u2014 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_phase_3_transactions_\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e", "label": "Phase 3: Transactions (\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Transactions (\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e)", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_phase_4_analytics", "label": "Phase 4: Analytics", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 4: Analytics", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_phase_5_dividend_and_coupon_forecasts", "label": "Phase 5: Dividend and Coupon Forecasts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 5: Dividend and Coupon Forecasts", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_phase_6_corporate_actions", "label": "Phase 6: Corporate Actions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 6: Corporate Actions", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_10_openapi_specification", "label": "10. OpenAPI Specification", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. OpenAPI Specification", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_11_adr", "label": "11. ADR", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "11. ADR", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 3}, {"id": "portfolio_spec_adr_009_portfolio_domain_model", "label": "ADR-009: Portfolio Domain Model", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-009: Portfolio Domain Model", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_adr_010_backend_price_computation", "label": "ADR-010: Backend Price Computation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-010: Backend Price Computation", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "portfolio_spec_12_self_review_checklist", "label": "12. Self-Review Checklist", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12. Self-Review Checklist", "community": 64, "community_name": "Community 64", "source_file": "docs/features/portfolio/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_plan", "label": "plan.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 265, "community_name": "Community 265", "source_file": "docs/features/pre-commit-checks/plan.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_plan_pre_commit_checks_implementation_plan", "label": "Pre-commit Checks Implementation Plan", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Pre-commit Checks Implementation Plan", "community": 265, "community_name": "Community 265", "source_file": "docs/features/pre-commit-checks/plan.md", "file_type": "document", "degree": 4}, {"id": "pre_commit_checks_plan_task_1_eslint_\u0434\u043b\u044f_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "label": "Task 1: ESLint \u0434\u043b\u044f \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: ESLint \u0434\u043b\u044f \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "community": 265, "community_name": "Community 265", "source_file": "docs/features/pre-commit-checks/plan.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_plan_task_2_husky_lint_staged", "label": "Task 2: Husky + lint-staged", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Husky + lint-staged", "community": 265, "community_name": "Community 265", "source_file": "docs/features/pre-commit-checks/plan.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_plan_task_3_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_root_lint_script", "label": "Task 3: \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c root lint script", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c root lint script", "community": 265, "community_name": "Community 265", "source_file": "docs/features/pre-commit-checks/plan.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 3}, {"id": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "label": "Pre-commit Checks: ESLint + Prettier \u0434\u043b\u044f \u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pre-commit Checks: ESLint + Prettier \u0434\u043b\u044f \u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 9}, {"id": "pre_commit_checks_spec_\u0434\u0430\u0442\u0430", "label": "\u0414\u0430\u0442\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0430\u0442\u0430", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "label": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u0441\u0445\u0435\u043c\u0430_\u0440\u0430\u0431\u043e\u0442\u044b", "label": "\u0421\u0445\u0435\u043c\u0430 \u0440\u0430\u0431\u043e\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0445\u0435\u043c\u0430 \u0440\u0430\u0431\u043e\u0442\u044b", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u0441\u043e\u0441\u0442\u0430\u0432_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u0421\u043e\u0441\u0442\u0430\u0432 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0441\u0442\u0430\u0432 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 4}, {"id": "pre_commit_checks_spec_1_frontend_eslint", "label": "1. Frontend ESLint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Frontend ESLint", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_2_husky_lint_staged", "label": "2. Husky + lint-staged", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Husky + lint-staged", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_3_root_lint_script", "label": "3. Root lint script", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Root lint script", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_\u043f\u0440\u0438_\u043e\u0448\u0438\u0431\u043a\u0430\u0445", "label": "\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438 \u043e\u0448\u0438\u0431\u043a\u0430\u0445", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438 \u043e\u0448\u0438\u0431\u043a\u0430\u0445", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f", "label": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "pre_commit_checks_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u044b \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "community": 173, "community_name": "Community 173", "source_file": "docs/features/pre-commit-checks/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan", "label": "plan.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 2}, {"id": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "label": "\u0421\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f Quality Gate, API-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430 \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 Implementation Plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f Quality Gate, API-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430 \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 Implementation Plan", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 7}, {"id": "quality_gate_contract_docs_plan_\u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "\u0424\u0430\u0439\u043b\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u0439\u043b\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 3}, {"id": "quality_gate_contract_docs_plan_\u0441\u043e\u0437\u0434\u0430\u0442\u044c", "label": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_\u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c", "label": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_task_1_\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c_backend_unit_tests_\u0438_live_moex_integration_tests", "label": "Task 1: \u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c backend unit tests \u0438 live MOEX integration tests", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c backend unit tests \u0438 live MOEX integration tests", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_task_2_\u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438_backend_service_specs_\u043d\u0430_mocked_dependencies_\u0438_\u043f\u043e\u0447\u0438\u043d\u0438\u0442\u044c_lint", "label": "Task 2: \u041f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 backend service specs \u043d\u0430 mocked dependencies \u0438 \u043f\u043e\u0447\u0438\u043d\u0438\u0442\u044c lint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u041f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 backend service specs \u043d\u0430 mocked dependencies \u0438 \u043f\u043e\u0447\u0438\u043d\u0438\u0442\u044c lint", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_task_3_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_offline_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443_openapi_artifacts", "label": "Task 3: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c offline \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 OpenAPI artifacts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c offline \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 OpenAPI artifacts", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_task_4_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_swagger_json_\u0438_frontend_types", "label": "Task 4: \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c Swagger JSON \u0438 frontend types", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c Swagger JSON \u0438 frontend types", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_task_5_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_readme_agents_\u0438_docusaurus_docs_\u043d\u0430_\u0440\u0443\u0441\u0441\u043a\u043e\u043c", "label": "Task 5: \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c README, AGENTS \u0438 Docusaurus docs \u043d\u0430 \u0440\u0443\u0441\u0441\u043a\u043e\u043c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c README, AGENTS \u0438 Docusaurus docs \u043d\u0430 \u0440\u0443\u0441\u0441\u043a\u043e\u043c", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_\u0438\u043b\u0438", "label": "\u0438\u043b\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0438\u043b\u0438", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 3}, {"id": "quality_gate_contract_docs_plan_task_6_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_quality_gate", "label": "Task 6: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 quality gate", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: \u0424\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 quality gate", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_plan_self_review_\u043f\u043b\u0430\u043d\u0430", "label": "Self-Review \u043f\u043b\u0430\u043d\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Self-Review \u043f\u043b\u0430\u043d\u0430", "community": 159, "community_name": "Community 159", "source_file": "docs/features/quality-gate-contract-docs/plan.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 3}, {"id": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "\u0414\u0438\u0437\u0430\u0439\u043d \u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438 quality gate, API-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430 \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u0438\u0437\u0430\u0439\u043d \u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438 quality gate, API-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430 \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 14}, {"id": "quality_gate_contract_docs_spec_\u0441\u0442\u0430\u0442\u0443\u0441", "label": "\u0421\u0442\u0430\u0442\u0443\u0441", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0430\u0442\u0443\u0441", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_prd", "label": "PRD", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PRD", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 4}, {"id": "quality_gate_contract_docs_spec_\u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "label": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0446\u0435\u043b\u0438", "label": "\u0426\u0435\u043b\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u043d\u0435_\u0432\u0445\u043e\u0434\u0438\u0442_\u0432_\u0437\u0430\u0434\u0430\u0447\u0443", "label": "\u041d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u0437\u0430\u0434\u0430\u0447\u0443", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u0437\u0430\u0434\u0430\u0447\u0443", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0442\u0435\u043a\u0443\u0449\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043a\u0438", "label": "\u0422\u0435\u043a\u0443\u0449\u0438\u0435 \u043d\u0430\u0445\u043e\u0434\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u043a\u0443\u0449\u0438\u0435 \u043d\u0430\u0445\u043e\u0434\u043a\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 4}, {"id": "quality_gate_contract_docs_spec_\u043f\u0440\u043e\u0445\u043e\u0434\u044f\u0449\u0438\u0435_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "label": "\u041f\u0440\u043e\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u043f\u0430\u0434\u0430\u044e\u0449\u0438\u0435_\u0438\u043b\u0438_\u0448\u0443\u043c\u043d\u044b\u0435_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "label": "\u041f\u0430\u0434\u0430\u044e\u0449\u0438\u0435 \u0438\u043b\u0438 \u0448\u0443\u043c\u043d\u044b\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0430\u0434\u0430\u044e\u0449\u0438\u0435 \u0438\u043b\u0438 \u0448\u0443\u043c\u043d\u044b\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u043d\u044b\u0435_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "\u0423\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u043d\u044b\u0435 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u043d\u044b\u0435 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "\u0414\u043e\u043c\u0435\u043d\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043c\u0435\u043d\u043d\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 4}, {"id": "quality_gate_contract_docs_spec_quality_gate", "label": "Quality Gate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Quality Gate", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430", "label": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a API-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a API-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_adr", "label": "ADR", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 4}, {"id": "quality_gate_contract_docs_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_backend_architecture", "label": "Backend Architecture", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend Architecture", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 4}, {"id": "quality_gate_contract_docs_spec_\u0433\u0440\u0430\u043d\u0438\u0446\u0430_unit_tests", "label": "\u0413\u0440\u0430\u043d\u0438\u0446\u0430 unit tests", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0440\u0430\u043d\u0438\u0446\u0430 unit tests", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0433\u0440\u0430\u043d\u0438\u0446\u0430_live_integration_tests", "label": "\u0413\u0440\u0430\u043d\u0438\u0446\u0430 live integration tests", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0440\u0430\u043d\u0438\u0446\u0430 live integration tests", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_openapi_decorators", "label": "OpenAPI decorators", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OpenAPI decorators", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_frontend_architecture", "label": "Frontend Architecture", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Architecture", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 3}, {"id": "quality_gate_contract_docs_spec_generated_types", "label": "Generated Types", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Generated Types", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_tests", "label": "Tests", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tests", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_openapi_contract_scope", "label": "OpenAPI Contract Scope", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OpenAPI Contract Scope", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_documentation_architecture", "label": "Documentation Architecture", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Documentation Architecture", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 4}, {"id": "quality_gate_contract_docs_spec_readme", "label": "README", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "README", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_agents", "label": "AGENTS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_docusaurus", "label": "Docusaurus", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Docusaurus", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 5}, {"id": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_1_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "label": "\u042d\u0442\u0430\u043f 1: \u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 1: \u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_2_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_contract_artifacts", "label": "\u042d\u0442\u0430\u043f 2: \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c contract artifacts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 2: \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c contract artifacts", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_3_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "\u042d\u0442\u0430\u043f 3: \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 3: \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_4_\u043f\u043e\u043b\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "\u042d\u0442\u0430\u043f 4: \u043f\u043e\u043b\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f 4: \u043f\u043e\u043b\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_\u0440\u0438\u0441\u043a\u0438", "label": "\u0420\u0438\u0441\u043a\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "quality_gate_contract_docs_spec_self_review_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "label": "Self-Review \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Self-Review \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "community": 23, "community_name": "Community 23", "source_file": "docs/features/quality-gate-contract-docs/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec", "label": "spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 87, "community_name": "Community 87", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 3}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "\u0420\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0438 \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445 \u0441\u0445\u0435\u043c \u2014 SDD-\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0438 \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445 \u0441\u0445\u0435\u043c \u2014 SDD-\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 13}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0446\u0435\u043b\u0438", "label": "\u0426\u0435\u043b\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u0438", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "\u041d\u0435 \u0446\u0435\u043b\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0446\u0435\u043b\u0438", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 3}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0441\u0442\u0438\u043b\u0438", "label": "\u0421\u0442\u0438\u043b\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0438\u043b\u0438", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "label": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430 \u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 4}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "label": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043d\u0435_\u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "label": "\u041d\u0435 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0441\u0442\u0438\u043b\u044c_\u0440\u0443\u0441\u0441\u043a\u043e\u0433\u043e_\u0442\u0435\u043a\u0441\u0442\u0430", "label": "\u0421\u0442\u0438\u043b\u044c \u0440\u0443\u0441\u0441\u043a\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0438\u043b\u044c \u0440\u0443\u0441\u0441\u043a\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043f\u043b\u0430\u043d_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f_architecture_md", "label": "\u041f\u043b\u0430\u043d \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f `architecture.md`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043b\u0430\u043d \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f `architecture.md`", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439_mermaid_\u043f\u0430\u0442\u0442\u0435\u0440\u043d", "label": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439 Mermaid-\u043f\u0430\u0442\u0442\u0435\u0440\u043d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439 Mermaid-\u043f\u0430\u0442\u0442\u0435\u0440\u043d", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u041f\u043b\u0430\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043b\u0430\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0451\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0451\u043c\u043a\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0451\u043c\u043a\u0438", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 3}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f", "label": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0447\u043d\u0430\u044f", "label": "\u0420\u0443\u0447\u043d\u0430\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0443\u0447\u043d\u0430\u044f", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0440\u0438\u0441\u043a\u0438_\u0438_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "\u0420\u0438\u0441\u043a\u0438 \u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0438\u0441\u043a\u0438 \u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u044f", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "russian_docs_and_architecture_diagrams_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u0434\u043b\u044f_\u0440\u0435\u0432\u044c\u044e", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0440\u0435\u0432\u044c\u044e", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0440\u0435\u0432\u044c\u044e", "community": 119, "community_name": "Community 119", "source_file": "docs/features/russian-docs-and-architecture-diagrams/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan", "label": "plan.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_security_screener_implementation_plan", "label": "Security Screener \u2014 Implementation Plan", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Security Screener \u2014 Implementation Plan", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 2}, {"id": "security_screener_plan_file_structure", "label": "File Structure", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "File Structure", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 19}, {"id": "security_screener_plan_backend_new_files", "label": "Backend (new files)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (new files)", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_backend_modified_files", "label": "Backend (modified files)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (modified files)", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_frontend_new_files", "label": "Frontend (new files)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (new files)", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_frontend_modified_files", "label": "Frontend (modified files)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (modified files)", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_1_backend_moexclientservice_allow_full_board_fetch_with_empty_secids", "label": "Task 1: Backend MoexClientService \u2014 allow full board fetch with empty secids", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Backend MoexClientService \u2014 allow full board fetch with empty secids", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_2_backend_screenerquerydto", "label": "Task 2: Backend ScreenerQueryDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Backend ScreenerQueryDto", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_3_backend_screenerresponsedto", "label": "Task 3: Backend ScreenerResponseDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Backend ScreenerResponseDto", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_4_backend_screenerservice", "label": "Task 4: Backend ScreenerService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Backend ScreenerService", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_5_backend_controller_module_update", "label": "Task 5: Backend controller + module update", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Backend controller + module update", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_6_backend_tests_screenerservice", "label": "Task 6: Backend tests \u2014 ScreenerService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Backend tests \u2014 ScreenerService", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_7_frontend_types_add_screener_types", "label": "Task 7: Frontend types \u2014 add screener types", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Frontend types \u2014 add screener types", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_8_frontend_api_client_for_screener", "label": "Task 8: Frontend API client for screener", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: Frontend API client for screener", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_9_frontend_usescreener_hook", "label": "Task 9: Frontend useScreener hook", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: Frontend useScreener hook", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_10_frontend_filterpanel_components", "label": "Task 10: Frontend FilterPanel components", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: Frontend FilterPanel components", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_11_frontend_screenertable_component", "label": "Task 11: Frontend ScreenerTable component", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: Frontend ScreenerTable component", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_12_frontend_screenerpage", "label": "Task 12: Frontend ScreenerPage", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 12: Frontend ScreenerPage", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_13_frontend_routes_nav_link", "label": "Task 13: Frontend routes + nav link", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 13: Frontend routes + nav link", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_plan_task_14_verify_everything_works", "label": "Task 14: Verify everything works", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 14: Verify everything works", "community": 117, "community_name": "Community 117", "source_file": "docs/features/security-screener/plan.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec", "label": "spec.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 2}, {"id": "security_screener_spec_security_screener_design_specification_sdd", "label": "Security Screener \u2014 Design Specification (SDD)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Security Screener \u2014 Design Specification (SDD)", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 13}, {"id": "security_screener_spec_1_product_requirements_document_prd", "label": "1. Product Requirements Document (PRD)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Product Requirements Document (PRD)", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 6}, {"id": "security_screener_spec_1_1_product_vision", "label": "1.1 Product Vision", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Product Vision", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_1_2_target_audience", "label": "1.2 Target Audience", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2 Target Audience", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_1_3_scope", "label": "1.3 Scope", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3 Scope", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_1_4_user_stories", "label": "1.4 User Stories", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4 User Stories", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_1_5_non_functional_requirements", "label": "1.5 Non-Functional Requirements", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.5 Non-Functional Requirements", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_2_domain_model", "label": "2. Domain Model", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Domain Model", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 2}, {"id": "security_screener_spec_\u0444\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f_\u043d\u0430_backend", "label": "\u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u043d\u0430 backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u043d\u0430 backend", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_3_architecture", "label": "3. Architecture", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Architecture", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 5}, {"id": "security_screener_spec_3_1_backend", "label": "3.1 Backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.1 Backend", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_3_2_frontend", "label": "3.2 Frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.2 Frontend", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_3_3_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "3.3 \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.3 \u0420\u043e\u0443\u0442\u0438\u043d\u0433", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_3_4_state_management", "label": "3.4 State Management", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3.4 State Management", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_4_api_contracts", "label": "4. API Contracts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "4. API Contracts", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 4}, {"id": "security_screener_spec_4_1_screener_endpoint", "label": "4.1 Screener Endpoint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.1 Screener Endpoint", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_4_2_response_types", "label": "4.2 Response Types", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.2 Response Types", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_4_3_error_codes", "label": "4.3 Error Codes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4.3 Error Codes", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_5_database_schema", "label": "5. Database Schema", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Database Schema", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_6_business_rules", "label": "6. Business Rules", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Business Rules", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_7_events_domain_events", "label": "7. Events (Domain Events)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Events (Domain Events)", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_8_risks_and_edge_cases", "label": "8. Risks and Edge Cases", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Risks and Edge Cases", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_9_implementation_phases", "label": "9. Implementation Phases", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "9. Implementation Phases", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 4}, {"id": "security_screener_spec_phase_1_core_screener_shares_bonds", "label": "Phase 1: Core Screener (Shares + Bonds)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Core Screener (Shares + Bonds)", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_phase_2_dividend_yield_shares", "label": "Phase 2: Dividend Yield (Shares)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Dividend Yield (Shares)", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_phase_3_saved_screener_templates", "label": "Phase 3: Saved Screener Templates", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Saved Screener Templates", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_10_openapi_specification", "label": "10. OpenAPI Specification", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. OpenAPI Specification", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_11_adr", "label": "11. ADR", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "11. ADR", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 4}, {"id": "security_screener_spec_adr_014_full_board_fetch_vs_incremental", "label": "ADR-014: Full Board Fetch vs Incremental", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-014: Full Board Fetch vs Incremental", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_adr_015_url_search_params_as_source_of_truth", "label": "ADR-015: URL Search Params as Source of Truth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-015: URL Search Params as Source of Truth", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_adr_016_sorting_on_backend", "label": "ADR-016: Sorting on Backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-016: Sorting on Backend", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "security_screener_spec_12_self_review_checklist", "label": "12. Self-Review Checklist", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12. Self-Review Checklist", "community": 60, "community_name": "Community 60", "source_file": "docs/features/security-screener/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan", "label": "plan.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 2}, {"id": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "label": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0446 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u2014 Plan", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0446 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u2014 Plan", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 8}, {"id": "table_migration_plan_task_1_\u0443\u0442\u043e\u0447\u043d\u0438\u0442\u044c_api_datatable", "label": "Task 1: \u0423\u0442\u043e\u0447\u043d\u0438\u0442\u044c API `DataTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0423\u0442\u043e\u0447\u043d\u0438\u0442\u044c API `DataTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan_task_2_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_dividendstable", "label": "Task 2: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `DividendsTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `DividendsTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan_task_3_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_screenertable", "label": "Task 3: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `ScreenerTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `ScreenerTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan_task_4_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_sharepositiontable", "label": "Task 4: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `SharePositionTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `SharePositionTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan_task_5_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_bondpositiontable", "label": "Task 5: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `BondPositionTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `BondPositionTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan_task_6_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_legacy_\u0441\u043b\u043e\u044f_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "Task 6: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 legacy-\u0441\u043b\u043e\u044f \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 legacy-\u0441\u043b\u043e\u044f \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_plan_task_7_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "Task 7: \u0412\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: \u0412\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/plan.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec", "label": "spec.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 3}, {"id": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "label": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0446 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0446 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 8}, {"id": "table_migration_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0444\u0438\u0447\u0438", "label": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0444\u0438\u0447\u0438", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0444\u0438\u0447\u0438", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec_in_scope", "label": "In scope", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "In scope", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec_out_of_scope", "label": "Out of scope", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Out of scope", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_spec_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/spec.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks", "label": "tasks.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.md", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 3}, {"id": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "label": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0446 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u2014 Tasks", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0446 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u2014 Tasks", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 8}, {"id": "table_migration_tasks_task_1_\u0443\u0442\u043e\u0447\u043d\u0438\u0442\u044c_api_datatable", "label": "Task 1: \u0423\u0442\u043e\u0447\u043d\u0438\u0442\u044c API `DataTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: \u0423\u0442\u043e\u0447\u043d\u0438\u0442\u044c API `DataTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks_task_2_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_dividendstable", "label": "Task 2: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `DividendsTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `DividendsTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks_task_3_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_screenertable", "label": "Task 3: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `ScreenerTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `ScreenerTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks_task_4_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_sharepositiontable", "label": "Task 4: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `SharePositionTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `SharePositionTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks_task_5_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_bondpositiontable", "label": "Task 5: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `BondPositionTable`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: \u041c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c `BondPositionTable`", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks_task_6_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_legacy_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "Task 6: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 legacy \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: \u041e\u0447\u0438\u0441\u0442\u043a\u0430 legacy \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "table_migration_tasks_task_7_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "Task 7: \u0412\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: \u0412\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "community": 82, "community_name": "Community 82", "source_file": "docs/features/table-migration/tasks.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan", "label": "plan.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plan.md", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "label": "T-Bank Broker Portfolios Implementation Plan", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "T-Bank Broker Portfolios Implementation Plan", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 14}, {"id": "tbank_broker_portfolios_plan_file_structure", "label": "File Structure", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "File Structure", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 5}, {"id": "tbank_broker_portfolios_plan_backend", "label": "Backend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_durable_sync", "label": "Durable Sync", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Durable Sync", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_frontend", "label": "Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_published_docs", "label": "Published Docs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Published Docs", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_1_add_grpc_dependencies_and_official_proto_contracts", "label": "Task 1: Add gRPC Dependencies And Official Proto Contracts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 1: Add gRPC Dependencies And Official Proto Contracts", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_2_add_configuration_and_core_t_bank_types", "label": "Task 2: Add Configuration And Core T-Bank Types", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 2: Add Configuration And Core T-Bank Types", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_3_implement_money_account_and_operation_mappers", "label": "Task 3: Implement Money, Account, And Operation Mappers", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 3: Implement Money, Account, And Operation Mappers", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_4_implement_tbankclientservice_grpc_transport", "label": "Task 4: Implement TBankClientService gRPC Transport", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 4: Implement TBankClientService gRPC Transport", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_5_implement_broker_accounts_endpoint", "label": "Task 5: Implement Broker Accounts Endpoint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 5: Implement Broker Accounts Endpoint", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_6_implement_broker_portfolio_endpoint", "label": "Task 6: Implement Broker Portfolio Endpoint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 6: Implement Broker Portfolio Endpoint", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_7_implement_broker_operations_endpoint", "label": "Task 7: Implement Broker Operations Endpoint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 7: Implement Broker Operations Endpoint", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_8_generate_frontend_types_and_add_broker_api_hooks", "label": "Task 8: Generate Frontend Types And Add Broker API Hooks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 8: Generate Frontend Types And Add Broker API Hooks", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_9_build_broker_portfolio_ui", "label": "Task 9: Build Broker Portfolio UI", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 9: Build Broker Portfolio UI", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_10_add_durable_operation_sync_models_and_service", "label": "Task 10: Add Durable Operation Sync Models And Service", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 10: Add Durable Operation Sync Models And Service", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_11_publish_t_bank_integration_documentation", "label": "Task 11: Publish T-Bank Integration Documentation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 11: Publish T-Bank Integration Documentation", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_plan_task_12_final_verification_and_openapi_contract_check", "label": "Task 12: Final Verification And OpenAPI Contract Check", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task 12: Final Verification And OpenAPI Contract Check", "community": 123, "community_name": "Community 123", "source_file": "docs/features/tbank-broker-portfolios/plan.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 3}, {"id": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "label": "\u041f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439 T-Bank", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439 T-Bank", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 18}, {"id": "tbank_broker_portfolios_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0444\u0430\u043a\u0442\u044b_\u043e_\u0432\u043d\u0435\u0448\u043d\u0435\u043c_api", "label": "\u0424\u0430\u043a\u0442\u044b \u043e \u0432\u043d\u0435\u0448\u043d\u0435\u043c API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0430\u043a\u0442\u044b \u043e \u0432\u043d\u0435\u0448\u043d\u0435\u043c API", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0446\u0435\u043b\u0438", "label": "\u0426\u0435\u043b\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u0438", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "\u041d\u0435 \u0446\u0435\u043b\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0435 \u0446\u0435\u043b\u0438", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0441\u0447\u0435\u0442\u043e\u0432", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0441\u0447\u0435\u0442\u043e\u0432", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u043f\u043e_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "label": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u043e \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u043e \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 4}, {"id": "tbank_broker_portfolios_spec_\u043f\u043e\u0447\u0435\u043c\u0443_grpc", "label": "\u041f\u043e\u0447\u0435\u043c\u0443 gRPC", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0447\u0435\u043c\u0443 gRPC", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043f\u043e\u0447\u0435\u043c\u0443_\u043d\u0435_rest_\u043f\u0435\u0440\u0432\u044b\u043c", "label": "\u041f\u043e\u0447\u0435\u043c\u0443 \u043d\u0435 REST \u043f\u0435\u0440\u0432\u044b\u043c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0447\u0435\u043c\u0443 \u043d\u0435 REST \u043f\u0435\u0440\u0432\u044b\u043c", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043f\u043e\u0447\u0435\u043c\u0443_\u043d\u0435_sdk_\u043f\u0435\u0440\u0432\u044b\u043c", "label": "\u041f\u043e\u0447\u0435\u043c\u0443 \u043d\u0435 SDK \u043f\u0435\u0440\u0432\u044b\u043c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0447\u0435\u043c\u0443 \u043d\u0435 SDK \u043f\u0435\u0440\u0432\u044b\u043c", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430_\u0431\u044d\u043a\u0435\u043d\u0434\u0430", "label": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u0431\u044d\u043a\u0435\u043d\u0434\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u0431\u044d\u043a\u0435\u043d\u0434\u0430", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439_api_\u0431\u044d\u043a\u0435\u043d\u0434\u0430", "label": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 API \u0431\u044d\u043a\u0435\u043d\u0434\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 API \u0431\u044d\u043a\u0435\u043d\u0434\u0430", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043c\u043e\u0434\u0435\u043b\u044c_\u043e\u0442\u0432\u0435\u0442\u0430", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043e\u0442\u0432\u0435\u0442\u0430", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043e\u0442\u0432\u0435\u0442\u0430", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430_\u043e\u0448\u0438\u0431\u043e\u043a", "label": "\u041e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043e\u0448\u0438\u0431\u043e\u043a", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043e\u0448\u0438\u0431\u043e\u043a", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0432\u0438\u0434_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430_\u043d\u0430_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0435", "label": "\u0412\u0438\u0434 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430 \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0435", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u0438\u0434 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430 \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0435", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0438 \u043f\u0440\u0438\u0435\u043c\u043a\u0438", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_broker_portfolios_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u0442\u0430\u043f\u044b \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "community": 118, "community_name": "Community 118", "source_file": "docs/features/tbank-broker-portfolios/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_deadline_queue_fix_spec", "label": "spec.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "spec.md", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 3}, {"id": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "\u0418\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 gRPC deadline \u0434\u043b\u044f T-Bank \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 gRPC deadline \u0434\u043b\u044f T-Bank \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 6}, {"id": "tbank_deadline_queue_fix_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_deadline_queue_fix_spec_\u0446\u0435\u043b\u044c", "label": "\u0426\u0435\u043b\u044c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_deadline_queue_fix_spec_\u0433\u0440\u0430\u043d\u0438\u0446\u044b", "label": "\u0413\u0440\u0430\u043d\u0438\u0446\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0413\u0440\u0430\u043d\u0438\u0446\u044b", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_deadline_queue_fix_spec_acceptance_criteria", "label": "Acceptance criteria", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance criteria", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "tbank_deadline_queue_fix_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "community": 116, "community_name": "Community 116", "source_file": "docs/features/tbank-deadline-queue-fix/spec.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox", "label": "inbox.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "inbox.md", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_inbox", "label": "Inbox", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Inbox", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 16}, {"id": "docs_inbox_\u0434\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u043e\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435_\u0432\u0438\u0434\u0435\u043d\u0438\u0435", "label": "\u0414\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435 \u0432\u0438\u0434\u0435\u043d\u0438\u0435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435 \u0432\u0438\u0434\u0435\u043d\u0438\u0435", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0435_\u044f\u0434\u0440\u043e", "label": "\u0424\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0435 \u044f\u0434\u0440\u043e", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0435 \u044f\u0434\u0440\u043e", "community": 277, "community_name": "Community 277", "source_file": "docs/inbox.md", "file_type": "document", "degree": 3}, {"id": "docs_inbox_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0435\u0434\u0438\u043d\u044b\u0439_\u0436\u0443\u0440\u043d\u0430\u043b_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0434\u0438\u043d\u044b\u0439 \u0436\u0443\u0440\u043d\u0430\u043b \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0434\u0438\u043d\u044b\u0439 \u0436\u0443\u0440\u043d\u0430\u043b \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "community": 277, "community_name": "Community 277", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044c_\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e_\u0441\u043f\u043e\u0441\u043e\u0431\u043e\u0432_\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u0432 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u0432 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445", "community": 277, "community_name": "Community 277", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "label": "\u0411\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b \u0438 \u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0411\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b \u0438 \u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u044b", "community": 246, "community_name": "Community 246", "source_file": "docs/inbox.md", "file_type": "document", "degree": 6}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u0432\u043a\u043b\u0430\u0434\u044b", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435 \u0432\u043a\u043b\u0430\u0434\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435 \u0432\u043a\u043b\u0430\u0434\u044b", "community": 246, "community_name": "Community 246", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043d\u0430\u043a\u043e\u043f\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435_\u0441\u0447\u0435\u0442\u0430", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043a\u043e\u043f\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043a\u043e\u043f\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430", "community": 246, "community_name": "Community 246", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043c\u0435\u0442\u0430\u043b\u043b\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0441\u0447\u0435\u0442\u0430", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u043b\u043b\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0447\u0435\u0442\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u043b\u043b\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0447\u0435\u0442\u0430", "community": 246, "community_name": "Community 246", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438_\u043f\u043e_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u043c_\u043a\u0430\u0440\u0442\u0430\u043c", "label": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u043f\u043e \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u043c \u043a\u0430\u0440\u0442\u0430\u043c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u043f\u043e \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u043c \u043a\u0430\u0440\u0442\u0430\u043c", "community": 246, "community_name": "Community 246", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0440\u0430\u0437\u0432\u0438\u0442\u044c_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e_\u043f\u043e\u0442\u043e\u043a\u0430", "label": "\u0420\u0430\u0437\u0432\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0442\u043e\u043a\u0430", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0432\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0442\u043e\u043a\u0430", "community": 246, "community_name": "Community 246", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "label": "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435 \u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435 \u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "community": 269, "community_name": "Community 269", "source_file": "docs/inbox.md", "file_type": "document", "degree": 4}, {"id": "docs_inbox_\u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c_\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435_\u043f\u043e_api_first_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0443", "label": "\u0420\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u043e API-first \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0443", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u043e API-first \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0443", "community": 269, "community_name": "Community 269", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0441\u0434\u0435\u043b\u0430\u0442\u044c_\u043c\u043e\u0431\u0438\u043b\u044c\u043d\u0443\u044e_pwa", "label": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u0443\u044e PWA", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u0443\u044e PWA", "community": 269, "community_name": "Community 269", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043d\u043e\u0435_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435_\u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e_\u0434\u043e\u0441\u0442\u0443\u043f\u0430", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043d\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043d\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430", "community": 269, "community_name": "Community 269", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435_\u043a\u0430\u043d\u0430\u043b\u044b_\u0438_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044f", "label": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044f", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 3}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_telegram_\u0431\u043e\u0442\u0430", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c Telegram-\u0431\u043e\u0442\u0430", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c Telegram-\u0431\u043e\u0442\u0430", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_mcp_agent_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "label": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c MCP/agent-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c MCP/agent-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_frontend_\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "label": "Frontend-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "community": 260, "community_name": "Community 260", "source_file": "docs/inbox.md", "file_type": "document", "degree": 5}, {"id": "docs_inbox_\u043f\u0435\u0440\u0435\u0439\u0442\u0438_\u043a_feature_sliced_design", "label": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a Feature-Sliced Design", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a Feature-Sliced Design", "community": 260, "community_name": "Community 260", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "label": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0434\u0438\u0437\u0430\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "community": 260, "community_name": "Community 260", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438_\u0430\u0443\u0434\u0438\u0442_frontend_debt_backlog", "label": "\u041f\u0440\u043e\u0432\u0435\u0441\u0442\u0438 \u0430\u0443\u0434\u0438\u0442 frontend debt backlog", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0432\u0435\u0441\u0442\u0438 \u0430\u0443\u0434\u0438\u0442 frontend debt backlog", "community": 260, "community_name": "Community 260", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_backend_driven_ui", "label": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c Backend-Driven UI", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c Backend-Driven UI", "community": 260, "community_name": "Community 260", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e_frontend", "label": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e frontend", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 2}, {"id": "docs_inbox_\u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0442\u0435\u0441\u0442\u044b", "label": "\u0420\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0442\u0435\u0441\u0442\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0442\u0435\u0441\u0442\u044b", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_api", "label": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c API", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 2}, {"id": "docs_inbox_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_\u0438_\u0443\u043b\u0443\u0447\u0448\u0430\u0442\u044c_\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_api", "label": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u0438 \u0443\u043b\u0443\u0447\u0448\u0430\u0442\u044c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u0438 \u0443\u043b\u0443\u0447\u0448\u0430\u0442\u044c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c API", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u0438_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "label": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "community": 270, "community_name": "Community 270", "source_file": "docs/inbox.md", "file_type": "document", "degree": 4}, {"id": "docs_inbox_\u0443\u043b\u0443\u0447\u0448\u0438\u0442\u044c_\u043f\u043e\u0438\u0441\u043a_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "label": "\u0423\u043b\u0443\u0447\u0448\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u043b\u0443\u0447\u0448\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "community": 270, "community_name": "Community 270", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0441\u0434\u0435\u043b\u0430\u0442\u044c_\u0442\u0430\u0431\u043b\u0438\u0446\u044b_\u0430\u043a\u0446\u0438\u0439_\u0438_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u0435\u0435", "label": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0430\u043a\u0446\u0438\u0439 \u0438 \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u0435\u0435", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0430\u043a\u0446\u0438\u0439 \u0438 \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u0435\u0435", "community": 270, "community_name": "Community 270", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c_\u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0435_\u0440\u0435\u0439\u0442\u0438\u043d\u0433\u0438_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0435 \u0440\u0435\u0439\u0442\u0438\u043d\u0433\u0438 \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0435 \u0440\u0435\u0439\u0442\u0438\u043d\u0433\u0438 \u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "community": 270, "community_name": "Community 270", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0441\u043e\u0431\u044b\u0442\u0438\u044f_\u0438_\u0431\u0443\u0434\u0443\u0449\u0438\u0435_\u0432\u044b\u043f\u043b\u0430\u0442\u044b", "label": "\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0438 \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u0432\u044b\u043f\u043b\u0430\u0442\u044b", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0438 \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u0432\u044b\u043f\u043b\u0430\u0442\u044b", "community": 276, "community_name": "Community 276", "source_file": "docs/inbox.md", "file_type": "document", "degree": 3}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439", "community": 276, "community_name": "Community 276", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442", "label": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0432\u044b\u043f\u043b\u0430\u0442", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443 \u0431\u0443\u0434\u0443\u0449\u0438\u0445 \u0432\u044b\u043f\u043b\u0430\u0442", "community": 276, "community_name": "Community 276", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "label": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "community": 271, "community_name": "Community 271", "source_file": "docs/inbox.md", "file_type": "document", "degree": 4}, {"id": "docs_inbox_\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c_\u0438\u0441\u0442\u043e\u0440\u0438\u044e_\u0431\u0430\u043b\u0430\u043d\u0441\u0430_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0438\u0441\u0442\u043e\u0440\u0438\u044e \u0431\u0430\u043b\u0430\u043d\u0441\u0430 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0438\u0441\u0442\u043e\u0440\u0438\u044e \u0431\u0430\u043b\u0430\u043d\u0441\u0430 \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "community": 271, "community_name": "Community 271", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439_\u0440\u0430\u0437\u0434\u0435\u043b_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "label": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u0434\u0435\u043b \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u0434\u0435\u043b \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "community": 271, "community_name": "Community 271", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443_\u0432_pdf_\u0438_xlsx", "label": "\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443 \u0432 PDF \u0438 XLSX", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443 \u0432 PDF \u0438 XLSX", "community": 271, "community_name": "Community 271", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0445_t_bank", "label": "\u0423\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0445 T-Bank", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0423\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0445 T-Bank", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 2}, {"id": "docs_inbox_\u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0445_\u043f\u0440\u0438_\u043e\u0442\u043a\u0430\u0437\u0435_t_bank_api", "label": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u0440\u0438 \u043e\u0442\u043a\u0430\u0437\u0435 T-Bank API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u0440\u0438 \u043e\u0442\u043a\u0430\u0437\u0435 T-Bank API", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "label": "\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u043e\u043b\u0433 \u2014 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442 \u043d\u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u043e\u043b\u0433 \u2014 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442 \u043d\u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 12}, {"id": "docs_inbox_p0_p1_\u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0435_t_bank_\u043f\u043e_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c", "label": "P0/P1: \u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 T-Bank \u043f\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P0/P1: \u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 T-Bank \u043f\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p1_\u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c_api_envelope_\u0438_runtime_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442", "label": "P1: \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c API envelope \u0438 runtime-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P1: \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c API envelope \u0438 runtime-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p1_\u0443\u0441\u0438\u043b\u0438\u0442\u044c_production_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e_\u0438_auth_security", "label": "P1: \u0443\u0441\u0438\u043b\u0438\u0442\u044c production-\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e \u0438 auth security", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P1: \u0443\u0441\u0438\u043b\u0438\u0442\u044c production-\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e \u0438 auth security", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p1_\u0441\u0434\u0435\u043b\u0430\u0442\u044c_\u043b\u043e\u043a\u0430\u043b\u044c\u043d\u0443\u044e_\u0438\u0441\u0442\u043e\u0440\u0438\u044e_t_bank_\u0440\u0430\u0431\u043e\u0447\u0438\u043c_read_path", "label": "P1: \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u0443\u044e \u0438\u0441\u0442\u043e\u0440\u0438\u044e T-Bank \u0440\u0430\u0431\u043e\u0447\u0438\u043c read-path", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P1: \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u0443\u044e \u0438\u0441\u0442\u043e\u0440\u0438\u044e T-Bank \u0440\u0430\u0431\u043e\u0447\u0438\u043c read-path", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p1_p2_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c_\u043c\u043e\u0434\u0435\u043b\u044c_\u0441\u0435\u0441\u0441\u0438\u0439_\u043a_\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u044f\u043c", "label": "P1/P2: \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c \u0441\u0435\u0441\u0441\u0438\u0439 \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u044f\u043c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P1/P2: \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c \u0441\u0435\u0441\u0441\u0438\u0439 \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u044f\u043c", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p2_\u0443\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c_\u0434\u0432\u043e\u0439\u043d\u0443\u044e_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_frontend_api_\u0442\u0438\u043f\u043e\u0432", "label": "P2: \u0443\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c \u0434\u0432\u043e\u0439\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 frontend API-\u0442\u0438\u043f\u043e\u0432", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P2: \u0443\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c \u0434\u0432\u043e\u0439\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 frontend API-\u0442\u0438\u043f\u043e\u0432", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p2_\u0434\u0435\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u043a\u0440\u0443\u043f\u043d\u044b\u0435_backend_frontend_\u043c\u043e\u0434\u0443\u043b\u0438", "label": "P2: \u0434\u0435\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0440\u0443\u043f\u043d\u044b\u0435 backend/frontend \u043c\u043e\u0434\u0443\u043b\u0438", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P2: \u0434\u0435\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0440\u0443\u043f\u043d\u044b\u0435 backend/frontend \u043c\u043e\u0434\u0443\u043b\u0438", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p2_\u0441\u043e\u043a\u0440\u0430\u0442\u0438\u0442\u044c_\u043d\u0435\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0443\u0435\u043c\u0443\u044e_\u0442\u0438\u043f\u043e\u0432\u0443\u044e_\u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "P2: \u0441\u043e\u043a\u0440\u0430\u0442\u0438\u0442\u044c \u043d\u0435\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0443\u0435\u043c\u0443\u044e \u0442\u0438\u043f\u043e\u0432\u0443\u044e \u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P2: \u0441\u043e\u043a\u0440\u0430\u0442\u0438\u0442\u044c \u043d\u0435\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0443\u0435\u043c\u0443\u044e \u0442\u0438\u043f\u043e\u0432\u0443\u044e \u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p2_\u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044e_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "P2: \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P2: \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p3_\u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_frontend_delivery", "label": "P3: \u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c frontend delivery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P3: \u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c frontend delivery", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_p3_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0442\u0438\u043f\u044b_\u0434\u0430\u043d\u043d\u044b\u0445_\u043a_\u0431\u0443\u0434\u0443\u0449\u0435\u043c\u0443_ledger", "label": "P3: \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0442\u0438\u043f\u044b \u0434\u0430\u043d\u043d\u044b\u0445 \u043a \u0431\u0443\u0434\u0443\u0449\u0435\u043c\u0443 ledger", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "P3: \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0442\u0438\u043f\u044b \u0434\u0430\u043d\u043d\u044b\u0445 \u043a \u0431\u0443\u0434\u0443\u0449\u0435\u043c\u0443 ledger", "community": 165, "community_name": "Community 165", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f_\u043a\u0430\u0440\u0442\u0430_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "label": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "docs_inbox_\u043e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435_\u0432\u043e\u043f\u0440\u043e\u0441\u044b", "label": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b", "community": 145, "community_name": "Community 145", "source_file": "docs/inbox.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections", "label": "2026-06-18-broker-account-sections.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "2026-06-18-broker-account-sections.md", "community": 116, "community_name": "Community 116", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 2}, {"id": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 9}, {"id": "research_2026_06_18_broker_account_sections_\u0446\u0435\u043b\u044c_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f", "label": "\u0426\u0435\u043b\u044c \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0426\u0435\u043b\u044c \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0442\u0435\u043a\u0443\u0449\u0435\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "label": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 3}, {"id": "research_2026_06_18_broker_account_sections_frontend", "label": "Frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_backend_\u0438_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u044b", "label": "Backend \u0438 \u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u044b", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend \u0438 \u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u044b", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0432\u044b\u044f\u0432\u043b\u0435\u043d\u043d\u043e\u0435_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435", "label": "\u0412\u044b\u044f\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0412\u044b\u044f\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 6}, {"id": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043a\u0440\u0443\u0433\u043e\u0432\u043e\u0439_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "label": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043a\u0440\u0443\u0433\u043e\u0432\u043e\u0439 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043a\u0440\u0443\u0433\u043e\u0432\u043e\u0439 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0441\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430_\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430", "label": "\u0421\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0444\u0438\u043b\u044c\u0442\u0440_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "\u0424\u0438\u043b\u044c\u0442\u0440 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0424\u0438\u043b\u044c\u0442\u0440 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "label": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u0430\u044f_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "\u0421\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u044b\u0435_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "label": "\u0421\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0421\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u043f\u0435\u0440\u0432\u043e\u0439_\u0432\u0435\u0440\u0441\u0438\u0438", "label": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0433\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0435\u0440\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0433\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0435\u0440\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "research_2026_06_18_broker_account_sections_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "community": 137, "community_name": "Community 137", "source_file": "docs/research/2026-06-18-broker-account-sections.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint", "label": "biome-vs-oxlint.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "biome-vs-oxlint.md", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_vs_oxlint_comparison_for_frontend_tooling", "label": "Biome vs Oxlint: Comparison for Frontend Tooling", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Biome vs Oxlint: Comparison for Frontend Tooling", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 5}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_context", "label": "Context", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Context", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_candidates", "label": "Candidates", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Candidates", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 3}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_v2_5_0", "label": "Biome (v2.5.0)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Biome (v2.5.0)", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_oxlint_oxfmt_oxc_project", "label": "Oxlint + Oxfmt (Oxc Project)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Oxlint + Oxfmt (Oxc Project)", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_comparison", "label": "Comparison", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Comparison", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_biome_vs_oxlint_verdict_biome", "label": "Verdict: Biome", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verdict: Biome", "community": 223, "community_name": "Community 223", "source_file": "docs/research/frontend-infrastructure-tooling/biome-vs-oxlint.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router", "label": "react-router-vs-tanstack-router.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-vs-tanstack-router.md", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_vs_tanstack_router", "label": "react-router-dom vs TanStack Router", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom vs TanStack Router", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 5}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_context", "label": "Context", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Context", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_candidates", "label": "Candidates", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Candidates", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 3}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_v6_\u0442\u0435\u043a\u0443\u0449\u0438\u0439", "label": "react-router-dom v6 (\u0442\u0435\u043a\u0443\u0449\u0438\u0439)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom v6 (\u0442\u0435\u043a\u0443\u0449\u0438\u0439)", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_tanstack_router", "label": "TanStack Router", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TanStack Router", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_comparison", "label": "Comparison", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Comparison", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_verdict_tanstack_router", "label": "Verdict: TanStack Router", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verdict: TanStack Router", "community": 224, "community_name": "Community 224", "source_file": "docs/research/frontend-infrastructure-tooling/react-router-vs-tanstack-router.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap", "label": "roadmap.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 21.7, "font": {"size": 12, "color": "#ffffff"}, "title": "roadmap.md", "community": 87, "community_name": "Community 87", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 40}, {"id": "docs_roadmap_roadmap", "label": "Roadmap", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Roadmap", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 5}, {"id": "docs_roadmap_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "label": "\u0417\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435 \u044d\u043f\u0438\u043a\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0417\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435 \u044d\u043f\u0438\u043a\u0438", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 4}, {"id": "docs_roadmap_\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_epics_authentication_md", "label": "[\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f](epics/Authentication.md)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f](epics/Authentication.md)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_epics_documentation_md", "label": "[\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f](epics/Documentation.md)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f](epics/Documentation.md)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_devops_epics_devops_md", "label": "[DevOps](epics/DevOps.md)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[DevOps](epics/DevOps.md)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "label": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u044d\u043f\u0438\u043a\u0438", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u044d\u043f\u0438\u043a\u0438", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 4}, {"id": "docs_roadmap_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430_epics_brokerportfolio_md", "label": "[\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c \u0431\u0440\u043e\u043a\u0435\u0440\u0430](epics/BrokerPortfolio.md)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c \u0431\u0440\u043e\u043a\u0435\u0440\u0430](epics/BrokerPortfolio.md)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_epics_portfoliodashboard_md", "label": "[\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430](epics/PortfolioDashboard.md)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[\u041f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430](epics/PortfolioDashboard.md)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430_epics_qualityassurance_md", "label": "[\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430](epics/QualityAssurance.md)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430](epics/QualityAssurance.md)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_\u043a\u0440\u0443\u043f\u043d\u044b\u0435_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u0440\u0430\u0431\u043e\u0442\u044b_\u0432\u043d\u0435_\u044d\u043f\u0438\u043a\u043e\u0432", "label": "\u041a\u0440\u0443\u043f\u043d\u044b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435 \u0440\u0430\u0431\u043e\u0442\u044b (\u0432\u043d\u0435 \u044d\u043f\u0438\u043a\u043e\u0432)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0440\u0443\u043f\u043d\u044b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435 \u0440\u0430\u0431\u043e\u0442\u044b (\u0432\u043d\u0435 \u044d\u043f\u0438\u043a\u043e\u0432)", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "docs_roadmap_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445_\u0444\u0438\u0447", "label": "\u041a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0444\u0438\u0447", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u041a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0444\u0438\u0447", "community": 176, "community_name": "Community 176", "source_file": "docs/roadmap.md", "file_type": "document", "degree": 1}, {"id": "design_system_changelog", "label": "CHANGELOG.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CHANGELOG.md", "community": 268, "community_name": "Community 268", "source_file": "packages/design-system/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "design_system_changelog_changelog", "label": "Changelog", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Changelog", "community": 268, "community_name": "Community 268", "source_file": "packages/design-system/CHANGELOG.md", "file_type": "document", "degree": 2}, {"id": "design_system_changelog_0_1_0_2026_06_21", "label": "0.1.0 (2026-06-21)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "0.1.0 (2026-06-21)", "community": 268, "community_name": "Community 268", "source_file": "packages/design-system/CHANGELOG.md", "file_type": "document", "degree": 2}, {"id": "design_system_changelog_added", "label": "Added", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Added", "community": 268, "community_name": "Community 268", "source_file": "packages/design-system/CHANGELOG.md", "file_type": "document", "degree": 1}];
const RAW_EDGES = [{"from": "husky", "to": "users_ksv741_project_ksv741_moex_vibe_husky_husky_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies_husky", "to": "husky", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_collection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_sourceroot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli_compileroptions", "to": "backend_nest_cli_compileroptions_assets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli_compileroptions", "to": "backend_nest_cli_compileroptions_watchassets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_postinstall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_start_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_start_prod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_axios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_bcrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_cache_manager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_class_transformer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_class_validator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_cookie_parser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_grpc_grpc_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_grpc_proto_loader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_libsql_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_long", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_axios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_cache_manager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_common", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_core", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_jwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_platform_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_swagger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_p_queue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_prisma_adapter_libsql", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_prisma_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_protobufjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_reflect_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_rxjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_swagger_ui_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_nestjs_cli", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_nestjs_schematics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_nestjs_testing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_swc_core", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_bcrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_cookie_parser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_typescript_eslint_eslint_plugin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_typescript_eslint_parser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_unplugin_swc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "auth_auth_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "auth_auth_module_authmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "bonds_bonds_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "bonds_bonds_module_bondsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "cache_cache_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "cache_cache_module_cachemodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "candles_candles_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "candles_candles_module_candlesmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "config_configuration", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "health_health_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "health_health_module_healthmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "moex_client_moex_client_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "moex_client_moex_client_module_moexclientmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "portfolio_portfolio_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "portfolio_portfolio_module_portfoliomodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "securities_securities_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "securities_securities_module_securitiesmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "shares_shares_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "shares_shares_module_sharesmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "src_app_module_appmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "tbank_tbank_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_module", "to": "tbank_tbank_module_tbankmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "src_app_module_appmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_api_response_dto", "to": "dto_api_response_dto_apiresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_api_response_dto", "to": "dto_api_response_dto_apiresponsemeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_response_dto", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "interceptors_transform_interceptor", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "dto_api_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_api_response_dto_apiresponsemeta", "to": "dto_api_response_dto_apiresponsemeta_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto_bondenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto_bondhistoryenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto_bondmarketdataenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto_candleenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto_healthenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_response_dto", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_response_dto_searchenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_dividendsenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_shareenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_sharehistoryenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_sharemarketdataenvelopedto", "to": "dto_api_response_dto_apiresponsemeta", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_api_response_dto_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_api_response_dto_apiresponse", "to": "dto_api_response_dto_apiresponse_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "interceptors_transform_interceptor", "to": "dto_api_response_dto_apiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "interceptors_transform_interceptor_transforminterceptor_intercept", "to": "dto_api_response_dto_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_api_response_dto_apiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "dto_api_response_dto_apiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_pagination_dto", "to": "dto_pagination_dto_paginationdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "filters_http_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filters_http_exception_filter", "to": "filters_http_exception_filter_httpexceptionfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "filters_http_exception_filter_httpexceptionfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filters_http_exception_filter_httpexceptionfilter", "to": "filters_http_exception_filter_httpexceptionfilter_catch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "interceptors_transform_interceptor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "interceptors_transform_interceptor", "to": "interceptors_transform_interceptor_transforminterceptor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "interceptors_transform_interceptor_transforminterceptor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "interceptors_transform_interceptor_transforminterceptor", "to": "interceptors_transform_interceptor_transforminterceptor_intercept", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "middleware_request_logging_middleware", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_request_logging_middleware", "to": "middleware_request_logging_middleware_requestloggingmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "middleware_request_logging_middleware_requestloggingmiddleware", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_request_logging_middleware_requestloggingmiddleware", "to": "middleware_request_logging_middleware_requestloggingmiddleware_use", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_integration_spec", "to": "config_configuration", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "config_configuration", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_config_spec", "to": "config_configuration", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_main_ts_src_main", "to": "src_main_bootstrap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "auth_auth_controller_authcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "auth_auth_controller_cookie_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "decorators_current_user_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "decorators_current_user_decorator_currentuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "decorators_public_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "decorators_public_decorator_public", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_auth_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_auth_response_dto_authlogoutresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_auth_response_dto_authprofileresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_auth_response_dto_authtokenresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_login_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_login_dto_logindto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_register_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_register_dto_registerdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_update_profile_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "dto_update_profile_dto_updateprofiledto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "interfaces_jwt_payload_interface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "auth_auth_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_getprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_logout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_refresh", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller", "to": "auth_auth_controller_authcontroller_updateprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "auth_auth_controller_authcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_constructor", "to": "auth_auth_service_authservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_register", "to": "dto_register_dto_registerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_login", "to": "dto_login_dto_logindto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_logout", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_getprofile", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_updateprofile", "to": "dto_update_profile_dto_updateprofiledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_controller_authcontroller_updateprofile", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "auth_auth_module_authmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "guards_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "guards_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_module", "to": "guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_spec", "to": "auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_spec", "to": "auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_spec", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_spec", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "auth_auth_service_authservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "dto_login_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "dto_login_dto_logindto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "dto_register_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "dto_register_dto_registerdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "dto_update_profile_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "dto_update_profile_dto_updateprofiledto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "interfaces_jwt_payload_interface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_generatetokens", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_getprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_logout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_refresh", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_sanitizeuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice", "to": "auth_auth_service_authservice_updateprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_constructor", "to": "prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_register", "to": "auth_auth_service_authservice_generatetokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_register", "to": "dto_register_dto_registerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_login", "to": "auth_auth_service_authservice_generatetokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_login", "to": "dto_login_dto_logindto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_refresh", "to": "auth_auth_service_authservice_generatetokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_getprofile", "to": "auth_auth_service_authservice_sanitizeuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_updateprofile", "to": "auth_auth_service_authservice_sanitizeuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_updateprofile", "to": "dto_update_profile_dto_updateprofiledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_service_authservice_generatetokens", "to": "auth_auth_service_authservice_sanitizeuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "decorators_current_user_decorator", "to": "decorators_current_user_decorator_currentuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "decorators_current_user_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "decorators_current_user_decorator_currentuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "decorators_public_decorator", "to": "decorators_public_decorator_public", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard", "to": "decorators_public_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "decorators_public_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "decorators_public_decorator_public", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "decorators_roles_decorator", "to": "decorators_roles_decorator_roles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_roles_guard", "to": "decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_authlogoutresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_authprofileresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_authresponsemetadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_authtokendatadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_authtokenresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_authuserdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_auth_response_dto", "to": "dto_auth_response_dto_logoutdatadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_login_dto", "to": "dto_login_dto_logindto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_register_dto", "to": "dto_register_dto_registerdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_update_profile_dto", "to": "dto_update_profile_dto_updateprofiledto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard", "to": "guards_jwt_auth_guard_jwtauthguard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard", "to": "interfaces_jwt_payload_interface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard_jwtauthguard", "to": "guards_jwt_auth_guard_jwtauthguard_canactivate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard_jwtauthguard", "to": "guards_jwt_auth_guard_jwtauthguard_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard_jwtauthguard", "to": "guards_jwt_auth_guard_jwtauthguard_extracttoken", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_jwt_auth_guard_jwtauthguard_canactivate", "to": "guards_jwt_auth_guard_jwtauthguard_extracttoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_roles_guard", "to": "guards_roles_guard_rolesguard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_roles_guard_rolesguard", "to": "guards_roles_guard_rolesguard_canactivate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "guards_roles_guard_rolesguard", "to": "guards_roles_guard_rolesguard_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "interfaces_jwt_payload_interface", "to": "interfaces_jwt_payload_interface_jwtpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "bonds_bonds_controller_bondscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "bonds_bonds_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "bonds_bonds_service_bondsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "dto_bonds_envelope_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "dto_bonds_envelope_dto_bondenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "dto_bonds_envelope_dto_bondhistoryenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller", "to": "dto_bonds_envelope_dto_bondmarketdataenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_module", "to": "bonds_bonds_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller_bondscontroller", "to": "bonds_bonds_controller_bondscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller_bondscontroller", "to": "bonds_bonds_controller_bondscontroller_getbond", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller_bondscontroller", "to": "bonds_bonds_controller_bondscontroller_gethistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller_bondscontroller", "to": "bonds_bonds_controller_bondscontroller_getmarketdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_module", "to": "bonds_bonds_controller_bondscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_controller_bondscontroller_constructor", "to": "bonds_bonds_service_bondsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_module", "to": "bonds_bonds_module_bondsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_module", "to": "bonds_bonds_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_module", "to": "bonds_bonds_service_bondsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_spec", "to": "bonds_bonds_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_spec", "to": "bonds_bonds_service_bondsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service", "to": "bonds_bonds_service_bondsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_bondsservice", "to": "bonds_bonds_service_bondsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_bondsservice", "to": "bonds_bonds_service_bondsservice_getbond", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_bondsservice", "to": "bonds_bonds_service_bondsservice_gethistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_bondsservice", "to": "bonds_bonds_service_bondsservice_getmarketdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_bondsservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bonds_bonds_service_bondsservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bond_response_dto", "to": "dto_bond_response_dto_bondmarketdatadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bond_response_dto", "to": "dto_bond_response_dto_bondresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_bond_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_bond_response_dto_bondmarketdatadto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto_bondmarketdataenvelopedto", "to": "dto_bond_response_dto_bondmarketdatadto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_bond_response_dto_bondresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto_bondenvelopedto", "to": "dto_bond_response_dto_bondresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_bonds_envelope_dto_bondenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_bonds_envelope_dto_bondhistoryenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_bonds_envelope_dto_bondmarketdataenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto", "to": "dto_history_item_dto_bondhistoryitemdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_bonds_envelope_dto_bondhistoryenvelopedto", "to": "dto_history_item_dto_bondhistoryitemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_modules_bonds_dto_history_item_dto_ts_dto_history_item_dto", "to": "dto_history_item_dto_bondhistoryitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_module", "to": "cache_cache_module_cachemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_module", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_module", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "cache_cache_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "cache_cache_module_cachemodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service", "to": "cache_cache_service_cacheservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_spec", "to": "cache_cache_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice", "to": "cache_cache_service_cacheservice_buildkey", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice", "to": "cache_cache_service_cacheservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice", "to": "cache_cache_service_cacheservice_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice", "to": "cache_cache_service_cacheservice_getorfetch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice", "to": "cache_cache_service_cacheservice_set", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_securitiesservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice_constructor", "to": "cache_cache_service_cacheservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_spec", "to": "cache_cache_service_cacheservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice_getorfetch", "to": "cache_cache_service_cacheservice_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cache_cache_service_cacheservice_getorfetch", "to": "cache_cache_service_cacheservice_buildkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "candles_candles_controller_candlescontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "candles_candles_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "candles_candles_service_candlesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "dto_candles_envelope_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "dto_candles_envelope_dto_candleenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "dto_candles_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller", "to": "dto_candles_query_dto_candlesquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_module", "to": "candles_candles_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller_candlescontroller", "to": "candles_candles_controller_candlescontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller_candlescontroller", "to": "candles_candles_controller_candlescontroller_getbondcandles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller_candlescontroller", "to": "candles_candles_controller_candlescontroller_getsharecandles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_module", "to": "candles_candles_controller_candlescontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller_candlescontroller_constructor", "to": "candles_candles_service_candlesservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller_candlescontroller_getsharecandles", "to": "dto_candles_query_dto_candlesquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_controller_candlescontroller_getbondcandles", "to": "dto_candles_query_dto_candlesquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_module", "to": "candles_candles_module_candlesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_module", "to": "candles_candles_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_module", "to": "candles_candles_service_candlesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "candles_candles_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "candles_candles_service_candlesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "dto_candles_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "dto_candles_query_dto_candleinterval", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "candles_candles_service_candlesservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "dto_candles_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "dto_candles_query_dto_candleinterval", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice", "to": "candles_candles_service_candlesservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice", "to": "candles_candles_service_candlesservice_getcandles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice", "to": "candles_candles_service_candlesservice_mapinterval", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice_getcandles", "to": "candles_candles_service_candlesservice_mapinterval", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice_mapinterval", "to": "dto_candles_query_dto_candleinterval", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "candles_candles_service_candlesservice_getcandles", "to": "dto_candles_query_dto_candleinterval", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candle_item_dto", "to": "dto_candle_item_dto_candleitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto", "to": "dto_candle_item_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto", "to": "dto_candle_item_dto_candleitemdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto_candleenvelopedto", "to": "dto_candle_item_dto_candleitemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_envelope_dto", "to": "dto_candles_envelope_dto_candleenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_query_dto", "to": "dto_candles_query_dto_candleinterval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_candles_query_dto", "to": "dto_candles_query_dto_candlesquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto", "to": "dto_health_envelope_dto_healthenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto", "to": "dto_health_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto", "to": "dto_health_response_dto_healthresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "dto_health_envelope_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_envelope_dto_healthenvelopedto", "to": "dto_health_response_dto_healthresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "dto_health_envelope_dto_healthenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_health_response_dto", "to": "dto_health_response_dto_healthresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller", "to": "health_health_controller_healthcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_module", "to": "health_health_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_controller_healthcontroller", "to": "health_health_controller_healthcontroller_check", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_module", "to": "health_health_controller_healthcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "health_health_module", "to": "health_health_module_healthmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_module", "to": "moex_client_moex_client_module_moexclientmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_module", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_module", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "moex_client_moex_client_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "moex_client_moex_client_module_moexclientmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_integration_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_integration_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexbonddata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexbondhistoryentry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexbondmarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexbondpositiondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexcandle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexdividend", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexhistoryentry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexsecuritydescription", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_spec", "to": "moex_client_moex_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getbonddata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getbondhistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getbondmarketdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getbondpositiondatabatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getcandles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getdividends", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_gethistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getsecuritydescription", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getsharemarketdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_getsharemarketdatabatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice", "to": "moex_client_moex_client_service_moexclientservice_searchsecurities", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_securitiesservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice_constructor", "to": "moex_client_moex_client_service_moexclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_spec", "to": "moex_client_moex_client_service_moexclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbonddata", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbondhistory", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbondmarketdata", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbondpositiondatabatch", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getcandles", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getdividends", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_gethistory", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getsecuritydescription", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getsharemarketdata", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getsharemarketdatabatch", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_searchsecurities", "to": "moex_client_moex_client_service_moexclientservice_extracttable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_searchsecurities", "to": "moex_client_moex_client_types_moexsecuritydescription", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getsecuritydescription", "to": "moex_client_moex_client_types_moexsecuritydescription", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getsharemarketdata", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getsharemarketdatabatch", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbondpositiondatabatch", "to": "moex_client_moex_client_types_moexbondpositiondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbonddata", "to": "moex_client_moex_client_types_moexbonddata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbondmarketdata", "to": "moex_client_moex_client_types_moexbondmarketdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getdividends", "to": "moex_client_moex_client_types_moexdividend", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getcandles", "to": "moex_client_moex_client_types_moexcandle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_gethistory", "to": "moex_client_moex_client_types_moexhistoryentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_service_moexclientservice_getbondhistory", "to": "moex_client_moex_client_types_moexbondhistoryentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexbonddata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexbondhistoryentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexbondmarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexbondpositiondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexcandle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexdividend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexhistoryentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexsecuritydescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_client_moex_client_types", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "moex_client_moex_client_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_buildshareposition", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_fetchsharebatch", "to": "moex_client_moex_client_types_moexsharemarketdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "moex_client_moex_client_types_moexbondpositiondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_buildbondposition", "to": "moex_client_moex_client_types_moexbondpositiondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_fetchbondbatch", "to": "moex_client_moex_client_types_moexbondpositiondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_add_position_dto", "to": "dto_add_position_dto_addpositiondto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_add_position_dto", "to": "dto_add_position_dto_tags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_add_position_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_add_position_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_add_position_dto_addpositiondto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller_addposition", "to": "dto_add_position_dto_addpositiondto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_add_position_dto_addpositiondto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_addposition", "to": "dto_add_position_dto_addpositiondto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_analytics_response_dto", "to": "dto_analytics_response_dto_analyticsresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_analytics_response_dto", "to": "dto_analytics_response_dto_portfoliosummarydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_analytics_response_dto", "to": "dto_position_with_price_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_analytics_response_dto", "to": "dto_position_with_price_dto_positionwithpricedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_analytics_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto", "to": "dto_analytics_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_analytics_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto", "to": "dto_analytics_response_dto_portfoliosummarydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto_portfoliodetailresponsedto", "to": "dto_analytics_response_dto_portfoliosummarydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_analytics_response_dto_analyticsresponsedto", "to": "dto_position_with_price_dto_positionwithpricedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_analytics_response_dto_analyticsresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto_analyticsenvelopedto", "to": "dto_analytics_response_dto_analyticsresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_analytics_response_dto_analyticsresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_getanalytics", "to": "dto_analytics_response_dto_analyticsresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_create_portfolio_dto", "to": "dto_create_portfolio_dto_createportfoliodto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_create_portfolio_dto", "to": "dto_create_portfolio_dto_currencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_create_portfolio_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_create_portfolio_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_create_portfolio_dto_createportfoliodto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller_create", "to": "dto_create_portfolio_dto_createportfoliodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_create_portfolio_dto_createportfoliodto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_create", "to": "dto_create_portfolio_dto_createportfoliodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_envelope_dto_analyticsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_envelope_dto_portfoliodetailenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_envelope_dto_portfolioenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_envelope_dto_portfoliolistenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_envelope_dto_portfolioresponsemetadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_envelope_dto_positionenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_list_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_list_response_dto_portfoliolistresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_response_dto_portfoliodetailresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_portfolio_response_dto_portfolioresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_position_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto", "to": "dto_position_response_dto_positionresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto_portfolioresponsemetadto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto_portfoliolistenvelopedto", "to": "dto_portfolio_list_response_dto_portfoliolistresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto_portfoliolistenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto_portfolioenvelopedto", "to": "dto_portfolio_response_dto_portfolioresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto_portfolioenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto_portfoliodetailenvelopedto", "to": "dto_portfolio_response_dto_portfoliodetailresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto_portfoliodetailenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_envelope_dto_positionenvelopedto", "to": "dto_position_response_dto_positionresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto_positionenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_portfolio_envelope_dto_analyticsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_list_response_dto", "to": "dto_portfolio_list_response_dto_portfoliolistresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_list_response_dto", "to": "dto_portfolio_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_list_response_dto", "to": "dto_portfolio_response_dto_portfolioresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_list_response_dto_portfoliolistresponsedto", "to": "dto_portfolio_response_dto_portfolioresponsedto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto", "to": "dto_portfolio_response_dto_portfoliodetailresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto", "to": "dto_portfolio_response_dto_portfolioresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto", "to": "dto_position_with_price_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto", "to": "dto_position_with_price_dto_positionwithpricedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto_portfoliodetailresponsedto", "to": "dto_portfolio_response_dto_portfolioresponsedto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_portfolio_response_dto_portfoliodetailresponsedto", "to": "dto_position_with_price_dto_positionwithpricedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_position_response_dto", "to": "dto_position_response_dto_positionresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_position_with_price_dto", "to": "dto_position_with_price_dto_positionwithpricedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_update_portfolio_dto", "to": "dto_update_portfolio_dto_currencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_update_portfolio_dto", "to": "dto_update_portfolio_dto_updateportfoliodto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_update_portfolio_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_update_portfolio_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_update_portfolio_dto_updateportfoliodto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller_update", "to": "dto_update_portfolio_dto_updateportfoliodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_update_portfolio_dto_updateportfoliodto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_update", "to": "dto_update_portfolio_dto_updateportfoliodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_update_position_dto", "to": "dto_update_position_dto_tags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_update_position_dto", "to": "dto_update_position_dto_updatepositiondto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_update_position_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_update_position_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "dto_update_position_dto_updatepositiondto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller_updateposition", "to": "dto_update_position_dto_updatepositiondto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "dto_update_position_dto_updatepositiondto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_updateposition", "to": "dto_update_position_dto_updatepositiondto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "portfolio_portfolio_controller_nulldataenvelopeschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "portfolio_portfolio_controller_portfoliocontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "portfolio_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller", "to": "portfolio_portfolio_service_portfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_module", "to": "portfolio_portfolio_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_addposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_getanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_removeposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller", "to": "portfolio_portfolio_controller_portfoliocontroller_updateposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_module", "to": "portfolio_portfolio_controller_portfoliocontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_controller_portfoliocontroller_constructor", "to": "portfolio_portfolio_service_portfolioservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_module", "to": "portfolio_portfolio_module_portfoliomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_module", "to": "portfolio_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_module", "to": "portfolio_portfolio_service_portfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "portfolio_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "portfolio_portfolio_service_portfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_spec", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "portfolio_portfolio_service_enrichedposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "portfolio_portfolio_service_portfolioservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_addposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_buildbondposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_buildshareposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_enrichpositions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_fetchbondbatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_fetchsharebatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_getanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_getpositionswithprices", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_removeposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice", "to": "portfolio_portfolio_service_portfolioservice_updateposition", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_constructor", "to": "prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_addposition", "to": "portfolio_portfolio_service_portfolioservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_findall", "to": "portfolio_portfolio_service_portfolioservice_enrichpositions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_findone", "to": "portfolio_portfolio_service_portfolioservice_enrichpositions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_findone", "to": "portfolio_portfolio_service_portfolioservice_getanalytics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_updateposition", "to": "portfolio_portfolio_service_portfolioservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_enrichpositions", "to": "portfolio_portfolio_service_portfolioservice_buildbondposition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_enrichpositions", "to": "portfolio_portfolio_service_portfolioservice_buildshareposition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_enrichpositions", "to": "portfolio_portfolio_service_portfolioservice_fetchbondbatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_enrichpositions", "to": "portfolio_portfolio_service_portfolioservice_fetchsharebatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_getpositionswithprices", "to": "portfolio_portfolio_service_portfolioservice_enrichpositions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_portfolio_service_portfolioservice_getanalytics", "to": "portfolio_portfolio_service_portfolioservice_getpositionswithprices", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_module", "to": "prisma_prisma_module_prismamodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_module", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_module", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_service", "to": "prisma_prisma_service_prismaservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_spec", "to": "prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_service_prismaservice", "to": "prisma_prisma_service_prismaservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_service_prismaservice", "to": "prisma_prisma_service_prismaservice_onmoduledestroy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma_service_prismaservice", "to": "prisma_prisma_service_prismaservice_onmoduleinit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice_constructor", "to": "prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice_constructor", "to": "prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_spec", "to": "prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_query_dto", "to": "dto_screener_query_dto_screenerquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_query_dto", "to": "dto_screener_query_dto_screenertype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_query_dto", "to": "dto_screener_query_dto_sorter_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "dto_screener_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "dto_screener_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_screener_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "dto_screener_query_dto_screenertype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_fetchboard", "to": "dto_screener_query_dto_screenertype", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "dto_screener_query_dto_screenertype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "dto_screener_query_dto_screenerquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_matches", "to": "dto_screener_query_dto_screenerquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_screen", "to": "dto_screener_query_dto_screenerquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_screener_query_dto_screenerquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller_screener", "to": "dto_screener_query_dto_screenerquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_response_dto", "to": "dto_screener_response_dto_screeneritemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_response_dto", "to": "dto_screener_response_dto_screenerresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_response_dto", "to": "dto_screener_response_dto_screenerresponsemetadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_screener_response_dto", "to": "dto_screener_response_dto_screenerresultdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "dto_screener_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_screener_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "dto_screener_response_dto_screeneritemdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_fetchboard", "to": "dto_screener_response_dto_screeneritemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_matches", "to": "dto_screener_response_dto_screeneritemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_sort", "to": "dto_screener_response_dto_screeneritemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "dto_screener_response_dto_screenerresultdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_screen", "to": "dto_screener_response_dto_screenerresultdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_screener_response_dto_screenerresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_query_dto", "to": "dto_search_query_dto_searchquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_query_dto", "to": "dto_search_query_dto_securitytype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_search_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "dto_search_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "dto_search_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "dto_search_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_search_query_dto_securitytype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "dto_search_query_dto_securitytype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "dto_search_query_dto_securitytype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_securitiesservice_search", "to": "dto_search_query_dto_securitytype", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "dto_search_query_dto_securitytype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_search_query_dto_searchquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller_search", "to": "dto_search_query_dto_searchquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_response_dto", "to": "dto_search_response_dto_searchenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_search_response_dto", "to": "dto_search_response_dto_searchresultitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_search_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "dto_search_response_dto_searchenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "securities_screener_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_spec", "to": "securities_screener_service_screenerservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service", "to": "securities_screener_service_screenerservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "securities_screener_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "securities_screener_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_screener_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice", "to": "securities_screener_service_screenerservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice", "to": "securities_screener_service_screenerservice_fetchboard", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice", "to": "securities_screener_service_screenerservice_matches", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice", "to": "securities_screener_service_screenerservice_screen", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice", "to": "securities_screener_service_screenerservice_sort", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "securities_screener_service_screenerservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller_constructor", "to": "securities_screener_service_screenerservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "securities_screener_service_screenerservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_screener_service_screenerservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_screen", "to": "securities_screener_service_screenerservice_fetchboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_screener_service_screenerservice_screen", "to": "securities_screener_service_screenerservice_sort", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "securities_securities_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "securities_securities_controller_securitiescontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "securities_securities_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_spec", "to": "securities_securities_service_securitiesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "securities_securities_controller_securitiescontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "securities_securities_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller", "to": "securities_securities_service_securitiesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_securities_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller", "to": "securities_securities_controller_securitiescontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller", "to": "securities_securities_controller_securitiescontroller_screener", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller", "to": "securities_securities_controller_securitiescontroller_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_securities_controller_securitiescontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_controller_securitiescontroller_constructor", "to": "securities_securities_service_securitiesservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_securities_module_securitiesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_securities_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_module", "to": "securities_securities_service_securitiesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "securities_securities_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_spec", "to": "securities_securities_service_securitiesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "securities_securities_service_searchresultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service", "to": "securities_securities_service_securitiesservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_securitiesservice", "to": "securities_securities_service_securitiesservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_securitiesservice", "to": "securities_securities_service_securitiesservice_getsharebrief", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "securities_securities_service_securitiesservice", "to": "securities_securities_service_securitiesservice_search", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_dividend_item_dto", "to": "dto_dividend_item_dto_dividenditemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_dividend_item_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_dividend_item_dto_dividenditemdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_dividendsenvelopedto", "to": "dto_dividend_item_dto_dividenditemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_backend_src_modules_shares_dto_history_item_dto_ts_dto_history_item_dto", "to": "dto_history_item_dto_historyitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_history_item_dto_historyitemdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_sharehistoryenvelopedto", "to": "dto_history_item_dto_historyitemdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_share_marketdata_response_dto", "to": "dto_share_marketdata_response_dto_sharemarketdataresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_share_marketdata_response_dto", "to": "dto_share_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_share_marketdata_response_dto", "to": "dto_share_response_dto_stockmarketdatadto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_share_marketdata_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_share_marketdata_response_dto_sharemarketdataresponsedto", "to": "dto_share_response_dto_stockmarketdatadto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_share_marketdata_response_dto_sharemarketdataresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_sharemarketdataenvelopedto", "to": "dto_share_marketdata_response_dto_sharemarketdataresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_share_response_dto", "to": "dto_share_response_dto_shareresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_share_response_dto", "to": "dto_share_response_dto_stockmarketdatadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_share_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_share_response_dto_shareresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto_shareenvelopedto", "to": "dto_share_response_dto_shareresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_shares_envelope_dto_dividendsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_shares_envelope_dto_shareenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_shares_envelope_dto_sharehistoryenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_shares_envelope_dto", "to": "dto_shares_envelope_dto_sharemarketdataenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_shares_envelope_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_shares_envelope_dto_shareenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_shares_envelope_dto_sharemarketdataenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_shares_envelope_dto_dividendsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "dto_shares_envelope_dto_sharehistoryenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "shares_shares_controller_sharescontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "shares_shares_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller", "to": "shares_shares_service_sharesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_module", "to": "shares_shares_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller_sharescontroller", "to": "shares_shares_controller_sharescontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller_sharescontroller", "to": "shares_shares_controller_sharescontroller_getdividends", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller_sharescontroller", "to": "shares_shares_controller_sharescontroller_gethistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller_sharescontroller", "to": "shares_shares_controller_sharescontroller_getmarketdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller_sharescontroller", "to": "shares_shares_controller_sharescontroller_getshare", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_module", "to": "shares_shares_controller_sharescontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_controller_sharescontroller_constructor", "to": "shares_shares_service_sharesservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_module", "to": "shares_shares_module_sharesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_module", "to": "shares_shares_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_module", "to": "shares_shares_service_sharesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_spec", "to": "shares_shares_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_spec", "to": "shares_shares_service_sharesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service", "to": "shares_shares_service_sharesservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice", "to": "shares_shares_service_sharesservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice", "to": "shares_shares_service_sharesservice_getdividends", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice", "to": "shares_shares_service_sharesservice_gethistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice", "to": "shares_shares_service_sharesservice_getmarketdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shares_shares_service_sharesservice", "to": "shares_shares_service_sharesservice_getshare", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_account_response_dto", "to": "dto_broker_account_response_dto_brokeraccountresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_account_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_account_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_account_response_dto_brokeraccountresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokeraccountsenvelopedto", "to": "dto_broker_account_response_dto_brokeraccountresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_account_response_dto_brokeraccountresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto_brokerportfolioresponsedto", "to": "dto_broker_account_response_dto_brokeraccountresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_analytics_response_dto", "to": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_analytics_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "dto_broker_analytics_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokeranalyticsenvelopedto", "to": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice_computeanalytics", "to": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice_getanalytics", "to": "dto_broker_analytics_response_dto_brokeranalyticsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokeraccountsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokeranalyticsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokereventsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokeroperationsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokeroperationsyncenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokerportfolioenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokerpositionsenvelopedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_envelope_dto_brokerresponsemetadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_events_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_events_response_dto_brokereventsdatadto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_operation_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_operation_response_dto_brokeroperationspageresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_operation_sync_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_operation_sync_query_dto_brokeroperationsyncresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_portfolio_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_portfolio_response_dto_brokerportfolioresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_positions_page_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto", "to": "dto_broker_positions_page_response_dto_brokerpositionspageresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokeraccountsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokerportfolioenvelopedto", "to": "dto_broker_portfolio_response_dto_brokerportfolioresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokerportfolioenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokeroperationsenvelopedto", "to": "dto_broker_operation_response_dto_brokeroperationspageresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokeroperationsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokerpositionsenvelopedto", "to": "dto_broker_positions_page_response_dto_brokerpositionspageresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokerpositionsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokeroperationsyncenvelopedto", "to": "dto_broker_operation_sync_query_dto_brokeroperationsyncresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokeroperationsyncenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokeranalyticsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_envelope_dto_brokereventsenvelopedto", "to": "dto_broker_events_response_dto_brokereventsdatadto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_envelope_dto_brokereventsenvelopedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_query_dto", "to": "dto_broker_events_query_dto_brokereventsquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_events_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_events_query_dto_brokereventsquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_getevents", "to": "dto_broker_events_query_dto_brokereventsquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_brokereventitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_brokereventsdatadto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_brokereventssummarydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_eventcategories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_eventsources", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_eventtypes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_events_response_dto", "to": "dto_broker_events_response_dto_instrumenttypes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_money_dto", "to": "dto_broker_money_dto_brokermoneydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_response_dto", "to": "dto_broker_money_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_money_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_position_response_dto", "to": "dto_broker_money_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_response_dto", "to": "dto_broker_money_dto_brokermoneydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_response_dto_brokeroperationresponsedto", "to": "dto_broker_money_dto_brokermoneydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_money_dto_brokermoneydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto_brokerportfolioresponsedto", "to": "dto_broker_money_dto_brokermoneydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto_brokerportfoliototalsdto", "to": "dto_broker_money_dto_brokermoneydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto_brokerportfolioyieldsdto", "to": "dto_broker_money_dto_brokermoneydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_position_response_dto", "to": "dto_broker_money_dto_brokermoneydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_position_response_dto_brokerpositionresponsedto", "to": "dto_broker_money_dto_brokermoneydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_query_dto", "to": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "dto_broker_operation_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_operation_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_buildrequest", "to": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_getoperations", "to": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_getoperations", "to": "dto_broker_operation_query_dto_brokeroperationquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_response_dto", "to": "dto_broker_operation_response_dto_brokeroperationresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_response_dto", "to": "dto_broker_operation_response_dto_brokeroperationspageresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_response_dto", "to": "dto_broker_operation_response_dto_operationcategories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_sync_query_dto", "to": "dto_broker_operation_sync_query_dto_brokeroperationsyncquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_operation_sync_query_dto", "to": "dto_broker_operation_sync_query_dto_brokeroperationsyncresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_operation_sync_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_operation_sync_query_dto_brokeroperationsyncquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_syncoperations", "to": "dto_broker_operation_sync_query_dto_brokeroperationsyncquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_portfolio_response_dto_brokerportfoliopositioncountsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_portfolio_response_dto_brokerportfolioresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_portfolio_response_dto_brokerportfoliototalsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_portfolio_response_dto", "to": "dto_broker_portfolio_response_dto_brokerportfolioyieldsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_position_query_dto", "to": "dto_broker_position_query_dto_brokerpositionquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_position_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "dto_broker_position_query_dto_brokerpositionquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_getpositions", "to": "dto_broker_position_query_dto_brokerpositionquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_position_response_dto", "to": "dto_broker_position_response_dto_brokerpositionresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_positions_page_response_dto", "to": "dto_broker_position_response_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_positions_page_response_dto", "to": "dto_broker_position_response_dto_brokerpositionresponsedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_positions_page_response_dto_brokerpositionspageresponsedto", "to": "dto_broker_position_response_dto_brokerpositionresponsedto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dto_broker_positions_page_response_dto", "to": "dto_broker_positions_page_response_dto_brokerpositionspageresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper_spec", "to": "mappers_account_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper_spec", "to": "mappers_account_mapper_issupportedbrokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper_spec", "to": "mappers_account_mapper_mapaccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper_spec", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper_spec", "to": "types_tbank_proto_types_tbankaccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "mappers_account_mapper_issupportedbrokeraccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "mappers_account_mapper_mapaccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "mappers_money_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "mappers_money_mapper_maptimestamptoiso", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "tbank_tbank_config_tbank_account_types", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "types_broker_types_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper", "to": "types_tbank_proto_types_tbankaccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "mappers_account_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "mappers_account_mapper_issupportedbrokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_account_mapper_mapaccount", "to": "mappers_money_mapper_maptimestamptoiso", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "mappers_account_mapper_mapaccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper_spec", "to": "mappers_money_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper_spec", "to": "mappers_money_mapper_mapmoneyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper_spec", "to": "mappers_money_mapper_mapquotationtonumber", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper_spec", "to": "mappers_money_mapper_maptimestamptoiso", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "mappers_money_mapper_mapinteger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "mappers_money_mapper_mapmoneyvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "mappers_money_mapper_mapquotationtonumber", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "mappers_money_mapper_maptimestamptoiso", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "types_broker_types_brokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "types_tbank_proto_types_tbankmoneyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "types_tbank_proto_types_tbankquotation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_money_mapper", "to": "types_tbank_proto_types_tbanktimestamp", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_money_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_money_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "mappers_money_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_money_mapper_mapmoneyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_mapoperation", "to": "mappers_money_mapper_mapmoneyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_money_mapper_mapmoneyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_mapbrokerportfolio", "to": "mappers_money_mapper_mapmoneyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_mapbrokerposition", "to": "mappers_money_mapper_mapmoneyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_money_mapper_mapquotationtonumber", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_mapbrokerportfolio", "to": "mappers_money_mapper_mapquotationtonumber", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_mapbrokerposition", "to": "mappers_money_mapper_mapquotationtonumber", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "mappers_money_mapper_mapquotationtonumber", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildbondevents", "to": "mappers_money_mapper_mapquotationtonumber", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildshareevents", "to": "mappers_money_mapper_mapquotationtonumber", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_money_mapper_maptimestamptoiso", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_mapoperation", "to": "mappers_money_mapper_maptimestamptoiso", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_money_mapper_mapinteger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_mapoperation", "to": "mappers_money_mapper_mapinteger", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_spec", "to": "mappers_operation_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_spec", "to": "mappers_operation_mapper_categorizeoperationtype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_spec", "to": "mappers_operation_mapper_mapoperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_spec", "to": "mappers_operation_mapper_mapoperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_categorizeoperationtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_fee_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_income_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_mapoperation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_mapoperationspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_tax_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_trade_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "mappers_operation_mapper_transfer_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_broker_types_brokeroperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_broker_types_brokeroperationcategory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_broker_types_brokeroperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_tbank_proto_types_tbankoperationitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper", "to": "types_tbank_proto_types_tbankoperationsbycursorresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "mappers_operation_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_operation_mapper_mapoperation", "to": "mappers_operation_mapper_categorizeoperationtype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "mappers_operation_mapper_mapoperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_fetchoperations", "to": "mappers_operation_mapper_mapoperationspage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_spec", "to": "mappers_portfolio_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_spec", "to": "mappers_portfolio_mapper_mapbrokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_spec", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper_spec", "to": "types_broker_types_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_portfolio_mapper_isbrokermoney", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_portfolio_mapper_mapbrokerportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_portfolio_mapper_mapbrokerportfolioinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_portfolio_mapper_mapbrokerposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "mappers_portfolio_mapper_mapbrokerpositionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_broker_types_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_broker_types_brokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_broker_types_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_broker_types_brokerposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_broker_types_brokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_tbank_proto_types_tbankinstrument", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_tbank_proto_types_tbankportfolioresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mappers_portfolio_mapper", "to": "types_tbank_proto_types_tbankpositionsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "mappers_portfolio_mapper", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "mappers_portfolio_mapper_mapbrokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "mappers_portfolio_mapper_mapbrokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_spec", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_spec", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_spec", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_spec", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "tbank_tbank_config_tbank_cache_keys", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "types_broker_types_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service", "to": "types_tbank_proto_types_tbankaccountsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_accounts_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice", "to": "services_broker_accounts_service_brokeraccountsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice", "to": "services_broker_accounts_service_brokeraccountsservice_fetchaccounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice", "to": "services_broker_accounts_service_brokeraccountsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice", "to": "services_broker_accounts_service_brokeraccountsservice_findbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice_constructor", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_constructor", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_constructor", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_constructor", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_constructor", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_accounts_service_brokeraccountsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice_constructor", "to": "services_tbank_client_service_tbankclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice_findall", "to": "types_broker_types_brokeraccount", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice_findbyid", "to": "services_broker_accounts_service_brokeraccountsservice_findall", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice_findbyid", "to": "types_broker_types_brokeraccount", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_accounts_service_brokeraccountsservice_fetchaccounts", "to": "types_broker_types_brokeraccount", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "services_broker_analytics_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "services_broker_analytics_service_brokeranalyticsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "services_broker_analytics_service_spec_makeop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_spec", "to": "services_broker_analytics_service_spec_mockcachepassthrough", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_analytics_service_analytics_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_analytics_service_brokeranalyticsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_analytics_service_coupon_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_analytics_service_deposit_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_analytics_service_dividend_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "services_broker_analytics_service_withdrawal_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service", "to": "tbank_tbank_config_tbank_cache_keys", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_analytics_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_analytics_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_analytics_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice", "to": "services_broker_analytics_service_brokeranalyticsservice_computeanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice", "to": "services_broker_analytics_service_brokeranalyticsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_analytics_service_brokeranalyticsservice", "to": "services_broker_analytics_service_brokeranalyticsservice_getanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_analytics_service_brokeranalyticsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_analytics_service_brokeranalyticsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_constructor", "to": "services_broker_analytics_service_brokeranalyticsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_analytics_service_brokeranalyticsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_events_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_events_service_brokereventsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_events_service_spec_mockcachepassthrough", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_spec", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_events_service_actual_operation_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_events_service_all_event_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_events_service_brokereventsquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_events_service_brokereventsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_events_service_brokereventtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_events_service_operation_event_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "tbank_tbank_config_tbank_cache_keys", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_broker_types_brokereventsdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_broker_types_brokereventssummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_broker_types_brokeroperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_broker_types_brokerportfolioevent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service", "to": "types_tbank_proto_types_tbankinstrument", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_events_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_events_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_events_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_actualoperationtypes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_buildactualevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_buildbondevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_buildevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_buildshareevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_buildsummary", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_eventdedupkey", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_getevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_mapactualoperation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_mapinstrumenttype", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice", "to": "services_broker_events_service_brokereventsservice_parseeventtypes", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_events_service_brokereventsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_events_service_brokereventsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_constructor", "to": "services_broker_events_service_brokereventsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_events_service_brokereventsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_constructor", "to": "services_broker_operations_service_brokeroperationsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_constructor", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_getevents", "to": "services_broker_events_service_brokereventsservice_parseeventtypes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_getevents", "to": "types_broker_types_brokereventsdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildevents", "to": "services_broker_events_service_brokereventsservice_buildactualevents", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildevents", "to": "services_broker_events_service_brokereventsservice_buildbondevents", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildevents", "to": "services_broker_events_service_brokereventsservice_buildsummary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildevents", "to": "types_broker_types_brokereventsdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildshareevents", "to": "types_broker_types_brokerportfolioevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildshareevents", "to": "types_tbank_proto_types_tbankinstrument", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildbondevents", "to": "types_broker_types_brokerportfolioevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildbondevents", "to": "types_tbank_proto_types_tbankinstrument", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildsummary", "to": "types_broker_types_brokereventssummary", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildsummary", "to": "types_broker_types_brokerportfolioevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildactualevents", "to": "services_broker_events_service_brokereventsservice_actualoperationtypes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_buildactualevents", "to": "types_broker_types_brokerportfolioevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_mapactualoperation", "to": "services_broker_events_service_brokereventsservice_mapinstrumenttype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_mapactualoperation", "to": "types_broker_types_brokeroperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_mapactualoperation", "to": "types_broker_types_brokerportfolioevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_events_service_brokereventsservice_eventdedupkey", "to": "types_broker_types_brokerportfolioevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "services_broker_instruments_service_brokerinstrumentsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "tbank_tbank_config_tbank_cache_keys", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "types_tbank_proto_types_tbankinstrument", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service", "to": "types_tbank_proto_types_tbankinstrumentresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_broker_instruments_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_instruments_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_instruments_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice", "to": "services_broker_instruments_service_brokerinstrumentsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice", "to": "services_broker_instruments_service_brokerinstrumentsservice_fetchbyuid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice", "to": "services_broker_instruments_service_brokerinstrumentsservice_findbyinstrumentuid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_broker_instruments_service_brokerinstrumentsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_constructor", "to": "services_broker_instruments_service_brokerinstrumentsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_instruments_service_brokerinstrumentsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_instruments_service_brokerinstrumentsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice_constructor", "to": "services_tbank_client_service_tbankclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice_findbyinstrumentuid", "to": "types_tbank_proto_types_tbankinstrument", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_instruments_service_brokerinstrumentsservice_fetchbyuid", "to": "types_tbank_proto_types_tbankinstrument", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_spec", "to": "services_broker_operation_sync_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_spec", "to": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_spec", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_spec", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "services_broker_operation_sync_service_brokeroperationsyncrange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service", "to": "types_broker_types_brokeroperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_operation_sync_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_operation_sync_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_operation_sync_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice", "to": "services_broker_operation_sync_service_brokeroperationsyncservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice", "to": "services_broker_operation_sync_service_brokeroperationsyncservice_syncaccount", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice", "to": "services_broker_operation_sync_service_brokeroperationsyncservice_upsertoperation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_constructor", "to": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_operation_sync_service_brokeroperationsyncservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice_constructor", "to": "services_broker_operations_service_brokeroperationsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice_syncaccount", "to": "services_broker_operation_sync_service_brokeroperationsyncservice_upsertoperation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operation_sync_service_brokeroperationsyncservice_upsertoperation", "to": "types_broker_types_brokeroperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_spec", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "services_broker_operations_service_brokeroperationsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "tbank_tbank_config_tbank_cache_keys", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "types_broker_types_brokeroperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service", "to": "types_tbank_proto_types_tbankoperationsbycursorresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_operations_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice", "to": "services_broker_operations_service_brokeroperationsservice_buildrequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice", "to": "services_broker_operations_service_brokeroperationsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice", "to": "services_broker_operations_service_brokeroperationsservice_fetchoperations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice", "to": "services_broker_operations_service_brokeroperationsservice_getoperations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_constructor", "to": "services_broker_operations_service_brokeroperationsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_operations_service_brokeroperationsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_constructor", "to": "services_tbank_client_service_tbankclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_getoperations", "to": "services_broker_operations_service_brokeroperationsservice_buildrequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_getoperations", "to": "types_broker_types_brokeroperationspage", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_operations_service_brokeroperationsservice_fetchoperations", "to": "types_broker_types_brokeroperationspage", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_portfolio_service_spec_mockaccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_broker_portfolio_service_spec_mockcache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_spec", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "tbank_tbank_config_tbank_cache_keys", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_broker_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_broker_types_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_broker_types_brokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_tbank_proto_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_tbank_proto_types_tbankinstrument", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_tbank_proto_types_tbankportfolioposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_tbank_proto_types_tbankportfolioresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service", "to": "types_tbank_proto_types_tbankpositionsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_portfolio_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_buildinstrumentmap", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_fetchcachedportfolio", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_fetchpositions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_getportfolio", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_getpositions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice", "to": "services_broker_portfolio_service_brokerportfolioservice_getpositionswithinstruments", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller_constructor", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_broker_portfolio_service_brokerportfolioservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_constructor", "to": "services_tbank_client_service_tbankclientservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_getportfolio", "to": "types_broker_types_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_getpositions", "to": "types_broker_types_brokerpositionspage", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_buildinstrumentmap", "to": "types_tbank_proto_types_tbankinstrument", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_buildinstrumentmap", "to": "types_tbank_proto_types_tbankportfolioresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_getpositionswithinstruments", "to": "services_broker_portfolio_service_brokerportfolioservice_buildinstrumentmap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_getpositionswithinstruments", "to": "services_broker_portfolio_service_brokerportfolioservice_fetchcachedportfolio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_getpositionswithinstruments", "to": "types_tbank_proto_types_tbankinstrument", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_getpositionswithinstruments", "to": "types_tbank_proto_types_tbankportfolioposition", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_fetchcachedportfolio", "to": "types_tbank_proto_types_tbankportfolioresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_broker_portfolio_service_brokerportfolioservice_fetchpositions", "to": "types_tbank_proto_types_tbankpositionsresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_spec", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_spec", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service", "to": "services_tbank_client_service_grpcserviceconstructor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service", "to": "services_tbank_client_service_grpcunary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service", "to": "services_tbank_client_service_queuename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service", "to": "services_tbank_client_service_tbankclientservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service", "to": "tbank_tbank_config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service", "to": "tbank_tbank_config_tbank_proto_files", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_tbank_client_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_callunary", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_createchannelcredentials", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_createmetadata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_getserviceclient", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_mapgrpcerror", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_redactmetadata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_resolveprotonamespace", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice", "to": "services_tbank_client_service_tbankclientservice_resolveprotoroot", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "services_tbank_client_service_tbankclientservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice_constructor", "to": "services_tbank_client_service_tbankclientservice_resolveprotoroot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice_getserviceclient", "to": "services_tbank_client_service_tbankclientservice_createchannelcredentials", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_tbank_client_service_tbankclientservice_getserviceclient", "to": "services_tbank_client_service_tbankclientservice_resolveprotonamespace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_config", "to": "tbank_tbank_config_tbank_account_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_config", "to": "tbank_tbank_config_tbank_cache_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_config", "to": "tbank_tbank_config_tbank_proto_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "tbank_tbank_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_spec", "to": "tbank_tbank_controller_tbankcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller", "to": "tbank_tbank_controller_tbankcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "tbank_tbank_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_getaccounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_getanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_getevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_getoperations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_getportfolio", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_getpositions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_controller_tbankcontroller", "to": "tbank_tbank_controller_tbankcontroller_syncoperations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "tbank_tbank_controller_tbankcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_tbank_module", "to": "tbank_tbank_module_tbankmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokeraccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokereventsdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokereventssummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokermoney", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokeroperation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokeroperationcategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokeroperationspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokerportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokerportfolioevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokerposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_broker_types", "to": "types_broker_types_brokerpositionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankaccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankaccountsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankinstrument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankinstrumentresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankmoneyvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankoperationitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankoperationsbycursorresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankoperationtrade", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankportfolioposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankportfolioresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankpositionsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankpositionssecurity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbankquotation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_tbank_proto_types", "to": "types_tbank_proto_types_tbanktimestamp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig", "to": "backend_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig", "to": "backend_tsconfig_extends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig", "to": "backend_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_baseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_emitdecoratormetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_experimentaldecorators", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_outdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions_paths", "to": "backend_tsconfig_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_docusaurus_config", "to": "docs_docusaurus_config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package", "to": "docs_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package", "to": "docs_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package", "to": "docs_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package", "to": "docs_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package", "to": "docs_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package", "to": "docs_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_scripts", "to": "docs_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_scripts", "to": "docs_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_scripts", "to": "docs_package_scripts_serve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_dependencies", "to": "docs_package_dependencies_docusaurus_core", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_dependencies", "to": "docs_package_dependencies_docusaurus_preset_classic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_dependencies", "to": "docs_package_dependencies_docusaurus_theme_mermaid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_dependencies", "to": "docs_package_dependencies_mdx_js_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_dependencies", "to": "docs_package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_dependencies", "to": "docs_package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_devdependencies", "to": "docs_package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_package_devdependencies", "to": "docs_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_sidebars", "to": "docs_sidebars_sidebars", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_browser", "to": "mocks_browser_worker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_browser", "to": "mocks_handlers", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_browser", "to": "mocks_handlers_handlers", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_startapp", "to": "mocks_browser", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_auth", "to": "data_auth_mockauthresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_auth", "to": "data_auth_mockuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_auth", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_auth_mockuser", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_auth_mockuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_auth_mockauthresponse", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_auth_mockauthresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_bonds", "to": "data_bonds_mockbond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_bonds", "to": "data_bonds_mockbondhistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_bonds", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_bonds_mockbond", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_bonds_mockbond", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_bonds_mockbondhistory", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_bonds_mockbondhistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_broker", "to": "data_broker_mockbrokeraccounts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_broker", "to": "data_broker_mockbrokerevents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_broker", "to": "data_broker_mockbrokeroperations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_broker", "to": "data_broker_mockbrokerportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_broker", "to": "data_broker_mockbrokerpositions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_broker", "to": "data_broker_mockeventssummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker_mockbrokeraccounts", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_broker_mockbrokeraccounts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker_mockbrokerportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_broker_mockbrokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker_mockbrokerpositions", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_broker_mockbrokerpositions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker_mockbrokeroperations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_broker_mockbrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker_mockbrokerevents", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_broker_mockbrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_broker_mockeventssummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_broker_mockeventssummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_candles", "to": "data_candles_mockcandles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_candles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_candles_mockcandles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_candles_mockcandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_portfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_portfolios_mockanalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_portfolios_mockportfoliodetail", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_portfolios_mockportfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_portfolios_mockpositions", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_screener", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_screener_mockscreeneritems", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_search", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_search_mocksearchresults", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_shares", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_shares_mockdividends", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_shares_mockshare", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_index", "to": "data_shares_mocksharehistory", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_portfolios", "to": "data_portfolios_mockanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_portfolios", "to": "data_portfolios_mockportfoliodetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_portfolios", "to": "data_portfolios_mockportfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_portfolios", "to": "data_portfolios_mockpositions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_portfolios_mockportfolios", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_portfolios_mockpositions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_portfolios_mockportfoliodetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_portfolios_mockanalytics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_screener", "to": "data_screener_mockscreeneritems", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_screener_mockscreeneritems", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_search", "to": "data_search_mocksearchresults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_search_mocksearchresults", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_shares", "to": "data_shares_mockdividends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_shares", "to": "data_shares_mockshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "data_shares", "to": "data_shares_mocksharehistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_shares_mockshare", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_shares_mockdividends", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "data_shares_mocksharehistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "mocks_handlers_handlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "mocks_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_handlers", "to": "mocks_utils_envelope", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_server", "to": "mocks_handlers", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_server", "to": "mocks_handlers_handlers", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_shared_lib_test_setup_ts_test_setup", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_server", "to": "mocks_server_server", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_profilepage_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar_test", "to": "mocks_server", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_shared_lib_test_setup_ts_test_setup", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_profilepage_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar_test", "to": "mocks_server_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mocks_utils", "to": "mocks_utils_envelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_overrides", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package", "to": "frontend_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_codegen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_format", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_format_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_lint_fix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_preview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_test_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_scripts", "to": "frontend_package_scripts_typecheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_clsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_dayjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_emotion_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_emotion_styled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_fontsource_inter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_hookform_resolvers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_ky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_lightweight_charts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_moex_vibe_design_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_mui_icons_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_mui_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_openapi_fetch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_react_hook_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_react_is", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_tanstack_react_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_tanstack_react_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_tanstack_react_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_zod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_dependencies", "to": "frontend_package_dependencies_zustand", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_biomejs_biome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_conarti_eslint_plugin_feature_sliced", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_eslint_import_resolver_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_eslint_plugin_import", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_jsdom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_msw", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_openapi_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_tanstack_router_devtools", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_testing_library_jest_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_testing_library_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_testing_library_user_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_types_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_typescript_eslint_parser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_vitejs_plugin_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_devdependencies", "to": "frontend_package_devdependencies_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_package_overrides", "to": "frontend_package_overrides_react_is", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_activeclientids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_getresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_handlerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_is_mocked_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_resolvemainclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_respondwithmock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_sendtoclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker", "to": "public_mockserviceworker_serializerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_handlerequest", "to": "public_mockserviceworker_getresponse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_handlerequest", "to": "public_mockserviceworker_resolvemainclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_handlerequest", "to": "public_mockserviceworker_sendtoclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_handlerequest", "to": "public_mockserviceworker_serializerequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_getresponse", "to": "public_mockserviceworker_respondwithmock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_getresponse", "to": "public_mockserviceworker_sendtoclient", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "public_mockserviceworker_getresponse", "to": "public_mockserviceworker_serializerequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_app", "to": "app_app_app", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_app", "to": "routing_router", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_app", "to": "routing_routetree_router", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_index", "to": "app_app", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_main_tsx_src_main", "to": "app_app", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_main_tsx_src_main", "to": "app_app_app", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_applayout", "to": "layouts_applayout_applayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_applayout", "to": "model_usesession_usesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_applayout", "to": "search_bar_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_applayout", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_applayout", "to": "ui_searchbar_searchbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_index", "to": "layouts_applayout", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "layouts_applayout", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_applayout_applayout", "to": "model_usesession_usesession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layouts_index", "to": "layouts_applayout_applayout", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "layouts_applayout_applayout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_main_tsx_src_main", "to": "providers_appproviders", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_appproviders", "to": "providers_appproviders_appproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_appproviders", "to": "providers_appproviders_queryclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_appproviders", "to": "providers_sessionprovider", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_appproviders", "to": "providers_sessionprovider_sessionprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_index", "to": "providers_appproviders", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_main_tsx_src_main", "to": "providers_appproviders_appproviders", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_index", "to": "providers_appproviders_appproviders", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "lib_session_context_sessioncontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "providers_sessionprovider", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "providers_sessionprovider_sessionprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "providers_sessionprovider_test_renderwithproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "providers_sessionprovider_test_testconsumer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider_test", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_index", "to": "providers_sessionprovider", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_index_userresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_kyclient_configurekyauth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_tokenmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_tokenmanager_getaccesstoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_tokenmanager_handleunauthorized", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "api_tokenmanager_setonunauthorized", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "lib_session_context_sessioncontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "lib_session_context_sessioncontextvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "model_usesessionstore_usesessionstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "providers_sessionprovider_sessionprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_sessionprovider", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "providers_index", "to": "providers_sessionprovider_sessionprovider", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_index", "to": "routing_routetree", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_index", "to": "routing_routetree_router", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_router", "to": "routing_routetree", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "broker_account_layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "broker_accounts_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "broker_events_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "broker_operations_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "broker_positions_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "home_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "login_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "model_usesessionstore_usesessionstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "portfolios_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "profile_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "register_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_bondroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokeraccountindexroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokeraccountroot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokeranalyticsroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokerbondsroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokereventsroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokeroperationsroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokerroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_brokersharesroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_indexroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_loginroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_portfoliodetailroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_portfoliosroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_profileroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_registerroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_requireauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_rootroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_routetree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_screenerroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "routing_routetree_stockroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_bondpage_bondpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokeraccountlayout_brokeraccountlayout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokeraccountoverviewpage_brokeraccountoverviewpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokeraccountspage_brokeraccountspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokeranalyticspage_brokeranalyticspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokereventspage_brokereventspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokeroperationspage_brokeroperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_brokerpositionspage_brokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_homepage_homepage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_loginpage_loginpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_portfoliodetailpage_portfoliodetailpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_portfolioslistpage_portfolioslistpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_profilepage_profilepage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_registerpage_registerpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_screenerpage_screenerpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_routetree", "to": "ui_stockpage_stockpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "routing_router", "to": "routing_routetree_router", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_bondapi_getbond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_bondapi_getbondcandles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_bondapi_getbondhistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_bondapi_getbondmarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_index_bondhistoryitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_index_bondmarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_index_bondresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_index_candleitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "api_bondapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond", "to": "api_bondapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles", "to": "api_bondapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi_getbond", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "api_bondapi_getbond", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond", "to": "api_bondapi_getbond", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi_getbondmarketdata", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "api_bondapi_getbondmarketdata", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi_getbondhistory", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "api_bondapi_getbondhistory", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_bondapi_getbondcandles", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "api_bondapi_getbondcandles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles", "to": "api_bondapi_getbondcandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "model_usebond", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "model_usebond_usebond", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "model_usebondcandles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_bond_index_ts_bond_index", "to": "model_usebondcandles_usebondcandles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond_test", "to": "model_usebond", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond_test", "to": "model_usebond_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond_test", "to": "model_usebond_usebond", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond", "to": "api_index_bondresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebond", "to": "model_usebond_usebond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "model_usebond_usebond", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage_bondpage", "to": "model_usebond_usebond", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles_test", "to": "model_usebondcandles", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles_test", "to": "model_usebondcandles_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles_test", "to": "model_usebondcandles_usebondcandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles", "to": "api_index_candleitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebondcandles", "to": "model_usebondcandles_usebondcandles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "model_usebondcandles_usebondcandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage_bondpage", "to": "model_usebondcandles_usebondcandles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_brokeraccountapi_brokeroperationquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_brokeraccountapi_getbrokeraccounts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_brokeraccountapi_getbrokerportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_index_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "api_brokeraccountapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccountportfolios", "to": "api_brokeraccountapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccounts", "to": "api_brokeraccountapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerportfolio", "to": "api_brokeraccountapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "api_brokeraccountapi_brokeroperationquery", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi_getbrokeraccounts", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "api_brokeraccountapi_getbrokeraccounts", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccounts", "to": "api_brokeraccountapi_getbrokeraccounts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeraccountapi_getbrokerportfolio", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "api_brokeraccountapi_getbrokerportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccountportfolios", "to": "api_brokeraccountapi_getbrokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerportfolio", "to": "api_brokeraccountapi_getbrokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_brokeraccountsoverview", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_brokeraccountsoverview_aggregatebrokeraccounts", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_brokeraccountsoverview_brokeraccountsaggregate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_usebrokeraccountportfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_usebrokeraccountportfolios_usebrokeraccountportfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_usebrokeraccounts", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_usebrokeraccounts_usebrokeraccounts", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_usebrokerportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_account_index_ts_broker_account_index", "to": "model_usebrokerportfolio_usebrokerportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview_test", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview_test", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview_test", "to": "model_brokeraccountsoverview", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview_test", "to": "model_brokeraccountsoverview_aggregatebrokeraccounts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview_test", "to": "model_brokeraccountsoverview_test_portfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "api_index_brokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_aggregatebrokeraccounts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_brokeraccountsaggregate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_brokeraccounttypelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_brokercurrencyallocationsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_brokercurrencycashsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_brokercurrencyportfoliosummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_moneyvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview", "to": "model_brokeraccountsoverview_mutablecurrencysummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "model_brokeraccountsoverview_brokeraccountsaggregate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokeraccountsoverview_aggregatebrokeraccounts", "to": "model_brokeraccountsoverview_moneyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "model_brokeraccountsoverview_aggregatebrokeraccounts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage_brokeraccountspage", "to": "model_brokeraccountsoverview_aggregatebrokeraccounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccountportfolios", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccountportfolios", "to": "api_index_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccountportfolios", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccountportfolios", "to": "model_usebrokeraccountportfolios_usebrokeraccountportfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "model_usebrokeraccountportfolios_usebrokeraccountportfolios", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage_brokeraccountspage", "to": "model_usebrokeraccountportfolios_usebrokeraccountportfolios", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccounts", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccounts", "to": "api_index_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeraccounts", "to": "model_usebrokeraccounts_usebrokeraccounts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "model_usebrokeraccounts_usebrokeraccounts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage_brokeraccountspage", "to": "model_usebrokeraccounts_usebrokeraccounts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerportfolio", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerportfolio", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerportfolio", "to": "model_usebrokerportfolio_usebrokerportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "model_usebrokerportfolio_usebrokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout_brokeraccountlayout", "to": "model_usebrokerportfolio_usebrokerportfolio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi", "to": "api_brokeranalyticsapi_getbrokeranalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi", "to": "api_index_brokeranalytics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_analytics_index_ts_broker_analytics_index", "to": "api_brokeranalyticsapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeranalytics", "to": "api_brokeranalyticsapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeranalyticsapi_getbrokeranalytics", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_analytics_index_ts_broker_analytics_index", "to": "api_brokeranalyticsapi_getbrokeranalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeranalytics", "to": "api_brokeranalyticsapi_getbrokeranalytics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_analytics_index_ts_broker_analytics_index", "to": "model_usebrokeranalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_broker_analytics_index_ts_broker_analytics_index", "to": "model_usebrokeranalytics_usebrokeranalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeranalytics", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeranalytics", "to": "api_index_brokeranalytics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeranalytics", "to": "model_usebrokeranalytics_usebrokeranalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "model_usebrokeranalytics_usebrokeranalytics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage_brokeranalyticspage", "to": "model_usebrokeranalytics_usebrokeranalytics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_brokereventapi_brokereventsquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_brokereventapi_getbrokerevents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_index_brokereventsdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_event_index", "to": "api_brokereventapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents", "to": "api_brokereventapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "api_brokereventapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_event_index", "to": "api_brokereventapi_brokereventsquery", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents", "to": "api_brokereventapi_brokereventsquery", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokereventapi_getbrokerevents", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_event_index", "to": "api_brokereventapi_getbrokerevents", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents", "to": "api_brokereventapi_getbrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "api_brokereventapi_getbrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_event_index", "to": "model_usebrokerevents", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_event_index", "to": "model_usebrokerevents_usebrokerevents", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "broker_event_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "broker_event_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "broker_event_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "broker_event_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "model_usebrokerevents", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "model_usebrokerevents_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "model_usebrokerevents_test_mockeventsdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "model_usebrokerevents_test_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents_test", "to": "model_usebrokerevents_usebrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents", "to": "api_index_brokereventsdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerevents", "to": "model_usebrokerevents_usebrokerevents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "model_usebrokerevents_usebrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_brokereventsoverview", "to": "model_usebrokerevents_usebrokerevents", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "model_usebrokerevents_usebrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "model_usebrokerevents_usebrokerevents", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_brokereventspage", "to": "model_usebrokerevents_usebrokerevents", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_brokeroperationapi_brokeroperationquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_brokeroperationapi_getbrokeroperations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_brokeroperationapi_syncbrokeroperations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_index_brokeroperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_index_brokeroperationsyncresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "api_brokeroperationapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations", "to": "api_brokeroperationapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations_test", "to": "api_brokeroperationapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesyncbrokeroperations", "to": "api_brokeroperationapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "api_brokeroperationapi_brokeroperationquery", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations", "to": "api_brokeroperationapi_brokeroperationquery", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi_syncbrokeroperations", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesyncbrokeroperations", "to": "api_brokeroperationapi_syncbrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokeroperationapi_getbrokeroperations", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "api_brokeroperationapi_getbrokeroperations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations", "to": "api_brokeroperationapi_getbrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations_test", "to": "api_brokeroperationapi_getbrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_operationfilters", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_operationfilters_broker_operation_type_options", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_operationfilters_brokeroperationimpact", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_operationfilters_getbrokeroperationimpact", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_operationfilters_getbrokeroperationtypelabel", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_operationfilters_isbrokeroperationtype", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_usebrokeroperations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_usebrokeroperations_usebrokeroperations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_usesyncbrokeroperations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operation_index", "to": "model_usesyncbrokeroperations_usesyncbrokeroperations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "broker_operation_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "broker_operation_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "broker_operation_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "broker_operation_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters_test", "to": "model_operationfilters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters_test", "to": "model_operationfilters_broker_operation_type_options", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters_test", "to": "model_operationfilters_isbrokeroperationtype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "api_index_brokeroperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_bond_repayment_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_broker_operation_type_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_broker_operation_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_brokeroperationimpact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_fee_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_getbrokeroperationimpact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_getbrokeroperationtypelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_income_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_isbrokeroperationtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_operation_type_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_security_transfer_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_tax_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_trade_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_transfer_input_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_operationfilters", "to": "model_operationfilters_transfer_output_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "model_operationfilters_brokeroperationimpact", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_operationfilters_broker_operation_type_options", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "model_operationfilters_broker_operation_type_options", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_operationfilters_isbrokeroperationtype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "model_operationfilters_isbrokeroperationtype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage_brokeroperationspage", "to": "model_operationfilters_isbrokeroperationtype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_operationfilters_getbrokeroperationtypelabel", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "model_operationfilters_getbrokeroperationtypelabel", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_operationfilters_getbrokeroperationimpact", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "model_operationfilters_getbrokeroperationimpact", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations_test", "to": "model_usebrokeroperations", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations_test", "to": "model_usebrokeroperations_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations_test", "to": "model_usebrokeroperations_usebrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations", "to": "api_index_brokeroperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokeroperations", "to": "model_usebrokeroperations_usebrokeroperations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "model_usebrokeroperations_usebrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage_brokeraccountoverviewpage", "to": "model_usebrokeroperations_usebrokeroperations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "model_usebrokeroperations_usebrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage_brokeroperationspage", "to": "model_usebrokeroperations_usebrokeroperations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesyncbrokeroperations", "to": "model_usesyncbrokeroperations_usesyncbrokeroperations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "model_usesyncbrokeroperations_usesyncbrokeroperations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage_brokeroperationspage", "to": "model_usesyncbrokeroperations_usesyncbrokeroperations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi", "to": "api_brokerpositionapi_getbrokerpositions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi", "to": "api_index_brokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "api_brokerpositionapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerpositions", "to": "api_brokerpositionapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_brokerpositionapi_getbrokerpositions", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "api_brokerpositionapi_getbrokerpositions", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerpositions", "to": "api_brokerpositionapi_getbrokerpositions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerallocation", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerallocation_brokerallocationitem", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerallocation_brokerallocationkey", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerallocation_buildbrokerallocation", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerdisplay", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerdisplay_brokerpositiongroup", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_brokerdisplay_getbrokerpositiongroup", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_usebrokerpositions", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_position_index", "to": "model_usebrokerpositions_usebrokerpositions", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "broker_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "broker_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "broker_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "broker_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "broker_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_positionticker", "to": "broker_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "api_index_brokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "model_brokerallocation", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "model_brokerallocation_buildbrokerallocation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "model_brokerallocation_test_money", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation_test", "to": "model_brokerallocation_test_portfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "model_brokerallocation_allocation_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "model_brokerallocation_brokerallocationitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "model_brokerallocation_brokerallocationkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "model_brokerallocation_brokernegativeallocationitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerallocation", "to": "model_brokerallocation_buildbrokerallocation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "model_brokerallocation_buildbrokerallocation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcardsuccess", "to": "model_brokerallocation_buildbrokerallocation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "model_brokerallocation_buildbrokerallocation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "model_brokerallocation_buildbrokerallocation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart_brokerallocationchart", "to": "model_brokerallocation_buildbrokerallocation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "api_index_brokeroperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "api_index_brokerposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_brokerdisplay", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_brokerdisplay_getbrokerpositiongroup", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_brokerdisplay_test_operation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay_test", "to": "model_brokerdisplay_test_position", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "api_index_brokerposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "model_brokerdisplay_bond_class_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "model_brokerdisplay_brokerinstrumentlinkinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "model_brokerdisplay_brokerpositiongroup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "model_brokerdisplay_getbrokerpositiongroup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_brokerdisplay", "to": "model_brokerdisplay_stock_class_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable_operationinstrument", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_positionticker", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_positionticker_positionticker", "to": "model_brokerdisplay_getbrokerinstrumentpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerpositions", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerpositions", "to": "api_index_brokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usebrokerpositions", "to": "model_usebrokerpositions_usebrokerpositions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "model_usebrokerpositions_usebrokerpositions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage_brokerpositionspage", "to": "model_usebrokerpositions_usebrokerpositions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_index_analyticsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_index_portfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_index_portfoliodetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_index_position", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_addposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_createportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_deleteportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_getportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_getportfolioanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_getportfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_removeposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_updateportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi", "to": "api_portfolioapi_updateposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolio", "to": "api_portfolioapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolioanalytics", "to": "api_portfolioapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfoliomutations", "to": "api_portfolioapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolios", "to": "api_portfolioapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "api_portfolioapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_getportfolios", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolios", "to": "api_portfolioapi_getportfolios", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_getportfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_getportfolio", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolio", "to": "api_portfolioapi_getportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_getportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_createportfolio", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfoliomutations", "to": "api_portfolioapi_createportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_createportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_updateportfolio", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfoliomutations", "to": "api_portfolioapi_updateportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_updateportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_deleteportfolio", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfoliomutations", "to": "api_portfolioapi_deleteportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_deleteportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_addposition", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "api_portfolioapi_addposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_addposition", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_updateposition", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "api_portfolioapi_updateposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_updateposition", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_removeposition", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "api_portfolioapi_removeposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_removeposition", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_portfolioapi_getportfolioanalytics", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolioanalytics", "to": "api_portfolioapi_getportfolioanalytics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "api_portfolioapi_getportfolioanalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_useaddposition", "to": "portfolio_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfolio_useportfolio", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfolioanalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfolioanalytics_useportfolioanalytics", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfoliomutations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfoliomutations_useportfoliomutations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_useportfolios_useportfolios", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_usepositionmutations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_index", "to": "model_usepositionmutations_usepositionmutations", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "portfolio_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "portfolio_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolio", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolio", "to": "api_index_portfoliodetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolio", "to": "model_useportfolio_useportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "model_useportfolio_useportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage_portfoliodetailpage", "to": "model_useportfolio_useportfolio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolioanalytics", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolioanalytics", "to": "api_index_analyticsresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolioanalytics", "to": "model_useportfolioanalytics_useportfolioanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfoliomutations", "to": "model_useportfoliomutations_useportfoliomutations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "model_useportfoliomutations_useportfoliomutations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage_portfoliodetailpage", "to": "model_useportfoliomutations_useportfoliomutations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "model_useportfoliomutations_useportfoliomutations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage_portfolioslistpage", "to": "model_useportfoliomutations_useportfoliomutations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolios", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolios", "to": "api_index_portfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useportfolios", "to": "model_useportfolios_useportfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "model_useportfolios_useportfolios", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage_portfolioslistpage", "to": "model_useportfolios_useportfolios", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "api_index_portfoliodetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usepositionmutations", "to": "model_usepositionmutations_usepositionmutations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_useaddposition", "to": "model_usepositionmutations_usepositionmutations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_useaddposition_useaddposition", "to": "model_usepositionmutations_usepositionmutations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "model_usepositionmutations_usepositionmutations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage_portfoliodetailpage", "to": "model_usepositionmutations_usepositionmutations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_searchapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_searchapi", "to": "api_index_searchresultitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_searchapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_searchapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_searchapi", "to": "api_searchapi_searchsecurities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch", "to": "api_searchapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_index", "to": "api_searchapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_searchapi_searchsecurities", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch", "to": "api_searchapi_searchsecurities", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_index", "to": "api_searchapi_searchsecurities", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch_test", "to": "search_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_index", "to": "model_usesearch", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_index", "to": "model_usesearch_usesearch", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar", "to": "search_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch_test", "to": "model_usesearch_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch_test", "to": "model_usesearch_usesearch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch", "to": "api_index_searchresultitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesearch", "to": "model_usesearch_usesearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar", "to": "model_usesearch_usesearch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar_searchbar", "to": "model_usesearch_usesearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi_getme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi_login", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi_logout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi_refresh", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi_register", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_sessionapi_updateprofile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_tokenmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_tokenmanager_getaccesstoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_test", "to": "api_tokenmanager_setaccesstoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_index_authresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_index_userresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_sessionapi_getme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_sessionapi_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_sessionapi_logout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_sessionapi_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_sessionapi_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_sessionapi_updateprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_tokenmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi", "to": "api_tokenmanager_setaccesstoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_testsessionprovider", "to": "api_sessionapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_login", "to": "api_tokenmanager_setaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi_login", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_register", "to": "api_tokenmanager_setaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi_register", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_refresh", "to": "api_tokenmanager_setaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi_refresh", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_sessionapi_logout", "to": "api_tokenmanager_setaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi_logout", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi_getme", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "api_sessionapi_updateprofile", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_index_authresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_kyclient_normalizeenvelope", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_tokenmanager_getaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_tokenmanager_handleunauthorized", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_tokenmanager_refreshtokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_tokenmanager_setaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager", "to": "api_tokenmanager_setonunauthorized", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager_handleunauthorized", "to": "api_tokenmanager_refreshtokens", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_tokenmanager_refreshtokens", "to": "api_kyclient_normalizeenvelope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "model_sessioncontext", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "model_usesession", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "model_usesession_usesession", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "model_usesessionstore", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "session_index", "to": "model_usesessionstore_usesessionstore", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_profilepage", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage", "to": "session_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_sessioncontext", "to": "lib_session_context", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_sessioncontext", "to": "lib_session_context_sessioncontext", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_sessioncontext", "to": "lib_session_context_sessioncontextvalue", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession", "to": "model_sessioncontext", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "model_sessioncontext", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "lib_session_context_sessioncontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "model_usesession", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "model_usesession_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "model_usesession_test_mocksession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "model_usesession_test_sessionstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession_test", "to": "model_usesession_usesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession", "to": "lib_session_context_sessioncontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession", "to": "lib_session_context_sessioncontextvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesession", "to": "model_usesession_usesession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage", "to": "model_usesession_usesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage_loginpage", "to": "model_usesession_usesession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_profilepage", "to": "model_usesession_usesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_profilepage_profilepage", "to": "model_usesession_usesession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage", "to": "model_usesession_usesession", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage_registerpage", "to": "model_usesession_usesession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesessionstore", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesessionstore", "to": "api_index_userresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesessionstore", "to": "model_usesessionstore_sessionstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesessionstore", "to": "model_usesessionstore_usesessionstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usesessionstore_sessionstate", "to": "api_index_userresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index_apiresponsemeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index_candleitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index_dividenditem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index_sharehistoryitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index_shareresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_index_stockmarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_stockapi_getshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_stockapi_getsharecandles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_stockapi_getsharedividends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_stockapi_getsharehistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi", "to": "api_stockapi_getsharemarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock", "to": "api_stockapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles", "to": "api_stockapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends", "to": "api_stockapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi_getshare", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock", "to": "api_stockapi_getshare", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi_getsharemarketdata", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi_getsharedividends", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends", "to": "api_stockapi_getsharedividends", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi_getsharehistory", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_stockapi_getsharecandles", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles", "to": "api_stockapi_getsharecandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_stock_index_ts_stock_index", "to": "model_usestock", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_stock_index_ts_stock_index", "to": "model_usestock_usestock", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_stock_index_ts_stock_index", "to": "model_usestockcandles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_stock_index_ts_stock_index", "to": "model_usestockcandles_usestockcandles", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_stock_index_ts_stock_index", "to": "model_usestockdividends", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_entities_stock_index_ts_stock_index", "to": "model_usestockdividends_usestockdividends", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock_test", "to": "model_usestock", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock_test", "to": "model_usestock_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock_test", "to": "model_usestock_usestock", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock", "to": "api_index_shareresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestock", "to": "model_usestock_usestock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "model_usestock_usestock", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage_stockpage", "to": "model_usestock_usestock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles_test", "to": "model_usestockcandles", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles_test", "to": "model_usestockcandles_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles_test", "to": "model_usestockcandles_usestockcandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles", "to": "api_index_candleitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockcandles", "to": "model_usestockcandles_usestockcandles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "model_usestockcandles_usestockcandles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage_stockpage", "to": "model_usestockcandles_usestockcandles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends_test", "to": "model_usestockdividends", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends_test", "to": "model_usestockdividends_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends_test", "to": "model_usestockdividends_usestockdividends", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends", "to": "api_index_dividenditem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usestockdividends", "to": "model_usestockdividends_usestockdividends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "model_usestockdividends_usestockdividends", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage_stockpage", "to": "model_usestockdividends_usestockdividends", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_useaddposition", "to": "api_useaddposition_useaddposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform", "to": "api_useaddposition", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform", "to": "api_useaddposition_useaddposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform_addpositionform", "to": "api_useaddposition_useaddposition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "add_position_index", "to": "ui_addpositionform", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "add_position_index", "to": "ui_addpositionform_addpositionform", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "add_position_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_useaddpositionform", "to": "model_useaddpositionform_useaddpositionform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform", "to": "model_useaddpositionform", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform", "to": "model_useaddpositionform_useaddpositionform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform_addpositionform", "to": "model_useaddpositionform_useaddpositionform", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform", "to": "ui_addpositionform_addpositionform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_addpositionform", "to": "ui_addpositionform_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_addpositionform_addpositionform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi", "to": "api_index_screenerresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi", "to": "api_kyclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi", "to": "api_kyclient_request", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi", "to": "api_screenerapi_getscreenerresults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi", "to": "api_screenerapi_screenerquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_index_ts_screener_index", "to": "api_screenerapi", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener", "to": "api_screenerapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "api_screenerapi", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_index_ts_screener_index", "to": "api_screenerapi_screenerquery", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener", "to": "api_screenerapi_screenerquery", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "api_screenerapi_screenerquery", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel_props", "to": "api_screenerapi_screenerquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_screenerapi_getscreenerresults", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener", "to": "api_screenerapi_getscreenerresults", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_index_ts_screener_index", "to": "model_usescreener", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_index_ts_screener_index", "to": "model_usescreener_usescreener", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_index", "to": "model_usescreener", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_index", "to": "model_usescreener_usescreener", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener", "to": "model_usescreener_usescreener", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener", "to": "router_usesearchparams", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener", "to": "router_usesearchparams_usesearchparamscompat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "model_usescreener_usescreener", "to": "router_usesearchparams_usesearchparamscompat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenerpage", "to": "model_usescreener_usescreener", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenerpage_screenerpage", "to": "model_usescreener_usescreener", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_filterpanel", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "ui_filterpanel_filterpanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "ui_filterpanel_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "ui_filterpanelbond", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "ui_filterpanelbond_filterpanelbond", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "ui_filterpanelshare", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanel", "to": "ui_filterpanelshare_filterpanelshare", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_filterpanel_filterpanel", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenerpage", "to": "ui_filterpanel_filterpanel", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_filterpanelbond", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanelbond", "to": "ui_filterpanelbond_filterpanelbond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanelbond", "to": "ui_filterpanelbond_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_filterpanelbond_filterpanelbond", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_filterpanelshare", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanelshare", "to": "ui_filterpanelshare_filterpanelshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_filterpanelshare", "to": "ui_filterpanelshare_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_filterpanelshare_filterpanelshare", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_screenertable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable", "to": "api_index_screenerresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable", "to": "ui_screenertable_formatchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable", "to": "ui_screenertable_formatnum", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable", "to": "ui_screenertable_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable", "to": "ui_screenertable_screenertable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenertable_props", "to": "api_index_screenerresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_features_screener_ui_index_ts_ui_index", "to": "ui_screenertable_screenertable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenerpage", "to": "ui_screenertable_screenertable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_main_tsx_src_main", "to": "config_env", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_main_tsx_src_main", "to": "src_main_startapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_bond_index_ts_bond_index", "to": "ui_bondpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_bond_index_ts_bond_index", "to": "ui_bondpage_bondpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "bond_details_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "price_chart_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "ui_bonddetails_bonddetails", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "ui_bondpage_bondpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpage", "to": "ui_pricechart_pricechart", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_broker_account_index_ts_broker_account_index", "to": "ui_brokeraccountoverviewpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_broker_account_index_ts_broker_account_index", "to": "ui_brokeraccountoverviewpage_brokeraccountoverviewpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "broker_account_layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "broker_allocation_chart_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "broker_events_overview_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "broker_operations_table_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "broker_overview_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokeraccountoverviewpage_brokeraccountoverviewpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokerallocationchart_brokerallocationchart", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokerassetcards_brokerassetcards", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokereventsoverview_brokereventsoverview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokeroperationstable_brokeroperationstable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokeroverviewskeleton_brokeroverviewskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage", "to": "ui_brokersummary_brokersummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountoverviewpage_brokeraccountoverviewpage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_index", "to": "ui_brokeraccountspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_index", "to": "ui_brokeraccountspage_brokeraccountspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "broker_account_card_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "broker_accounts_summary_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "ui_brokeraccountcard_brokeraccountcard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "ui_brokeraccountspage_brokeraccountspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "ui_brokeraccountspage_brokeraccountspageskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountspage", "to": "ui_brokeraccountssummary_brokeraccountssummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_broker_analytics_index_ts_broker_analytics_index", "to": "ui_brokeranalyticspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_broker_analytics_index_ts_broker_analytics_index", "to": "ui_brokeranalyticspage_brokeranalyticspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "broker_account_layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "ui_brokeranalyticspage_brokeranalyticspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "ui_brokeranalyticspage_divider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "ui_brokeranalyticspage_formatamount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "ui_brokeranalyticspage_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage", "to": "ui_brokeranalyticspage_summaryitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage_brokeranalyticspage", "to": "ui_brokeranalyticspage_formatamount", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeranalyticspage_brokeranalyticspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_index", "to": "ui_brokereventspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_index", "to": "ui_brokereventspage_brokereventspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "ui_brokereventspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "ui_brokereventspage_brokereventspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "ui_brokereventspage_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "ui_brokereventspage_test_mockdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "ui_brokereventspage_test_mocksearchparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_test", "to": "ui_brokereventspage_test_mocksetsearchparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "broker_account_layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "lib_formatters_formatbrokerdate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "router_usesearchparams", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "router_usesearchparams_usesearchparamscompat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_brokereventspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_defaultperiod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_event_type_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_event_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_eventtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_eventtypelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_filters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_filtersfromsearchparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_filterstosearchparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_parsetypes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage", "to": "ui_brokereventspage_sourcelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_filtersfromsearchparams", "to": "ui_brokereventspage_defaultperiod", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_filtersfromsearchparams", "to": "ui_brokereventspage_parsetypes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_brokereventspage", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_brokereventspage", "to": "lib_formatters_formatbrokerdate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_brokereventspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventspage_brokereventspage", "to": "router_usesearchparams_usesearchparamscompat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_index", "to": "ui_brokeroperationspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_index", "to": "ui_brokeroperationspage_brokeroperationspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "broker_account_layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "broker_operations_table_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "lib_usecursorpagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "lib_usecursorpagination_usecursorpagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "router_usesearchparams", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "router_usesearchparams_usesearchparamscompat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "ui_brokeroperationspage_brokeroperationspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "ui_brokeroperationspage_getdefaultsyncrange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage", "to": "ui_brokeroperationstable_brokeroperationstable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage_brokeroperationspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage_brokeroperationspage", "to": "lib_usecursorpagination_usecursorpagination", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationspage_brokeroperationspage", "to": "router_usesearchparams_usesearchparamscompat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_index", "to": "ui_brokerpositionspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_index", "to": "ui_brokerpositionspage_brokerpositionspage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "broker_account_layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "broker_positions_table_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "lib_usecursorpagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "lib_usecursorpagination_usecursorpagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "ui_brokerpositionspage_brokerpositionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "ui_brokerpositionspage_brokerpositionspageprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage", "to": "ui_brokerpositiontable_brokerpositiontable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage_brokerpositionspage", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositionspage_brokerpositionspage", "to": "lib_usecursorpagination_usecursorpagination", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_index", "to": "ui_homepage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_index", "to": "ui_homepage_homepage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_homepage", "to": "ui_homepage_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "login_loginpage_test_logintestrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "login_loginpage_test_renderloginpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "test_testsessionprovider", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "test_testsessionprovider_testsessionprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "ui_loginpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_loginpage_test", "to": "ui_loginpage_loginpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_index", "to": "ui_loginpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_index", "to": "ui_loginpage_loginpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage", "to": "router_usesearchparams", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage", "to": "router_usesearchparams_usesearchparamscompat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage", "to": "ui_loginpage_loginpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_loginpage_loginpage", "to": "router_usesearchparams_usesearchparamscompat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolios_index", "to": "ui_portfoliodetailpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolios_index", "to": "ui_portfoliodetailpage_portfoliodetailpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolios_index", "to": "ui_portfolioslistpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolios_index", "to": "ui_portfolioslistpage_portfolioslistpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "bond_positions_table_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "portfolio_analytics_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "portfolio_form_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "portfolio_summary_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "share_positions_table_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_analyticssummary_analyticssummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_bondpositiontable_bondpositiontable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_portfoliodetailpage_portfoliodetailpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_portfolioform_portfolioform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_portfoliosummary_portfoliosummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliodetailpage", "to": "ui_sharepositiontable_sharepositiontable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "portfolio_card_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "portfolio_form_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "ui_portfoliocard_portfoliocard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "ui_portfolioform_portfolioform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioslistpage", "to": "ui_portfolioslistpage_portfolioslistpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_profilepage_test", "to": "test_test_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_profilepage_test", "to": "test_test_utils_renderwithproviders", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_profilepage_test", "to": "ui_profilepage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_profilepage_test", "to": "ui_profilepage_profilepage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_index", "to": "ui_profilepage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_index", "to": "ui_profilepage_profilepage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_profilepage", "to": "ui_profilepage_profilepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "register_registerpage_test_registertestrouter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "register_registerpage_test_renderregisterpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "test_testsessionprovider", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "test_testsessionprovider_testsessionprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "ui_registerpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_registerpage_test", "to": "ui_registerpage_registerpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_index", "to": "ui_registerpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_index", "to": "ui_registerpage_registerpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage", "to": "router_usesearchparams", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage", "to": "router_usesearchparams_usesearchparamscompat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage", "to": "ui_registerpage_registerpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_registerpage_registerpage", "to": "router_usesearchparams_usesearchparamscompat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_screener_index_ts_screener_index", "to": "ui_screenerpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_screener_index_ts_screener_index", "to": "ui_screenerpage_screenerpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_screenerpage", "to": "ui_screenerpage_screenerpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_stock_index_ts_stock_index", "to": "ui_stockpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_pages_stock_index_ts_stock_index", "to": "ui_stockpage_stockpage", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "dividends_table_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "price_chart_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "stock_details_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "ui_dividendstable_dividendstable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "ui_pricechart_pricechart", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "ui_stockdetails_stockdetails", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockpage", "to": "ui_stockpage_stockpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_analyticsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_apienvelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_apiresponsemeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_authresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_bondhistoryitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_bondmarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_bondresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokeraccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokeranalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokereventitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokereventsdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokereventssummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokermoney", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokeroperation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokeroperationcategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokeroperationspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokeroperationsyncresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokerportfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokerposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_brokerpositionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_candleitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_dividenditem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_healthresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_portfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_portfoliodetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_portfoliosummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_position", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_positionwithprice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_screeneritem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_screenerresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_searchresultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_sharehistoryitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_shareresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_stockmarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_index_userresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_kyclient", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_kyclient_configurekyauth", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_kyclient_gethealth", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_kyclient_request", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_index", "to": "api_types_components", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_session_context", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_analyticssummary", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositionrow", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliocard", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioform", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliosummary", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_positionticker", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositionrow", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails", "to": "api_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_authresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_session_context", "to": "api_index_userresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_session_context_sessioncontextvalue", "to": "api_index_userresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_userresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_shareresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails", "to": "api_index_shareresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails_stockdetailsprops", "to": "api_index_shareresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_stockmarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_dividenditem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable", "to": "api_index_dividenditem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable_dividendstableprops", "to": "api_index_dividenditem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_bondresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails", "to": "api_index_bondresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails_bonddetailsprops", "to": "api_index_bondresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_bondmarketdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_candleitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "api_index_searchresultitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliocard", "to": "api_index_portfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioform", "to": "api_index_portfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioform_props", "to": "api_index_portfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliosummary", "to": "api_index_portfoliodetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "api_index_positionwithprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart_allocationchartprops", "to": "api_index_positionwithprice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositionrow", "to": "api_index_positionwithprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositionrow_props", "to": "api_index_positionwithprice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable", "to": "api_index_positionwithprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable_props", "to": "api_index_positionwithprice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositionrow", "to": "api_index_positionwithprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositionrow_props", "to": "api_index_positionwithprice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable", "to": "api_index_positionwithprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable_props", "to": "api_index_positionwithprice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_analyticssummary", "to": "api_index_portfoliosummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "api_index_brokeraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout_brokeraccountcontextvalue", "to": "api_index_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary", "to": "api_index_brokerportfolio", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "api_index_brokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "api_index_brokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_positionticker", "to": "api_index_brokerposition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "api_index_brokeroperation", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "api_index_brokeroperationspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "api_index_brokerpositionspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_apienvelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_apiresponsemeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_authconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_buildurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_configurekyauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_gethealth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_kyapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_normalizeenvelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_pickmethod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient", "to": "api_kyclient_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient_request", "to": "api_kyclient_buildurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient_request", "to": "api_kyclient_normalizeenvelope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient_request", "to": "api_kyclient_pickmethod", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_kyclient_gethealth", "to": "api_kyclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_types", "to": "api_types_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_types", "to": "api_types_defs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_types", "to": "api_types_operations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_types", "to": "api_types_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_types", "to": "api_types_webhooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_env", "to": "config_env_envschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_env", "to": "config_env_parsed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dates_index", "to": "dates_index_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dates_index", "to": "dates_index_formatrelative", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokerdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokermoney", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokerpercent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokersignedcurrencyvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokersignedmoney", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_formatbrokersignedpercent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters", "to": "lib_formatters_pluralize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliocard", "to": "lib_formatters", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters_formatbrokermoney", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters_formatbrokersignedcurrencyvalue", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "lib_formatters_formatbrokercurrencyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "lib_formatters_formatbrokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcardsuccess", "to": "lib_formatters_formatbrokermoney", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "lib_formatters_formatbrokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "lib_formatters_formatbrokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary", "to": "lib_formatters_formatbrokermoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters_formatbrokersignedmoney", "to": "lib_formatters_formatbrokersignedcurrencyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "lib_formatters_formatbrokersignedcurrencyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcardsuccess", "to": "lib_formatters_formatbrokersignedcurrencyvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "lib_formatters_formatbrokersignedcurrencyvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "lib_formatters_formatbrokersignedmoney", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_formatters_formatbrokersignedpercent", "to": "lib_formatters_formatbrokerpercent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary", "to": "lib_formatters_formatbrokerpercent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "lib_formatters_formatbrokersignedpercent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcardsuccess", "to": "lib_formatters_formatbrokersignedpercent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "lib_formatters_formatbrokersignedpercent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "lib_formatters_formatbrokerdate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcardsuccess", "to": "lib_formatters_formatbrokerdate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "lib_formatters_pluralize", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards_brokerassetcards", "to": "lib_formatters_pluralize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliocard", "to": "lib_formatters_pluralize", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliocard_portfoliocard", "to": "lib_formatters_pluralize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "router_usesearchparams", "to": "router_usesearchparams_usesearchparamscompat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_session_context", "to": "lib_session_context_sessioncontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_session_context", "to": "lib_session_context_sessioncontextvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_testsessionprovider", "to": "lib_session_context", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_testsessionprovider", "to": "lib_session_context_sessioncontextvalue", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_testsessionprovider", "to": "lib_session_context_sessioncontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "styles_clsx", "to": "styles_clsx_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_test_utils", "to": "test_testsessionprovider", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_testsessionprovider", "to": "test_testsessionprovider_testsessionprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_test_utils", "to": "test_testsessionprovider_testsessionprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockbond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockbondmarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockcandles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockdividends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockmarketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmocksearchresults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories", "to": "test_factories_createmockuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails_test", "to": "test_factories", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable_test", "to": "test_factories", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails_test", "to": "test_factories", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories_createmockshare", "to": "test_factories_createmockmarketdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails_test", "to": "test_factories_createmockshare", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories_createmockbond", "to": "test_factories_createmockbondmarketdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails_test", "to": "test_factories_createmockbond", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_factories_createmockauth", "to": "test_factories_createmockuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable_test", "to": "test_factories_createmockdividends", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_test_utils", "to": "test_test_utils_createtestqueryclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_test_utils", "to": "test_test_utils_customrenderoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_test_utils", "to": "test_test_utils_renderwithproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_usecursorpagination", "to": "lib_usecursorpagination_usecursorpagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_index", "to": "table_table", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_table", "to": "table_table_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_table", "to": "table_table_tableprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_index", "to": "table_table_table", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_shared_ui_index_ts_ui_index", "to": "ui_tableskeleton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_tableskeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_tableskeleton", "to": "ui_tableskeleton_column", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_tableskeleton", "to": "ui_tableskeleton_tableskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "apps_frontend_src_shared_ui_index_ts_ui_index", "to": "ui_tableskeleton_tableskeleton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_tableskeleton_tableskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_allocation_bar_brokerallocationbar", "to": "broker_allocation_bar_brokerallocationbar_allocationbaritem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_allocation_bar_brokerallocationbar", "to": "broker_allocation_bar_brokerallocationbar_brokerallocationbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_allocation_bar_index", "to": "broker_allocation_bar_brokerallocationbar", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_allocation_bar_index", "to": "broker_allocation_bar_brokerallocationbar_brokerallocationbar", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "broker_allocation_bar_brokerallocationbar_brokerallocationbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "broker_allocation_bar_brokerallocationbar_brokerallocationbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "broker_allocation_bar_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "broker_allocation_bar_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bond_details_index", "to": "ui_bonddetails", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bond_details_index", "to": "ui_bonddetails_bonddetails", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails_test", "to": "ui_bonddetails", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails_test", "to": "ui_bonddetails_bonddetails", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails", "to": "ui_bonddetails_bonddetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails", "to": "ui_bonddetails_bonddetailsprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bonddetails", "to": "ui_bonddetails_rowstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bond_positions_table_index", "to": "ui_bondpositiontable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "bond_positions_table_index", "to": "ui_bondpositiontable_bondpositiontable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositionrow", "to": "ui_bondpositionrow_bondpositionrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositionrow", "to": "ui_bondpositionrow_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable", "to": "ui_bondpositionrow", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable", "to": "ui_bondpositionrow_bondpositionrow", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable", "to": "ui_bondpositiontable_bondpositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_bondpositiontable", "to": "ui_bondpositiontable_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_card_index", "to": "ui_brokeraccountcard", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_card_index", "to": "ui_brokeraccountcard_brokeraccountcard", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_brokeraccountcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_brokeraccountcarderror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_brokeraccountcardskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_brokeraccountcardsuccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_brokeraccounttypelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_cardsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard", "to": "ui_brokeraccountcard_statsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcard", "to": "ui_brokeraccountcard_brokeraccounttypelabel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcarderror", "to": "ui_brokeraccountcard_brokeraccounttypelabel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountcard_brokeraccountcardsuccess", "to": "ui_brokeraccountcard_brokeraccounttypelabel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_layout_index", "to": "lib_usebrokeraccountcontext", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_layout_index", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_layout_index", "to": "ui_brokeraccountlayout", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_layout_index", "to": "ui_brokeraccountlayout_brokeraccountcontextvalue", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_layout_index", "to": "ui_brokeraccountlayout_brokeraccountlayout", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_usebrokeraccountcontext", "to": "lib_usebrokeraccountcontext_usebrokeraccountcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_usebrokeraccountcontext", "to": "ui_brokeraccountlayout", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_usebrokeraccountcontext", "to": "ui_brokeraccountlayout_brokeraccountcontext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "ui_brokeraccountlayout_baselinkstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "ui_brokeraccountlayout_brokeraccountcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "ui_brokeraccountlayout_brokeraccountcontextvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "ui_brokeraccountlayout_brokeraccountlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountlayout", "to": "ui_brokeraccountlayout_links", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_summary_index", "to": "ui_brokeraccountssummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_summary_index", "to": "ui_brokeraccountssummary_brokeraccountssummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeraccountssummary", "to": "ui_brokeraccountssummary_brokeraccountssummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_allocation_chart_index", "to": "ui_brokerallocationchart", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_allocation_chart_index", "to": "ui_brokerallocationchart_brokerallocationchart", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "ui_brokerallocationchart_allocationcurrency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart", "to": "ui_brokerallocationchart_brokerallocationchart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerallocationchart_brokerallocationchart", "to": "ui_brokerallocationchart_allocationcurrency", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_overview_index", "to": "ui_brokereventsoverview", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_overview_index", "to": "ui_brokereventsoverview_brokereventsoverview", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "ui_brokereventsoverview", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "ui_brokereventsoverview_brokereventsoverview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "ui_brokereventsoverview_test_createwrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "ui_brokereventsoverview_test_mockitems", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_test", "to": "ui_brokereventsoverview_test_mocknavigate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "ui_brokereventsoverview_brokereventsoverview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "ui_brokereventsoverview_defaultperiod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "ui_brokereventsoverview_eventtypelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview", "to": "ui_brokereventsoverview_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokereventsoverview_brokereventsoverview", "to": "ui_brokereventsoverview_defaultperiod", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_table_index", "to": "ui_brokeroperationstable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_table_index", "to": "ui_brokeroperationstable_brokeroperationstable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_brokeroperationstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_brokeroperationstableprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_operationinstrument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_operationtone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_tablesx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_tdsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_tdsxright", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroperationstable", "to": "ui_brokeroperationstable_thsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_overview_index", "to": "ui_brokerassetcards", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_overview_index", "to": "ui_brokerassetcards_brokerassetcards", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_overview_index", "to": "ui_brokeroverviewskeleton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_overview_index", "to": "ui_brokeroverviewskeleton_brokeroverviewskeleton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_overview_index", "to": "ui_brokersummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_overview_index", "to": "ui_brokersummary_brokersummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "ui_brokerassetcards_allocationpercent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "ui_brokerassetcards_brokerassetcards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "ui_brokerassetcards_cardsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerassetcards", "to": "ui_brokerassetcards_formatallocationpercent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokeroverviewskeleton", "to": "ui_brokeroverviewskeleton_brokeroverviewskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary", "to": "ui_brokersummary_brokersummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokersummary_brokersummary", "to": "pricechange_pricechange_formatpercent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "broker_positions_table_index", "to": "ui_brokerpositiontable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_table_index", "to": "ui_brokerpositiontable_brokerpositiontable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_brokerpositiontable_brokerpositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_brokerpositiontable_formatquantity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_brokerpositiontable_tablesx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_brokerpositiontable_tdsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_brokerpositiontable_tdsxleft", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_brokerpositiontable_thsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_positionticker", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_brokerpositiontable", "to": "ui_positionticker_positionticker", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_positionticker", "to": "ui_positionticker_positionticker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dividends_table_index", "to": "ui_dividendstable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dividends_table_index", "to": "ui_dividendstable_dividendstable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable_test", "to": "ui_dividendstable", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable_test", "to": "ui_dividendstable_dividendstable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable", "to": "ui_dividendstable_dividendstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dividendstable", "to": "ui_dividendstable_dividendstableprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_index", "to": "ui_analyticssummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_index", "to": "ui_analyticssummary_analyticssummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_analyticssummary", "to": "ui_analyticssummary_analyticssummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_card_index", "to": "ui_portfoliocard", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_card_index", "to": "ui_portfoliocard_portfoliocard", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliocard", "to": "ui_portfoliocard_portfoliocard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_form_index", "to": "ui_portfolioform", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_form_index", "to": "ui_portfolioform_portfolioform", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioform", "to": "ui_portfolioform_currencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioform", "to": "ui_portfolioform_portfolioform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfolioform", "to": "ui_portfolioform_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_summary_index", "to": "ui_portfoliosummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_summary_index", "to": "ui_portfoliosummary_portfoliosummary", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "ui_allocationchart_allocationchart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "ui_allocationchart_allocationchartprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "ui_allocationchart_computesectors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "ui_allocationchart_sector_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "ui_allocationchart_sector_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart", "to": "ui_allocationchart_sectordata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliosummary", "to": "ui_allocationchart", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_allocationchart_allocationchart", "to": "ui_allocationchart_computesectors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliosummary", "to": "ui_allocationchart_allocationchart", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_portfoliosummary", "to": "ui_portfoliosummary_portfoliosummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "price_chart_index", "to": "ui_pricechart", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "price_chart_index", "to": "ui_pricechart_pricechart", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_pricechart_test", "to": "ui_pricechart", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_pricechart_test", "to": "ui_pricechart_pricechart", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_pricechart", "to": "ui_pricechart_pricechart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_pricechart", "to": "ui_pricechart_pricechartprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_bar_index", "to": "ui_searchbar", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_bar_index", "to": "ui_searchbar_searchbar", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar_test", "to": "search_bar_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar_test", "to": "ui_searchbar_searchbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar_test", "to": "ui_searchbar_test_rendersearchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_searchbar", "to": "ui_searchbar_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "share_positions_table_index", "to": "ui_sharepositiontable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "share_positions_table_index", "to": "ui_sharepositiontable_sharepositiontable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositionrow", "to": "ui_sharepositionrow_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositionrow", "to": "ui_sharepositionrow_sharepositionrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable", "to": "ui_sharepositionrow", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable", "to": "ui_sharepositionrow_sharepositionrow", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable", "to": "ui_sharepositiontable_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_sharepositiontable", "to": "ui_sharepositiontable_sharepositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stock_details_index", "to": "ui_stockdetails", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stock_details_index", "to": "ui_stockdetails_stockdetails", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails_test", "to": "ui_stockdetails", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails_test", "to": "ui_stockdetails_stockdetails", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails", "to": "ui_stockdetails_rowstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails", "to": "ui_stockdetails_stockdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_stockdetails", "to": "ui_stockdetails_stockdetailsprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig", "to": "frontend_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig", "to": "frontend_tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig", "to": "frontend_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig", "to": "frontend_tsconfig_references", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_allowimportingtsextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_jsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_moduledetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_nounusedlocals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_nounusedparameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions", "to": "frontend_tsconfig_compileroptions_usedefineforclassfields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions_paths", "to": "frontend_tsconfig_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_compileroptions_paths", "to": "frontend_tsconfig_paths_mocks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node", "to": "frontend_tsconfig_node_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node", "to": "frontend_tsconfig_node_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_composite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_moduledetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_outdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_tsconfig_node_compileroptions", "to": "frontend_tsconfig_node_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_assist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_formatter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_javascript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_linter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome", "to": "biome_vcs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_vcs", "to": "biome_vcs_clientkind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_vcs", "to": "biome_vcs_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_vcs", "to": "biome_vcs_useignorefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_files", "to": "biome_files_ignoreunknown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_formatter", "to": "biome_formatter_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_formatter", "to": "biome_formatter_formatwitherrors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_formatter", "to": "biome_formatter_indentstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_formatter", "to": "biome_formatter_indentwidth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_formatter", "to": "biome_formatter_lineending", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_formatter", "to": "biome_formatter_linewidth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_assist", "to": "biome_assist_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_assist_actions", "to": "biome_actions_source", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_actions_source", "to": "biome_source_organizeimports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter", "to": "biome_linter_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter", "to": "biome_linter_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_a11y", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_correctness", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_preset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_security", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_style", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_linter_rules", "to": "biome_rules_suspicious", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_complexity", "to": "biome_complexity_nobannedtypes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_complexity", "to": "biome_complexity_nouselesstypeconstraint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_correctness", "to": "biome_correctness_nochildrenprop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_correctness", "to": "biome_correctness_noprecisionloss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_correctness", "to": "biome_correctness_nounusedvariables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_correctness", "to": "biome_correctness_useexhaustivedependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_correctness", "to": "biome_correctness_usehookattoplevel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_correctness", "to": "biome_correctness_usejsxkeyiniterable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_security", "to": "biome_security_nodangerouslysetinnerhtmlwithchildren", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_style", "to": "biome_style_nonamespace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_style", "to": "biome_style_nononnullassertion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_style", "to": "biome_style_norestrictedimports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_style", "to": "biome_style_usearrayliterals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_style", "to": "biome_style_useasconstassertion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_style_norestrictedimports", "to": "biome_norestrictedimports_level", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_style_norestrictedimports", "to": "biome_norestrictedimports_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_norestrictedimports_options", "to": "biome_options_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_options_paths", "to": "biome_paths_mui_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_noarrayindexkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_nocommenttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_noduplicateenumvalues", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_noduplicatejsxprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_noexplicitany", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_noextranonnullassertion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_nomisleadinginstantiator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_nononnullassertedoptionalchain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_suspicious", "to": "biome_suspicious_nounsafedeclarationmerging", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_a11y", "to": "biome_a11y_noautofocus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_a11y", "to": "biome_a11y_nolabelwithoutcontrol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_a11y", "to": "biome_a11y_nostaticelementinteractions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_a11y", "to": "biome_a11y_nosvgwithouttitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_a11y", "to": "biome_a11y_usebuttontype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_rules_a11y", "to": "biome_a11y_usekeywithclickevents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_javascript", "to": "biome_javascript_formatter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_javascript_formatter", "to": "biome_formatter_quotestyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_javascript_formatter", "to": "biome_formatter_semicolons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "biome_javascript_formatter", "to": "biome_formatter_trailingcommas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_lint_staged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_overrides", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_workspaces", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_design_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_docs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev_docs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_format", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_format_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_lint_design_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_prepare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_design_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_lint_staged", "to": "package_lint_staged_apps_backend_src_ts_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_lint_staged", "to": "package_lint_staged_apps_backend_test_ts_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_lint_staged", "to": "package_lint_staged_apps_frontend_src_ts_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_lint_staged", "to": "package_lint_staged_packages_design_system_src_ts_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_husky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_lint_staged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_overrides", "to": "package_overrides_storybook_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_overrides_storybook_test", "to": "package_storybook_test_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storybook_main", "to": "storybook_main_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storybook_preview", "to": "storybook_preview_preview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storybook_preview", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storybook_preview", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "storybook_vitest_setup", "to": "storybook_preview", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_exports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_peerdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package", "to": "design_system_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_exports", "to": "design_system_package_exports_theme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_exports", "to": "design_system_package_exports_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_scripts", "to": "design_system_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_scripts", "to": "design_system_package_scripts_build_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_scripts", "to": "design_system_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_scripts", "to": "design_system_package_scripts_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_scripts", "to": "design_system_package_scripts_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_scripts", "to": "design_system_package_scripts_test_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_emotion_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_emotion_styled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_mui_icons_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_mui_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_peerdependencies", "to": "design_system_package_peerdependencies_tanstack_react_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_eslint_plugin_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_eslint_plugin_react_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_playwright", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_storybook_addon_a11y", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_storybook_addon_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_storybook_react_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_storybook_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_testing_library_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_testing_library_jest_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_testing_library_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_testing_library_user_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_types_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_typescript_eslint_eslint_plugin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_typescript_eslint_parser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_vitest_browser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_package_devdependencies", "to": "design_system_package_devdependencies_vitest_browser_playwright", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_alert", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_info", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_success", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_warning", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_withaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "alert_alert_stories_withouttitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "button_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_test", "to": "alert_alert", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_test", "to": "alert_alert_alert", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_test", "to": "alert_alert_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert", "to": "alert_alert_alert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert", "to": "alert_alert_alertprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_alert", "to": "alert_alert_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_index", "to": "alert_alert", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_index", "to": "alert_alert_alertprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "alert_index", "to": "alert_alert_alert", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "alert_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge_badge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge_stories_overflow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_stories", "to": "badge_badge_stories_zero", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_test", "to": "badge_badge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_test", "to": "badge_badge_badge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_test", "to": "badge_badge_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge", "to": "badge_badge_badge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_badge", "to": "badge_badge_badgeprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_index", "to": "badge_badge", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_index", "to": "badge_badge_badgeprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "badge_index", "to": "badge_badge_badge", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "badge_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_allsizes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_allstates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_allvariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_danger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_disabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_primary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_secondary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_small", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_stories", "to": "button_button_stories_tertiary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_test", "to": "button_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_test", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_test", "to": "button_button_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button", "to": "button_button_actionvariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button", "to": "button_button_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button", "to": "button_button_buttonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_button", "to": "button_button_variant_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_index", "to": "button_button", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "button_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "button_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_index", "to": "button_button_buttonprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "button_index", "to": "button_button_button", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "button_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "button_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "button_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "button_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "button_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_stories_fullcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_stories_withactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_stories", "to": "card_card_stories_withheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_test", "to": "card_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_test", "to": "card_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_test", "to": "card_card_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card", "to": "card_card_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card", "to": "card_card_cardprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card", "to": "surface_surface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card", "to": "surface_surface_surface", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card", "to": "surface_surface_surfaceprops", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_index", "to": "card_card", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_card_cardprops", "to": "surface_surface_surfaceprops", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_index", "to": "card_card_cardprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "card_index", "to": "card_card_card", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "card_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_checkbox", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_stories_checked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_stories_disabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_stories_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_stories", "to": "checkbox_checkbox_stories_unchecked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_test", "to": "checkbox_checkbox", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_test", "to": "checkbox_checkbox_checkbox", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_test", "to": "checkbox_checkbox_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox", "to": "checkbox_checkbox_checkbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_checkbox", "to": "checkbox_checkbox_checkboxprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_index", "to": "checkbox_checkbox", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_index", "to": "checkbox_checkbox_checkboxprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "checkbox_index", "to": "checkbox_checkbox_checkbox", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "checkbox_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_chip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_alltones", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_deletable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_info", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_neutral", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_success", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_stories", "to": "chip_chip_stories_warning", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_test", "to": "chip_chip", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_test", "to": "chip_chip_chip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_test", "to": "chip_chip_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip", "to": "chip_chip_chip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip", "to": "chip_chip_chipprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip", "to": "chip_chip_tone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_chip", "to": "chip_chip_tone_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_index", "to": "chip_chip", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_index", "to": "chip_chip_chipprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chip_index", "to": "chip_chip_chip", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "chip_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_datatable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_columnhelper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_columns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_compact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_empty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_sortable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_sortabletablestory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_stock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "datatable_datatable_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_stories", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_datatable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_columnhelper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_columns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_emptytable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_testtable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "datatable_datatable_test_testtablewithprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable", "to": "datatable_datatable_datatable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable", "to": "datatable_datatable_datatableprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable", "to": "datatable_datatable_density", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_datatable", "to": "datatable_datatable_density_padding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_index", "to": "datatable_datatable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_index", "to": "datatable_datatable_density", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_index", "to": "datatable_datatable_datatableprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datatable_index", "to": "datatable_datatable_datatable", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "datatable_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog_dialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog_stories_interactive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_stories", "to": "dialog_dialog_stories_withactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_test", "to": "dialog_dialog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_test", "to": "dialog_dialog_dialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_test", "to": "dialog_dialog_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog", "to": "dialog_dialog_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_dialog", "to": "dialog_dialog_dialogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_index", "to": "dialog_dialog", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_index", "to": "dialog_dialog_dialogprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dialog_index", "to": "dialog_dialog_dialog", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "dialog_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate_stories_basic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate_stories_minimal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_stories", "to": "emptystate_emptystate_stories_withaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_test", "to": "emptystate_emptystate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_test", "to": "emptystate_emptystate_emptystate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_test", "to": "emptystate_emptystate_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate", "to": "emptystate_emptystate_emptystate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate", "to": "emptystate_emptystate_emptystateprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate", "to": "heading_heading_heading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate", "to": "heading_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate", "to": "text_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_emptystate", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_index", "to": "emptystate_emptystate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_index", "to": "emptystate_emptystate_emptystateprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "emptystate_index", "to": "emptystate_emptystate_emptystate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "emptystate_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate_errorstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate_stories_basic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate_stories_minimal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_stories", "to": "errorstate_errorstate_stories_withretry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_test", "to": "errorstate_errorstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_test", "to": "errorstate_errorstate_errorstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_test", "to": "errorstate_errorstate_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate", "to": "errorstate_errorstate_errorstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate", "to": "errorstate_errorstate_errorstateprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate", "to": "heading_heading_heading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate", "to": "heading_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate", "to": "text_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_errorstate", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_index", "to": "errorstate_errorstate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_index", "to": "errorstate_errorstate_errorstateprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorstate_index", "to": "errorstate_errorstate_errorstate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "errorstate_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "filterbar_filterbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "filterbar_filterbar_filterbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "filterbar_filterbar_stories_basic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "filterbar_filterbar_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "filterbar_filterbar_stories_noactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "filterbar_filterbar_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "select_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "select_select_select", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "textfield_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_stories", "to": "textfield_textfield_textfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_test", "to": "filterbar_filterbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_test", "to": "filterbar_filterbar_filterbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_test", "to": "filterbar_filterbar_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar", "to": "filterbar_filterbar_filterbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_filterbar", "to": "filterbar_filterbar_filterbarprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_index", "to": "filterbar_filterbar", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_index", "to": "filterbar_filterbar_filterbarprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filterbar_index", "to": "filterbar_filterbar_filterbar", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "filterbar_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_formfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_stories_required", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_stories_witherror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_stories_withselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "formfield_formfield_stories_withtextfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "select_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "select_select_select", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "textfield_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_stories", "to": "textfield_textfield_textfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_test", "to": "formfield_formfield", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_test", "to": "formfield_formfield_formfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_test", "to": "formfield_formfield_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield", "to": "formfield_formfield_formfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_formfield", "to": "formfield_formfield_formfieldprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_index", "to": "formfield_formfield", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_index", "to": "formfield_formfield_formfieldprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "formfield_index", "to": "formfield_formfield_formfield", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "formfield_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_heading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_alllevels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_displaysize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_level1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_level2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_level3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_sectionsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_subsectionsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_stories", "to": "heading_heading_stories_titlesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_test", "to": "heading_heading", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_test", "to": "heading_heading_heading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_test", "to": "heading_heading_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading", "to": "heading_heading_heading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading", "to": "heading_heading_headingprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading", "to": "heading_heading_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_heading", "to": "heading_heading_size_variant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_index", "to": "heading_heading", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_index", "to": "heading_heading_headingprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "heading_index", "to": "heading_heading_heading", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate", "to": "heading_heading_heading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "heading_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate", "to": "heading_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_iconbutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_allexamples", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_allsizes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_close", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_delete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_small", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_stories", "to": "iconbutton_iconbutton_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_test", "to": "iconbutton_iconbutton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_test", "to": "iconbutton_iconbutton_iconbutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_test", "to": "iconbutton_iconbutton_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton", "to": "iconbutton_iconbutton_iconbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_iconbutton", "to": "iconbutton_iconbutton_iconbuttonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_index", "to": "iconbutton_iconbutton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_index", "to": "iconbutton_iconbutton_iconbuttonprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "iconbutton_index", "to": "iconbutton_iconbutton_iconbutton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "iconbutton_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_link", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_alltones", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_external", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_negative", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_positive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_stories", "to": "link_link_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_test", "to": "link_link", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_test", "to": "link_link_link", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_test", "to": "link_link_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_index", "to": "link_link", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link", "to": "link_link_link", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link", "to": "link_link_linkprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link", "to": "link_link_tone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_link", "to": "link_link_tone_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_index", "to": "link_link_linkprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "link_index", "to": "link_link_link", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "link_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate_loadingstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate_stories_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate_stories_section", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_stories", "to": "loadingstate_loadingstate_stories_withlabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_test", "to": "loadingstate_loadingstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_test", "to": "loadingstate_loadingstate_loadingstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_test", "to": "loadingstate_loadingstate_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_index", "to": "loadingstate_loadingstate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate", "to": "loadingstate_loadingstate_loadingstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate", "to": "loadingstate_loadingstate_loadingstateprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate", "to": "text_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_loadingstate", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_index", "to": "loadingstate_loadingstate_loadingstateprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loadingstate_index", "to": "loadingstate_loadingstate_loadingstate", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "loadingstate_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric_metric", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric_stories_basic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric_stories_withsupportingtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "metric_metric_stories_withtrend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "pricechange_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_stories", "to": "pricechange_pricechange_pricechange", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_test", "to": "metric_metric", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_test", "to": "metric_metric_metric", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_test", "to": "metric_metric_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_index", "to": "metric_metric", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric", "to": "metric_metric_metric", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric", "to": "metric_metric_metricprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric", "to": "text_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_metric", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_index", "to": "metric_metric_metricprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "metric_index", "to": "metric_metric_metric", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "metric_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_money", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_stories_dollars", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_stories_negative", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_stories_rubles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_stories", "to": "money_money_stories_withsign", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_test", "to": "money_money", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_test", "to": "money_money_money", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_test", "to": "money_money_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_index", "to": "money_money", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money", "to": "money_money_money", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_money", "to": "money_money_moneyprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_index", "to": "money_money_moneyprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "money_index", "to": "money_money_money", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "money_money_money", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "money_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "money_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_pricechange", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_stories_flat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_stories_negative", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_stories_positive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_stories_positivemoney", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_stories", "to": "pricechange_pricechange_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_test", "to": "pricechange_pricechange", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_test", "to": "pricechange_pricechange_pricechange", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_test", "to": "pricechange_pricechange_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_index", "to": "pricechange_pricechange", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "pricechange_pricechange_formatpercent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "pricechange_pricechange_getdirection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "pricechange_pricechange_gettone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "pricechange_pricechange_pricechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "pricechange_pricechange_pricechangeprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "text_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_index", "to": "pricechange_pricechange_pricechangeprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_pricechange", "to": "pricechange_pricechange_formatpercent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_pricechange", "to": "pricechange_pricechange_getdirection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_pricechange_pricechange", "to": "pricechange_pricechange_gettone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pricechange_index", "to": "pricechange_pricechange_pricechange", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "pricechange_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress_progress", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress_stories_almostcomplete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress_stories_determinate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress_stories_indeterminate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_stories", "to": "progress_progress_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_test", "to": "progress_progress", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_test", "to": "progress_progress_progress", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_test", "to": "progress_progress_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_index", "to": "progress_progress", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress", "to": "progress_progress_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_progress", "to": "progress_progress_progressprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_index", "to": "progress_progress_progressprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "progress_index", "to": "progress_progress_progress", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "progress_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_select", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_currencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_disabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_stories", "to": "select_select_stories_withvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_test", "to": "select_select", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_test", "to": "select_select_select", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_test", "to": "select_select_test_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_test", "to": "select_select_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_index", "to": "select_select", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select", "to": "select_select_select", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select", "to": "select_select_selectoption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_select", "to": "select_select_selectprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_index", "to": "select_select_selectoption", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_index", "to": "select_select_selectprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "select_index", "to": "select_select_select", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "select_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_cardskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_circular", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_rectangular", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_rounded", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_stories", "to": "skeleton_skeleton_stories_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_test", "to": "skeleton_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_test", "to": "skeleton_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_test", "to": "skeleton_skeleton_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_index", "to": "skeleton_skeleton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton", "to": "skeleton_skeleton_shape", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton", "to": "skeleton_skeleton_shape_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton", "to": "skeleton_skeleton_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_skeleton", "to": "skeleton_skeleton_skeletonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_index", "to": "skeleton_skeleton_skeletonprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "skeleton_index", "to": "skeleton_skeleton_skeleton", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "skeleton_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_stories_elevated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_stories_largepadding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_stories_nopadding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_stories", "to": "surface_surface_surface", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_test", "to": "surface_surface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_test", "to": "surface_surface_surface", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_test", "to": "surface_surface_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_index", "to": "surface_surface", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface", "to": "surface_surface_elevation_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface", "to": "surface_surface_elevationlevel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface", "to": "surface_surface_padding_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface", "to": "surface_surface_paddingsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface", "to": "surface_surface_surface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_surface", "to": "surface_surface_surfaceprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_index", "to": "surface_surface_surfaceprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surface_index", "to": "surface_surface_surface", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "surface_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_alltones", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_allvariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_caption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_mutedtone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_negativetone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_numeric", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_positivetone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_secondarytone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_stories", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_test", "to": "text_text", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_test", "to": "text_text_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_test", "to": "text_text_text", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_index", "to": "text_text", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text", "to": "text_text_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text", "to": "text_text_textprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text", "to": "text_text_textvariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text", "to": "text_text_tone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text", "to": "text_text_tone_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_text", "to": "text_text_variant_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_index", "to": "text_text_textprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "text_index", "to": "text_text_text", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "text_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_disabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_longrussiantext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_meta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_story", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_stories_withhelpertext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_stories", "to": "textfield_textfield_textfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_test", "to": "textfield_textfield", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_test", "to": "textfield_textfield_test_renderwiththeme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_test", "to": "textfield_textfield_textfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_test", "to": "theme_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield_test", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_index", "to": "textfield_textfield", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield", "to": "textfield_textfield_textfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_textfield", "to": "textfield_textfield_textfieldprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_index", "to": "textfield_textfield_textfieldprops", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "textfield_index", "to": "textfield_textfield_textfield", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_index", "to": "textfield_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_index", "to": "components_index", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_index", "to": "theme_moexvibethemeprovider", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_moexvibethemeprovider", "to": "theme_createmoexvibetheme", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_moexvibethemeprovider", "to": "theme_createmoexvibetheme_createmoexvibetheme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_moexvibethemeprovider", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_moexvibethemeprovider", "to": "theme_moexvibethemeprovider_moexvibethemeproviderprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_moexvibethemeprovider", "to": "theme_moexvibethemeprovider_theme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_index", "to": "theme_moexvibethemeprovider_moexvibethemeprovider", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme_test", "to": "theme_createmoexvibetheme", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme_test", "to": "theme_createmoexvibetheme_createmoexvibetheme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme", "to": "theme_createmoexvibetheme_alltokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme", "to": "theme_createmoexvibetheme_createmoexvibetheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme", "to": "theme_createmoexvibetheme_resolvevalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme", "to": "tokens_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme", "to": "tokens_resolvetoken_resolvetoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_index", "to": "theme_createmoexvibetheme", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme_createmoexvibetheme", "to": "theme_createmoexvibetheme_resolvevalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_createmoexvibetheme_resolvevalue", "to": "tokens_resolvetoken_resolvetoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_index", "to": "theme_createmoexvibetheme_createmoexvibetheme", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_mui_d", "to": "theme_mui_d_palette", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "theme_mui_d", "to": "theme_mui_d_paletteoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_components", "to": "tokens_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_components", "to": "tokens_types_tokencollection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_components", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_primitives", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_resolvetoken", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_resolvetoken_resolvetoken", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_semantic_light", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_types", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_types_resolvedtoken", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_types_tokencollection", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_types_tokendefinition", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_types_tokentype", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_index", "to": "tokens_types_tokenvalue", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_primitives", "to": "tokens_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_primitives", "to": "tokens_types_tokencollection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken_test", "to": "tokens_resolvetoken", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken_test", "to": "tokens_resolvetoken_resolvetoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken_test", "to": "tokens_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken_test", "to": "tokens_types_tokencollection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken", "to": "tokens_resolvetoken_resolvetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken", "to": "tokens_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken", "to": "tokens_types_resolvedtoken", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_resolvetoken", "to": "tokens_types_tokencollection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_semantic_light", "to": "tokens_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_semantic_light", "to": "tokens_types_tokencollection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_types", "to": "tokens_types_resolvedtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_types", "to": "tokens_types_tokencollection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_types", "to": "tokens_types_tokendefinition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_types", "to": "tokens_types_tokentype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tokens_types", "to": "tokens_types_tokenvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig", "to": "design_system_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig", "to": "design_system_tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig", "to": "design_system_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_allowimportingtsextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_declaration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_declarationmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_jsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_moduledetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_nounusedlocals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_nounusedparameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_outdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_rootdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_sourcemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_tsconfig_compileroptions", "to": "design_system_tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base", "to": "tsconfig_base_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_declaration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_declarationmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_forceconsistentcasinginfilenames", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_resolvejsonmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_sourcemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_base_compileroptions", "to": "tsconfig_base_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents", "to": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_code_index_mcp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_serena", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043f\u0440\u043e\u0435\u043a\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_\u043a_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_moexvibe_\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f_\u0434\u043b\u044f_\u0430\u0433\u0435\u043d\u0442\u0430", "to": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_anti_loop_\u043b\u0438\u043c\u0438\u0442_\u043d\u0430_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_definition_of_done_dod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_git_workflow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_pre_flight_checklist_\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u0435\u043d_\u043f\u0435\u0440\u0435\u0434_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439_\u043b\u044e\u0431\u043e\u0439_\u0444\u0438\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_sdd_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u044f_\u043a\u043e\u043c\u043c\u0438\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_ai_\u0430\u0433\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0431\u043e\u0442\u044b_\u043d\u0430\u0434_\u0444\u0438\u0447\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u043d\u043e\u0432\u044b\u043c\u0438_\u0438\u0434\u0435\u044f\u043c\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438_\u0444\u0438\u0447\u0430\u043c\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_epics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_features_feature_name_plan_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_features_feature_name_spec_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_features_feature_name_tasks_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_inbox_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_research", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "agents_roadmap_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u0431\u0430\u0433\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u043e_5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_adr_\u043f\u0440\u043e\u0446\u0435\u0441\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_\u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f_openapi_\u0442\u0438\u043f\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f\u043c\u0438_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "to": "agents_\u0446\u0438\u043a\u043b_\u0440\u0430\u0431\u043e\u0442\u044b_\u043d\u0430\u0434_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043f\u0440\u043e\u0435\u043a\u0442\u0430", "to": "agents_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043f\u0440\u043e\u0435\u043a\u0442\u0430", "to": "agents_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "agents_\u0431\u044d\u043a\u0435\u043d\u0434", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "agents_\u0441\u0442\u0438\u043b\u044c_\u043a\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "agents_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "readme_moexvibe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_docker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u043e_\u043f\u0440\u043e\u0435\u043a\u0442\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u0441\u0442\u0435\u043a_\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043f\u0440\u043e\u0435\u043a\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_moexvibe", "to": "readme_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_001_backend_single_point_of_access", "to": "adr_adr_001_backend_single_point_of_access_adr_001_backend_\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f_\u0442\u043e\u0447\u043a\u0430_\u0434\u043e\u0441\u0442\u0443\u043f\u0430_\u043a_moex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_001_backend_single_point_of_access", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_001_backend_single_point_of_access", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_001_backend_single_point_of_access_adr_001_backend_\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f_\u0442\u043e\u0447\u043a\u0430_\u0434\u043e\u0441\u0442\u0443\u043f\u0430_\u043a_moex", "to": "adr_adr_001_backend_single_point_of_access_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_001_backend_single_point_of_access_adr_001_backend_\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f_\u0442\u043e\u0447\u043a\u0430_\u0434\u043e\u0441\u0442\u0443\u043f\u0430_\u043a_moex", "to": "adr_adr_001_backend_single_point_of_access_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_001_backend_single_point_of_access_adr_001_backend_\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f_\u0442\u043e\u0447\u043a\u0430_\u0434\u043e\u0441\u0442\u0443\u043f\u0430_\u043a_moex", "to": "adr_adr_001_backend_single_point_of_access_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_002_in_memory_cache", "to": "adr_adr_002_in_memory_cache_adr_002_in_memory_cache_\u0441_\u043f\u0443\u0442\u0451\u043c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_redis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_002_in_memory_cache", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_002_in_memory_cache", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_002_in_memory_cache_adr_002_in_memory_cache_\u0441_\u043f\u0443\u0442\u0451\u043c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_redis", "to": "adr_adr_002_in_memory_cache_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_002_in_memory_cache_adr_002_in_memory_cache_\u0441_\u043f\u0443\u0442\u0451\u043c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_redis", "to": "adr_adr_002_in_memory_cache_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_002_in_memory_cache_adr_002_in_memory_cache_\u0441_\u043f\u0443\u0442\u0451\u043c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_redis", "to": "adr_adr_002_in_memory_cache_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_003_rate_limiting_strategy", "to": "adr_adr_003_rate_limiting_strategy_adr_003_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_rate_limiting_\u0434\u043b\u044f_moex_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_003_rate_limiting_strategy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_003_rate_limiting_strategy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_003_rate_limiting_strategy_adr_003_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_rate_limiting_\u0434\u043b\u044f_moex_client", "to": "adr_adr_003_rate_limiting_strategy_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_003_rate_limiting_strategy_adr_003_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_rate_limiting_\u0434\u043b\u044f_moex_client", "to": "adr_adr_003_rate_limiting_strategy_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_003_rate_limiting_strategy_adr_003_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_rate_limiting_\u0434\u043b\u044f_moex_client", "to": "adr_adr_003_rate_limiting_strategy_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_004_feature_modules", "to": "adr_adr_004_feature_modules_adr_004_feature_\u043c\u043e\u0434\u0443\u043b\u0438_\u043f\u043e_\u0434\u043e\u043c\u0435\u043d\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_004_feature_modules", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_004_feature_modules", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_004_feature_modules_adr_004_feature_\u043c\u043e\u0434\u0443\u043b\u0438_\u043f\u043e_\u0434\u043e\u043c\u0435\u043d\u0430\u043c", "to": "adr_adr_004_feature_modules_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_004_feature_modules_adr_004_feature_\u043c\u043e\u0434\u0443\u043b\u0438_\u043f\u043e_\u0434\u043e\u043c\u0435\u043d\u0430\u043c", "to": "adr_adr_004_feature_modules_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_004_feature_modules_adr_004_feature_\u043c\u043e\u0434\u0443\u043b\u0438_\u043f\u043e_\u0434\u043e\u043c\u0435\u043d\u0430\u043c", "to": "adr_adr_004_feature_modules_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_005_openapi_codegen_frontend", "to": "adr_adr_005_openapi_codegen_frontend_adr_005_openapi_codegen_\u0447\u0435\u0440\u0435\u0437_openapi_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_005_openapi_codegen_frontend", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_005_openapi_codegen_frontend", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_005_openapi_codegen_frontend_adr_005_openapi_codegen_\u0447\u0435\u0440\u0435\u0437_openapi_typescript", "to": "adr_adr_005_openapi_codegen_frontend_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_005_openapi_codegen_frontend_adr_005_openapi_codegen_\u0447\u0435\u0440\u0435\u0437_openapi_typescript", "to": "adr_adr_005_openapi_codegen_frontend_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_005_openapi_codegen_frontend_adr_005_openapi_codegen_\u0447\u0435\u0440\u0435\u0437_openapi_typescript", "to": "adr_adr_005_openapi_codegen_frontend_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_006_no_cci", "to": "adr_adr_006_no_cci_adr_006_cci_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f_\u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c_\u0432\u044b\u043d\u0435\u0441\u0435\u043d_\u0437\u0430_\u043f\u0440\u0435\u0434\u0435\u043b\u044b_mvp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_006_no_cci", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_006_no_cci", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_006_no_cci_adr_006_cci_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f_\u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c_\u0432\u044b\u043d\u0435\u0441\u0435\u043d_\u0437\u0430_\u043f\u0440\u0435\u0434\u0435\u043b\u044b_mvp", "to": "adr_adr_006_no_cci_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_006_no_cci_adr_006_cci_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f_\u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c_\u0432\u044b\u043d\u0435\u0441\u0435\u043d_\u0437\u0430_\u043f\u0440\u0435\u0434\u0435\u043b\u044b_mvp", "to": "adr_adr_006_no_cci_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_006_no_cci_adr_006_cci_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u0430\u044f_\u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c_\u0432\u044b\u043d\u0435\u0441\u0435\u043d_\u0437\u0430_\u043f\u0440\u0435\u0434\u0435\u043b\u044b_mvp", "to": "adr_adr_006_no_cci_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_007_two_level_caching", "to": "adr_adr_007_two_level_caching_adr_007_\u0434\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_backend_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_007_two_level_caching", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_007_two_level_caching", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_007_two_level_caching_adr_007_\u0434\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_backend_frontend", "to": "adr_adr_007_two_level_caching_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_007_two_level_caching_adr_007_\u0434\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_backend_frontend", "to": "adr_adr_007_two_level_caching_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_007_two_level_caching_adr_007_\u0434\u0432\u0443\u0445\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u043e\u0435_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_backend_frontend", "to": "adr_adr_007_two_level_caching_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system", "to": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_008_auth_system", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_008_auth_system", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "to": "adr_adr_008_auth_system_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "to": "adr_adr_008_auth_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "to": "adr_adr_008_auth_system_\u043f\u0443\u0442\u044c_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "to": "adr_adr_008_auth_system_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_adr_008_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_authentication_\u0438_authorization", "to": "adr_adr_008_auth_system_\u0441\u0442\u0430\u0442\u0443\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_008_auth_system_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_008_auth_system_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_008_auth_system_\u043c\u0438\u043d\u0443\u0441\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_008_auth_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_008_auth_system_\u043f\u043b\u044e\u0441\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_009_portfolio_domain", "to": "adr_adr_009_portfolio_domain_adr_009_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_009_portfolio_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_009_portfolio_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_009_portfolio_domain_adr_009_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "adr_adr_009_portfolio_domain_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_009_portfolio_domain_adr_009_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "adr_adr_009_portfolio_domain_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_009_portfolio_domain_adr_009_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "adr_adr_009_portfolio_domain_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_009_portfolio_domain_adr_009_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "adr_adr_009_portfolio_domain_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_010_backend_price_computation", "to": "adr_adr_010_backend_price_computation_adr_010_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d_\u043d\u0430_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_010_backend_price_computation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "adr_adr_010_backend_price_computation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_010_backend_price_computation_adr_010_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d_\u043d\u0430_backend", "to": "adr_adr_010_backend_price_computation_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_010_backend_price_computation_adr_010_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d_\u043d\u0430_backend", "to": "adr_adr_010_backend_price_computation_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_010_backend_price_computation_adr_010_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d_\u043d\u0430_backend", "to": "adr_adr_010_backend_price_computation_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_010_backend_price_computation_adr_010_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d_\u043d\u0430_backend", "to": "adr_adr_010_backend_price_computation_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_011_tbank_invest_grpc", "to": "adr_adr_011_tbank_invest_grpc_adr_011_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_t_bank_invest_\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442_grpc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_011_tbank_invest_grpc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_011_tbank_invest_grpc_adr_011_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_t_bank_invest_\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442_grpc", "to": "adr_adr_011_tbank_invest_grpc_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_011_tbank_invest_grpc_adr_011_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_t_bank_invest_\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442_grpc", "to": "adr_adr_011_tbank_invest_grpc_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_011_tbank_invest_grpc_adr_011_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_t_bank_invest_\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442_grpc", "to": "adr_adr_011_tbank_invest_grpc_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_011_tbank_invest_grpc_adr_011_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_t_bank_invest_\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442_grpc", "to": "adr_adr_011_tbank_invest_grpc_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation", "to": "adr_adr_012_frontend_broker_account_aggregation_adr_012_\u0441\u0432\u043e\u0434\u043a\u0430_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f_\u043d\u0430_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_012_frontend_broker_account_aggregation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec", "to": "adr_adr_012_frontend_broker_account_aggregation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_adr_012_\u0441\u0432\u043e\u0434\u043a\u0430_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f_\u043d\u0430_frontend", "to": "adr_adr_012_frontend_broker_account_aggregation_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_adr_012_\u0441\u0432\u043e\u0434\u043a\u0430_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f_\u043d\u0430_frontend", "to": "adr_adr_012_frontend_broker_account_aggregation_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_adr_012_\u0441\u0432\u043e\u0434\u043a\u0430_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f_\u043d\u0430_frontend", "to": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_adr_012_\u0441\u0432\u043e\u0434\u043a\u0430_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0430\u0433\u0440\u0435\u0433\u0438\u0440\u0443\u0435\u0442\u0441\u044f_\u043d\u0430_frontend", "to": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_012_frontend_broker_account_aggregation_1_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445_\u043e\u0442\u0432\u0435\u0442\u043e\u0432_\u043d\u0430_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_012_frontend_broker_account_aggregation_2_\u043d\u043e\u0432\u044b\u0439_aggregate_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_012_frontend_broker_account_aggregation_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_012_frontend_broker_account_aggregation_3_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435_endpoint_\u0441\u043f\u0438\u0441\u043a\u0430_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot", "to": "adr_adr_013_frontend_fsd_broker_pilot_adr_013_frontend_fsd_broker_pilot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_013_frontend_fsd_broker_pilot", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_adr_013_frontend_fsd_broker_pilot", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_adr_013_frontend_fsd_broker_pilot", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_adr_013_frontend_fsd_broker_pilot", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_adr_013_frontend_fsd_broker_pilot", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u0432\u0430\u0440\u0438\u0430\u043d\u0442_a_\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439_broker_pilot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u0432\u0430\u0440\u0438\u0430\u043d\u0442_b_fsd_shell_\u0431\u0435\u0437_\u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430_\u0434\u043e\u043c\u0435\u043d\u043d\u043e\u0439_query_\u043b\u043e\u0433\u0438\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_013_frontend_fsd_broker_pilot_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_013_frontend_fsd_broker_pilot_\u0432\u0430\u0440\u0438\u0430\u043d\u0442_c_\u043c\u0430\u0441\u0441\u043e\u0432\u0430\u044f_frontend_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages", "to": "adr_adr_014_frontend_fsd_market_pages_adr_014_frontend_fsd_market_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_014_frontend_fsd_market_pages", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_adr_014_frontend_fsd_market_pages", "to": "adr_adr_014_frontend_fsd_market_pages_consequences", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_adr_014_frontend_fsd_market_pages", "to": "adr_adr_014_frontend_fsd_market_pages_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_adr_014_frontend_fsd_market_pages", "to": "adr_adr_014_frontend_fsd_market_pages_decision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_adr_014_frontend_fsd_market_pages", "to": "adr_adr_014_frontend_fsd_market_pages_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_options", "to": "adr_adr_014_frontend_fsd_market_pages_option_a_\u043f\u043e\u043b\u043d\u0430\u044f_market_fsd_migration_\u0441_coexistence_\u0447\u0435\u0440\u0435\u0437_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_options", "to": "adr_adr_014_frontend_fsd_market_pages_option_b_\u0447\u0430\u0441\u0442\u0438\u0447\u043d\u044b\u0439_\u043f\u0435\u0440\u0435\u043d\u043e\u0441_\u0442\u043e\u043b\u044c\u043a\u043e_ui_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_014_frontend_fsd_market_pages_options", "to": "adr_adr_014_frontend_fsd_market_pages_option_c_\u0443\u0441\u043a\u043e\u0440\u0435\u043d\u043d\u0430\u044f_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0431\u0435\u0437_shim_\u0441\u043b\u043e\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization", "to": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_015_frontend_libraries_modernization", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "to": "adr_adr_015_frontend_libraries_modernization_\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u044b_\u043a\u043e\u0442\u043e\u0440\u044b\u0435_\u0431\u044b\u043b\u0438_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "to": "adr_adr_015_frontend_libraries_modernization_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "to": "adr_adr_015_frontend_libraries_modernization_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "to": "adr_adr_015_frontend_libraries_modernization_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "to": "adr_adr_015_frontend_libraries_modernization_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_adr_015_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430_\u0432\u044b\u0431\u043e\u0440_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "to": "adr_adr_015_frontend_libraries_modernization_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_015_frontend_libraries_modernization_\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435_http_\u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_015_frontend_libraries_modernization_\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435_state_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_015_frontend_libraries_modernization_\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435_ui_\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_015_frontend_libraries_modernization_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0434_decisions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_015_frontend_libraries_modernization_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0441_fsd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_015_frontend_libraries_modernization_\u043e\u0431\u0440\u0430\u0442\u043d\u0430\u044f_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_015_frontend_libraries_modernization_\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_015_frontend_libraries_modernization_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_015_frontend_libraries_modernization_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_015_frontend_libraries_modernization_\u0440\u0438\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system", "to": "adr_adr_016_design_system_adr_016_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_theme_wrapper_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_016_design_system", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview", "to": "adr_adr_016_design_system", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_adr_016_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_theme_wrapper_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "adr_adr_016_design_system_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_adr_016_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_theme_wrapper_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "adr_adr_016_design_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_adr_016_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_theme_wrapper_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "adr_adr_016_design_system_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_adr_016_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439_\u043f\u043e\u0434\u0445\u043e\u0434_theme_wrapper_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "adr_adr_016_design_system_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_016_design_system_1_theme_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_016_design_system_2_hybrid_\u0432\u044b\u0431\u0440\u0430\u043d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_016_design_system_3_full_wrapper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_016_design_system_future", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_016_design_system_\u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_016_design_system_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_016_design_system_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter", "to": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_017_biome_linter_formatter", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_adr_017_biome_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442_\u043b\u0438\u043d\u0442\u0438\u043d\u0433\u0430_\u0438_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_017_biome_linter_formatter_biome_v2_5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_017_biome_linter_formatter_oxlint_oxfmt_oxc_project", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_017_biome_linter_formatter_\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c_eslint_prettier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_017_biome_linter_formatter_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_017_biome_linter_formatter_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_017_biome_linter_formatter_\u0440\u0438\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router", "to": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_018_tanstack_router", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "to": "adr_adr_018_tanstack_router_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "to": "adr_adr_018_tanstack_router_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "to": "adr_adr_018_tanstack_router_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "to": "adr_adr_018_tanstack_router_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_adr_018_tanstack_router_\u043a\u0430\u043a_\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439_\u0440\u043e\u0443\u0442\u0435\u0440", "to": "adr_adr_018_tanstack_router_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_018_tanstack_router_react_router_dom_v6_react_lazy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "adr_adr_018_tanstack_router_tanstack_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_018_tanstack_router_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_018_tanstack_router_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_018_tanstack_router_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_018_tanstack_router_\u0440\u0438\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification", "to": "adr_adr_019_api_layer_unification_adr_019_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_api_\u0441\u043b\u043e\u044f_ky_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_adr_019_api_layer_unification", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_adr_019_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_api_\u0441\u043b\u043e\u044f_ky_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "to": "adr_adr_019_api_layer_unification_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_adr_019_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_api_\u0441\u043b\u043e\u044f_ky_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "to": "adr_adr_019_api_layer_unification_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_adr_019_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_api_\u0441\u043b\u043e\u044f_ky_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "to": "adr_adr_019_api_layer_unification_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_adr_019_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_api_\u0441\u043b\u043e\u044f_ky_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "to": "adr_adr_019_api_layer_unification_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_019_api_layer_unification_1_ky_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_http_\u043a\u043b\u0438\u0435\u043d\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_019_api_layer_unification_2_openapi_codegen_\u043a\u0430\u043a_\u0435\u0434\u0438\u043d\u044b\u0439_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0442\u0438\u043f\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_019_api_layer_unification_3_msw_browser_mode_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "to": "adr_adr_019_api_layer_unification_4_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_019_api_layer_unification_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_adr_019_api_layer_unification_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "to": "adr_adr_019_api_layer_unification_\u0440\u0438\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "adr_index", "to": "adr_index_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture", "to": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430_\u0441\u0438\u0441\u0442\u0435\u043c\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "docs_architecture_\u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0435_\u043c\u043e\u0434\u0443\u043b\u0438_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "docs_architecture_\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0430\u044f_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "docs_architecture_\u043f\u043e\u0442\u043e\u043a_\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e_\u0437\u0430\u043f\u0440\u043e\u0441\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_architecture_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "docs_architecture_\u0444\u043e\u0440\u043c\u0430\u0442_\u043e\u0442\u0432\u0435\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api", "to": "backend_api_api_reference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_bonds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_broker_t_bank_invest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_candles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_health", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_securities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_shares", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_api_reference", "to": "backend_api_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_auth", "to": "backend_api_get_auth_me", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_auth", "to": "backend_api_patch_auth_me", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_auth", "to": "backend_api_post_auth_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_auth", "to": "backend_api_post_auth_logout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_auth", "to": "backend_api_post_auth_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_auth", "to": "backend_api_post_auth_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_health", "to": "backend_api_get_health", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_securities", "to": "backend_api_get_securities_screener", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_securities", "to": "backend_api_get_securities_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_shares", "to": "backend_api_get_securities_shares_secid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_shares", "to": "backend_api_get_securities_shares_secid_dividends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_shares", "to": "backend_api_get_securities_shares_secid_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_shares", "to": "backend_api_get_securities_shares_secid_marketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_bonds", "to": "backend_api_get_securities_bonds_secid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_bonds", "to": "backend_api_get_securities_bonds_secid_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_bonds", "to": "backend_api_get_securities_bonds_secid_marketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_candles", "to": "backend_api_get_securities_bonds_secid_candles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_api_candles", "to": "backend_api_get_securities_shares_secid_candles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth", "to": "backend_auth_authentication_\u0438_authorization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_authentication_\u0438_authorization", "to": "backend_auth_api_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_authentication_\u0438_authorization", "to": "backend_auth_authorization_rbac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_authentication_\u0438_authorization", "to": "backend_auth_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_authentication_\u0438_authorization", "to": "backend_auth_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "backend_auth_token_based_authentication", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "backend_auth_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "backend_auth_\u043f\u043e\u0442\u043e\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_api_endpoints", "to": "backend_auth_get_auth_me", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_api_endpoints", "to": "backend_auth_patch_auth_me", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_api_endpoints", "to": "backend_auth_post_auth_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_api_endpoints", "to": "backend_auth_post_auth_logout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_api_endpoints", "to": "backend_auth_post_auth_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_auth_api_endpoints", "to": "backend_auth_post_auth_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching", "to": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "backend_caching_cacheservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "backend_caching_t_bank_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "backend_caching_ttl_\u043f\u043e_\u0442\u0438\u043f\u0430\u043c_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "backend_caching_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f_cachemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "backend_caching_\u043f\u043e\u0442\u043e\u043a_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_caching_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "backend_caching_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_configuration", "to": "backend_configuration_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_configuration_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "to": "backend_configuration_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_configuration_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f", "to": "backend_configuration_\u0444\u0430\u0439\u043b_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database", "to": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "backend_database_prisma_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "backend_database_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "backend_database_\u043e\u0431\u0437\u043e\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "backend_database_\u0441\u0445\u0435\u043c\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0441\u0445\u0435\u043c\u0430_\u0431\u0430\u0437\u044b_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "backend_database_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "to": "backend_database_portfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "to": "backend_database_position", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_database_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "to": "backend_database_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules", "to": "backend_modules_\u043c\u043e\u0434\u0443\u043b\u0438_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u043c\u043e\u0434\u0443\u043b\u0438_backend", "to": "backend_modules_\u0433\u0440\u0430\u0444_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u043c\u043e\u0434\u0443\u043b\u0438_backend", "to": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0433\u0440\u0430\u0444_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438_\u043e\u0442_\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0433\u0440\u0430\u0444_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_appmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_authmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_bondsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_cachemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_candlesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_healthmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_moexclientmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_portfoliomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_prismamodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_securitiesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_sharesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_modules_\u0441\u043f\u0438\u0441\u043e\u043a_\u043c\u043e\u0434\u0443\u043b\u0435\u0439", "to": "backend_modules_tbankmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client", "to": "backend_moex_client_moex_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_circuit_breaker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_moex_iss_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_rate_limiting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435_\u043c\u0435\u0442\u043e\u0434\u044b_moex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_\u043c\u0435\u0442\u043e\u0434_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_\u043e\u0431\u0437\u043e\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_moex_client_moex_client", "to": "backend_moex_client_\u0440\u0430\u0437\u0431\u043e\u0440_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_overview", "to": "backend_overview_\u043e\u0431\u0437\u043e\u0440_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_overview_\u043e\u0431\u0437\u043e\u0440_backend", "to": "backend_overview_\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439_\u043c\u043e\u0434\u0443\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_overview_\u043e\u0431\u0437\u043e\u0440_backend", "to": "backend_overview_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_overview_\u043e\u0431\u0437\u043e\u0440_backend", "to": "backend_overview_\u0442\u043e\u0447\u043a\u0430_\u0432\u0445\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio", "to": "backend_portfolio_portfoliomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_analytics_\u0438_pnl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_api_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u0431\u0443\u0434\u0443\u0449\u0438\u0435_\u044d\u0442\u0430\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u0432\u044b\u0431\u043e\u0440_moex_board", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u043e\u0431\u0437\u043e\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u0442\u0438\u043f\u0430_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d\u044b_\u0430\u043a\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u0440\u0430\u0441\u0447\u0451\u0442_\u0446\u0435\u043d\u044b_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_portfolio_portfoliomodule", "to": "backend_portfolio_\u0440\u0443\u0447\u043d\u044b\u0435_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438_\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0435_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_securities", "to": "backend_securities_securitiesmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_securities_securitiesmodule", "to": "backend_securities_search_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_securities_securitiesmodule", "to": "backend_securities_security_screener", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_securities_securitiesmodule", "to": "backend_securities_\u043e\u0431\u0437\u043e\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_securities_security_screener", "to": "backend_securities_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_securities_security_screener", "to": "backend_securities_\u0434\u0435\u0442\u0430\u043b\u0438_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest", "to": "backend_tbank_invest_t_bank_invest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_backend_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_rate_limiting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0438_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_\u043c\u0435\u0442\u043e\u0434\u044b_t_bank", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_\u043f\u043e\u0442\u043e\u043a_\u0434\u0430\u043d\u043d\u044b\u0445_\u0434\u043b\u044f_events", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tbank_invest_t_bank_invest", "to": "backend_tbank_invest_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility", "to": "design_system_accessibility_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c_accessibility", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c_accessibility", "to": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c_accessibility", "to": "design_system_accessibility_\u0446\u0435\u043b\u0435\u0432\u043e\u0439_\u0443\u0440\u043e\u0432\u0435\u043d\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_alert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_datatable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_iconbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_loadingstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_pricechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_accessibility_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f_\u043a_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c", "to": "design_system_accessibility_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components", "to": "design_system_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview", "to": "design_system_components", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "design_system_components_\u043c\u0430\u0442\u0440\u0438\u0446\u0430_\u0437\u0430\u0434\u0430\u0447\u0430_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_alert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_badge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_checkbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_chip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_datatable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_emptystate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_errorstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_filterbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_formfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_heading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_iconbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_link", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_loadingstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_metric", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_money", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_pricechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_select", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_surface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_components_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "design_system_components_textfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations", "to": "design_system_foundations_\u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u043a\u0435\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview", "to": "design_system_foundations", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations_\u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u043a\u0435\u043d\u044b", "to": "design_system_foundations_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations_\u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u043a\u0435\u043d\u044b", "to": "design_system_foundations_\u0440\u0435\u0437\u043e\u043b\u0432\u0435\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations_\u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u043a\u0435\u043d\u044b", "to": "design_system_foundations_\u0442\u043e\u043a\u0435\u043d\u044b_v1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "design_system_foundations_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "design_system_foundations_primitives", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundations_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "to": "design_system_foundations_semantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_governance", "to": "design_system_governance_\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_governance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_governance_\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_governance", "to": "design_system_governance_breaking_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_governance_\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_governance", "to": "design_system_governance_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_mui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_governance_\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_governance", "to": "design_system_governance_\u043f\u0440\u043e\u0446\u0435\u0441\u0441_\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_governance_\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_governance", "to": "design_system_governance_\u0440\u0435\u0436\u0438\u043c_v1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview", "to": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_styling", "to": "design_system_overview", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "design_system_overview_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "design_system_overview_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430_\u0442\u043e\u043a\u0435\u043d\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "design_system_overview_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "design_system_overview_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_overview_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "design_system_overview_\u0447\u0442\u043e_\u044d\u0442\u043e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns", "to": "design_system_patterns_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "to": "design_system_patterns_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "to": "design_system_patterns_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "to": "design_system_patterns_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0434\u0430\u043d\u043d\u044b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b", "to": "design_system_patterns_\u0444\u043e\u0440\u043c\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0434\u0430\u043d\u043d\u044b\u0435", "to": "design_system_patterns_metric", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0434\u0430\u043d\u043d\u044b\u0435", "to": "design_system_patterns_money", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0434\u0430\u043d\u043d\u044b\u0435", "to": "design_system_patterns_pricechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0444\u043e\u0440\u043c\u044b", "to": "design_system_patterns_filterbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0444\u043e\u0440\u043c\u044b", "to": "design_system_patterns_formfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "to": "design_system_patterns_emptystate_errorstate_loadingstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_patterns_\u0442\u0430\u0431\u043b\u0438\u0446\u044b", "to": "design_system_patterns_datatable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen", "to": "development_codegen_\u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen_\u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u0434\u0430", "to": "development_codegen_openapi_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen_openapi_types", "to": "development_codegen_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen_openapi_types", "to": "development_codegen_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen_openapi_types", "to": "development_codegen_\u0440\u0443\u0447\u043d\u044b\u0435_\u0442\u0438\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen_openapi_types", "to": "development_codegen_\u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0442\u0438\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_codegen_openapi_types", "to": "development_codegen_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands", "to": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "to": "development_commands_backend_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "to": "development_commands_design_system_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "to": "development_commands_docs_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "to": "development_commands_frontend_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "to": "development_commands_\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_commands_\u043a\u043e\u043c\u0430\u043d\u0434\u044b", "to": "development_commands_\u043e\u0434\u0438\u043d_\u0442\u0435\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions", "to": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_imports_\u0432_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_imports_\u0432_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_linting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435_\u0432_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_conventions_\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f_\u043f\u043e_\u043a\u043e\u0434\u0443", "to": "development_conventions_\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing", "to": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "development_testing_live_moex_integration_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "development_testing_storybook_browser_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "development_testing_\u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "development_testing_\u0442\u0435\u0441\u0442\u044b_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "development_testing_\u0442\u0435\u0441\u0442\u044b_design_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "to": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_backend", "to": "development_testing_watch_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_backend", "to": "development_testing_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u0432\u0441\u0435_\u0442\u0435\u0441\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_backend", "to": "development_testing_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u043e\u0434\u0438\u043d_\u0442\u0435\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "to": "development_testing_helpers_src_shared_lib_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "to": "development_testing_\u0437\u0430\u043f\u0443\u0441\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "to": "development_testing_\u043a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "to": "development_testing_\u043f\u043e\u043a\u0440\u044b\u0442\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "development_testing_\u0442\u0435\u0441\u0442\u044b_frontend", "to": "development_testing_\u0448\u0430\u0431\u043b\u043e\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_api_client", "to": "frontend_api_client_api_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_api_client_api_client", "to": "frontend_api_client_api_functions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_api_client_api_client", "to": "frontend_api_client_public_api_shared_api_index_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_api_client_api_client", "to": "frontend_api_client_\u043a\u043b\u0438\u0435\u043d\u0442_shared_api_kyclient_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_api_client_api_client", "to": "frontend_api_client_\u0442\u0438\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components", "to": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_bonddetails_widgets_bond_details_ui_bonddetails_tsx_public_api_widgets_bond_details", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_brokereventsoverview_widgets_broker_events_overview_ui_brokereventsoverview_tsx_public_api_widgets_broker_events_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_dividendstable_widgets_dividends_table_ui_dividendstable_tsx_public_api_widgets_dividends_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_layout_app_layouts_applayout_tsx_legacy_shim_components_layout_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_pricechart_widgets_price_chart_ui_pricechart_tsx_public_api_widgets_price_chart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_searchbar_widgets_search_bar_ui_searchbar_tsx_public_api_widgets_search_bar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_components_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "to": "frontend_components_stockdetails_widgets_stock_details_ui_stockdetails_tsx_public_api_widgets_stock_details", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_hooks", "to": "frontend_hooks_\u0445\u0443\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_hooks_\u0445\u0443\u043a\u0438", "to": "frontend_hooks_public_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_hooks_\u0445\u0443\u043a\u0438", "to": "frontend_hooks_test_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_hooks_\u0445\u0443\u043a\u0438", "to": "frontend_hooks_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_hooks_\u0445\u0443\u043a\u0438", "to": "frontend_hooks_\u043f\u0430\u0442\u0442\u0435\u0440\u043d_hook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview", "to": "frontend_overview_\u043e\u0431\u0437\u043e\u0440_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_\u043e\u0431\u0437\u043e\u0440_frontend", "to": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_\u043e\u0431\u0437\u043e\u0440_frontend", "to": "frontend_overview_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0438\u0441\u0445\u043e\u0434\u043d\u0438\u043a\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_\u043e\u0431\u0437\u043e\u0440_frontend", "to": "frontend_overview_\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0441\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_app_\u0441\u043b\u043e\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_entities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_features", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_runtime_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_test_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_overview_fsd_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f", "to": "frontend_overview_widgets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_routes", "to": "frontend_routes_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_routes_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u044b", "to": "frontend_routes_\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_routes_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u044b", "to": "frontend_routes_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_styling", "to": "frontend_styling_\u0441\u0442\u0438\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_styling_\u0441\u0442\u0438\u043b\u0438", "to": "frontend_styling_css_custom_properties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_styling_\u0441\u0442\u0438\u043b\u0438", "to": "frontend_styling_legacy_css_custom_properties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_styling_\u0441\u0442\u0438\u043b\u0438", "to": "frontend_styling_\u043f\u043e\u0434\u0445\u043e\u0434", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_getting_started", "to": "docs_getting_started_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_getting_started_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "to": "docs_getting_started_docker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_getting_started_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "to": "docs_getting_started_\u0437\u0430\u043f\u0443\u0441\u043a_\u0434\u043b\u044f_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_getting_started_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "to": "docs_getting_started_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_getting_started_\u0431\u044b\u0441\u0442\u0440\u044b\u0439_\u0441\u0442\u0430\u0440\u0442", "to": "docs_getting_started_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_ci", "to": "infrastructure_ci_ci_cd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_ci_ci_cd", "to": "infrastructure_ci_ci_pipeline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_ci_ci_cd", "to": "infrastructure_ci_jobs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker", "to": "infrastructure_docker_docker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_docker", "to": "infrastructure_docker_docker_compose_docker_compose_yml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_docker", "to": "infrastructure_docker_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_docker", "to": "infrastructure_docker_\u0437\u0430\u043f\u0443\u0441\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_docker", "to": "infrastructure_docker_\u0441\u0435\u0440\u0432\u0438\u0441\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_\u0441\u0435\u0440\u0432\u0438\u0441\u044b", "to": "infrastructure_docker_backend_dockerfile_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_\u0441\u0435\u0440\u0432\u0438\u0441\u044b", "to": "infrastructure_docker_frontend_dockerfile_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "infrastructure_docker_\u0441\u0435\u0440\u0432\u0438\u0441\u044b", "to": "infrastructure_docker_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f_nginx_nginx_conf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_intro", "to": "docs_intro_moexvibe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_intro_moexvibe", "to": "docs_intro_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_intro_moexvibe", "to": "docs_intro_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_intro_moexvibe", "to": "docs_intro_\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0441\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme", "to": "test_readme_frontend_testing_conventions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_frontend_testing_conventions", "to": "test_readme_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_frontend_testing_conventions", "to": "test_readme_msw", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_frontend_testing_conventions", "to": "test_readme_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_helpers", "to": "test_readme_factories_factories_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_helpers", "to": "test_readme_plain_render", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_helpers", "to": "test_readme_renderwithproviders_test_utils_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_readme_helpers", "to": "test_readme_testsessionprovider_testsessionprovider_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "epics_authentication", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_authentication", "to": "epics_authentication_\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "epics_brokerportfolio", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio", "to": "broker_operations_ui_improvements_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio", "to": "broker_portfolio_display_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio", "to": "broker_positions_pagination_and_loading_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio", "to": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio", "to": "tbank_broker_portfolios_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio", "to": "tbank_deadline_queue_fix_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "epics_brokerportfolio_features", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "epics_brokerportfolio_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u044d\u043f\u0438\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "epics_brokerportfolio_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0439_\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f_\u044d\u043f\u0438\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "epics_brokerportfolio_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f_\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_brokerportfolio_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "epics_brokerportfolio_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "epics_devops", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_devops", "to": "ci_cd_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_devops", "to": "epics_devops_developer_operations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_devops", "to": "pre_commit_checks_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "epics_documentation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_documentation", "to": "docusaurus_docs_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_documentation", "to": "epics_documentation_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_documentation", "to": "russian_docs_and_architecture_diagrams_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_frontenddebtbacklog", "to": "epics_frontenddebtbacklog_frontend_debt_backlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_frontenddebtbacklog", "to": "frontend_debt_audit_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_frontenddebtbacklog", "to": "frontend_docs_sync_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_frontenddebtbacklog", "to": "frontend_infrastructure_hardening_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_frontenddebtbacklog", "to": "frontend_shared_boundary_cleanup_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_frontenddebtbacklog", "to": "frontend_test_hygiene_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "epics_portfoliodashboard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "epics_portfoliodashboard_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "pagination_loading_overlay_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "portfolio_allocation_chart_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "portfolio_analytics_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "portfolio_enricher_optimization_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "portfolio_list_enrichment_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard", "to": "portfolio_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "to": "epics_portfoliodashboard_features", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_portfoliodashboard_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "to": "epics_portfoliodashboard_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "epics_qualityassurance", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_qualityassurance", "to": "epics_qualityassurance_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_qualityassurance", "to": "frontend_test_coverage_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "epics_qualityassurance", "to": "quality_gate_contract_docs_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_system_plan", "to": "auth_system_plan_auth_system_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_system_plan_auth_system_implementation_plan", "to": "auth_system_plan_task_1_backend_dependencies_prisma_init", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_system_plan_auth_system_implementation_plan", "to": "auth_system_plan_task_2_authservice_register_login_refresh_logout_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_system_plan_auth_system_implementation_plan", "to": "auth_system_plan_task_3_auth_guards_decorators_controller_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_system_plan_auth_system_implementation_plan", "to": "auth_system_plan_task_4_integrate_authmodule_into_app", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_system_plan_auth_system_implementation_plan", "to": "auth_system_plan_task_5_frontend_auth_types_refactored_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan", "to": "broker_account_analytics_plan_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_implementation_plan", "to": "broker_account_analytics_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_backend_new_modified", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_frontend_new_modified", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_task_1_backend_dto_\u0438_\u0441\u0435\u0440\u0432\u0438\u0441_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_task_4_frontend_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_task_5_frontend_\u0440\u043e\u0443\u0442_\u0438_\u0442\u0430\u0431_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_file_structure", "to": "broker_account_analytics_plan_task_6_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043b\u0438\u043d\u0442\u0430_\u0438_\u0442\u0435\u0441\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_1_backend_dto_\u0438_\u0441\u0435\u0440\u0432\u0438\u0441_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_1_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_dto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_1_backend_dto_\u0438_\u0441\u0435\u0440\u0432\u0438\u0441_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_1_2_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0441\u0435\u0440\u0432\u0438\u0441_brokeranalyticsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_1_backend_dto_\u0438_\u0441\u0435\u0440\u0432\u0438\u0441_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_1_3_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_1_backend_dto_\u0438_\u0441\u0435\u0440\u0432\u0438\u0441_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_1_4_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_1_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_cache_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_2_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_ttl_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_3_\u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0441\u0435\u0440\u0432\u0438\u0441_\u0432_tbankmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_4_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_envelope_dto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_5_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_endpoint_\u0432_tbankcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_6_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_2_backend_controller_module_registration_\u0438_\u043a\u043e\u043d\u0444\u0438\u0433_\u043a\u0435\u0448\u0430", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_2_7_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_1_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0442\u0438\u043f_brokeranalyticsdto_\u0432_types_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_2_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0439_\u0442\u0438\u043f_\u0432_barrel_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_3_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_api_\u0444\u0443\u043d\u043a\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_4_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0445\u0443\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_5_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_barrel_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_6_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_3_frontend_shared_types_barrel_entity_api_\u0438_\u0445\u0443\u043a", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_3_7_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_4_frontend_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_4_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_4_frontend_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_4_2_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_barrel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_4_frontend_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_4_3_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_4_frontend_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_4_4_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_5_frontend_\u0440\u043e\u0443\u0442_\u0438_\u0442\u0430\u0431_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_5_1_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0440\u043e\u0443\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_5_frontend_\u0440\u043e\u0443\u0442_\u0438_\u0442\u0430\u0431_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_5_2_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0442\u0430\u0431_\u0432_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_5_frontend_\u0440\u043e\u0443\u0442_\u0438_\u0442\u0430\u0431_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_5_3_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_5_frontend_\u0440\u043e\u0443\u0442_\u0438_\u0442\u0430\u0431_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_5_4_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_6_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043b\u0438\u043d\u0442\u0430_\u0438_\u0442\u0435\u0441\u0442\u043e\u0432", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_6_1_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u043b\u0438\u043d\u0442_\u0438_\u0441\u0431\u043e\u0440\u043a\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_6_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043b\u0438\u043d\u0442\u0430_\u0438_\u0442\u0435\u0441\u0442\u043e\u0432", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_6_2_\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_plan_task_6_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043b\u0438\u043d\u0442\u0430_\u0438_\u0442\u0435\u0441\u0442\u043e\u0432", "to": "broker_account_analytics_plan_\u0448\u0430\u0433_6_3_\u0435\u0441\u043b\u0438_\u0432\u0441\u0451_\u043e\u043a_\u0437\u0430\u043a\u043e\u043c\u043c\u0438\u0442\u0438\u0442\u044c_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0435_\u043f\u0440\u0430\u0432\u043a\u0438_\u0438_\u0437\u0430\u043f\u0443\u0448\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec", "to": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_\u0432\u043d\u0435_\u043e\u0431\u043b\u0430\u0441\u0442\u0438_\u0444\u0438\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_analytics_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_analytics_spec_1_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_analytics_spec_2_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_analytics_spec_3_\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_analytics_spec_4_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_analytics_spec_5_\u0432\u043a\u043b\u0430\u0434\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_analytics_spec_6_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0438_\u043e\u0448\u0438\u0431\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_tasks", "to": "broker_account_analytics_tasks_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_tasks_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_tasks", "to": "broker_account_analytics_tasks_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_tasks_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_tasks", "to": "broker_account_analytics_tasks_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_analytics_tasks_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430_\u043f\u0440\u0438\u0431\u044b\u043b\u044c\u043d\u043e\u0441\u0442\u0438_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_tasks", "to": "broker_account_analytics_tasks_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan", "to": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks", "to": "broker_account_sections_ds_migration_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_10_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_styles_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_11_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0438_\u0441\u0431\u043e\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_12_\u0432\u0435\u0440\u0434\u0438\u043a\u0442_\u0438_\u0437\u0430\u043f\u0438\u0441\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_1_brokeraccountlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_2_brokeraccountoverviewpage_brokersummary_brokerassetcards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_3_brokeroverviewskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_4_brokerallocationchart_wrap_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_5_brokerpositiontable_positionticker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_6_tableskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_7_brokeroperationstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_8_brokerpositionspage_brokeroperationspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_plan_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_plan", "to": "broker_account_sections_ds_migration_plan_task_9_skeletonblock_\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec", "to": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks", "to": "broker_account_sections_ds_migration_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_account_sections_ds_migration_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_out_of_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0444\u0438\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_ds_migration_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "broker_account_sections_ds_migration_spec_\u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f_\u043e\u0442_\u043f\u043b\u0430\u043d\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks", "to": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_10_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_styles_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_11_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_1_brokeraccountlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_2_brokeraccountoverviewpage_brokersummary_brokerassetcards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_3_brokeroverviewskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_4_brokerallocationchart_wrap_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_5_brokerpositiontable_positionticker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_6_tableskeleton_ds_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_7_brokeroperationstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_8_brokerpositionspage_brokeroperationspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_ds_migration_tasks_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439_\u0440\u0435\u0444\u0430\u043a\u0442\u043e\u0440\u0438\u043d\u0433_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_tasks", "to": "broker_account_sections_ds_migration_tasks_task_9_skeletonblock_\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan", "to": "broker_account_sections_plan_broker_account_sections_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks", "to": "broker_account_sections_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_final_acceptance_mapping", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_gate_\u043f\u0435\u0440\u0435\u0434_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_1_backend_portfolio_position_counts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_2_openapi_and_frontend_contract_synchronization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_3_pure_allocation_model_and_exact_operation_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_4_nested_account_shell_and_responsive_navigation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_5_overview_summary_allocation_and_recent_operations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_6_separate_share_and_bond_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_7_exact_operation_type_filter_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_task_8_full_verification_and_documentation_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_broker_account_sections_implementation_plan", "to": "broker_account_sections_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_sdd_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_account_sections_plan_allocation_calculation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_account_sections_plan_backend_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_account_sections_plan_data_flow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_account_sections_plan_frontend_routes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_account_sections_plan_operation_filter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_file_structure", "to": "broker_account_sections_plan_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_file_structure", "to": "broker_account_sections_plan_frontend_contract_and_pure_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_plan_file_structure", "to": "broker_account_sections_plan_frontend_pages_and_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec", "to": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks", "to": "broker_account_sections_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_account_sections_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_\u0432\u043d\u0435_\u043e\u0431\u043b\u0430\u0441\u0442\u0438_\u0444\u0438\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_account_sections_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_1_\u043e\u0431\u0449\u0430\u044f_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_2_\u043e\u0431\u0437\u043e\u0440_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_3_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_4_\u0441\u0447\u0451\u0442\u0447\u0438\u043a\u0438_\u043f\u043e\u0437\u0438\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_5_\u0440\u0430\u0437\u0434\u0435\u043b_\u0430\u043a\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_6_\u0440\u0430\u0437\u0434\u0435\u043b_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_7_\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438_\u043d\u0430_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_8_\u0440\u0430\u0437\u0434\u0435\u043b_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_account_sections_spec_9_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430_\u043e\u0448\u0438\u0431\u043a\u0438_\u0438_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks", "to": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks", "to": "research_2026_06_18_broker_account_sections", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_account_sections_tasks_backend_\u0438_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_account_sections_tasks_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f_\u0438_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_account_sections_tasks_\u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_account_sections_tasks_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0438_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_account_sections_tasks_\u0440\u0430\u0437\u0434\u0435\u043b\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_account_sections_tasks_\u0447\u0438\u0441\u0442\u044b\u0435_frontend_\u043c\u043e\u0434\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan", "to": "broker_accounts_overview_plan_broker_accounts_overview_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks", "to": "broker_accounts_overview_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_broker_accounts_overview_implementation_plan", "to": "broker_accounts_overview_plan_definition_of_done", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_broker_accounts_overview_implementation_plan", "to": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_accounts_overview_plan_task_1_\u0447\u0438\u0441\u0442\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_accounts_overview_plan_task_2_\u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u044b\u0435_portfolio_queries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_accounts_overview_plan_task_3_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b_\u0438_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_accounts_overview_plan_task_4_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f_\u0441\u0438\u0441\u0442\u0435\u043c\u0430_\u0438_responsive_qa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_accounts_overview_plan_task_5_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_definition_of_done", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec", "to": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_accounts_overview_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432", "to": "broker_accounts_overview_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_accounts_overview_spec_1_\u043e\u0431\u0449\u0430\u044f_\u0441\u0432\u043e\u0434\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_accounts_overview_spec_2_\u043a\u0430\u0440\u0442\u043e\u0447\u043a\u0430_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_accounts_overview_spec_3_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_accounts_overview_spec_4_\u043e\u0448\u0438\u0431\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_accounts_overview_spec_5_\u043f\u0443\u0441\u0442\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_accounts_overview_spec_6_\u0430\u0434\u0430\u043f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks", "to": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_accounts_overview_tasks_1_\u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_accounts_overview_tasks_2_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_accounts_overview_tasks_3_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_accounts_overview_tasks_4_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_overview_tasks_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u0441\u0447\u0435\u0442\u043e\u0432_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_accounts_overview_tasks_5_definition_of_done", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan", "to": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "to": "broker_accounts_page_migration_plan_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "to": "broker_accounts_page_migration_plan_task_1_brokerallocationbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "to": "broker_accounts_page_migration_plan_task_2_brokeraccountcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "to": "broker_accounts_page_migration_plan_task_3_brokeraccountssummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "to": "broker_accounts_page_migration_plan_task_4_brokeraccountspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_broker_accounts_page_implementation_plan", "to": "broker_accounts_page_migration_plan_task_5_clean_up_orphaned_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_files", "to": "broker_accounts_page_migration_plan_modify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_plan_files", "to": "broker_accounts_page_migration_plan_no_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec", "to": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_accounts_page_migration_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "to": "broker_accounts_page_migration_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "to": "broker_accounts_page_migration_spec_goal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "to": "broker_accounts_page_migration_spec_out_of_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "to": "broker_accounts_page_migration_spec_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec_broker_accounts_page_design_system_migration", "to": "broker_accounts_page_migration_spec_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_spec_scope", "to": "broker_accounts_page_migration_spec_ds_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b_\u0434\u043b\u044f_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_tasks", "to": "broker_accounts_page_migration_tasks_broker_accounts_page_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_accounts_page_migration_tasks_broker_accounts_page_tasks", "to": "broker_accounts_page_migration_tasks_tasks_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan", "to": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks", "to": "broker_events_and_payouts_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_api_\u0438_\u0442\u0438\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_follow_up_implementation_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_gate_\u043f\u0435\u0440\u0435\u0434_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_rollout_shape", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_verification_strategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_broker_events_and_payouts_implementation_plan", "to": "broker_events_and_payouts_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_sdd_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_events_and_payouts_plan_backend_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_events_and_payouts_plan_backend_read_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_events_and_payouts_plan_\u0441\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_events_and_payouts_plan_\u0444\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_events_and_payouts_plan_\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "broker_events_and_payouts_plan_\u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f_\u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_api_\u0438_\u0442\u0438\u043f\u044b", "to": "broker_events_and_payouts_plan_query_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_api_\u0438_\u0442\u0438\u043f\u044b", "to": "broker_events_and_payouts_plan_response_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_events_and_payouts_plan_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_events_and_payouts_plan_documentation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "broker_events_and_payouts_plan_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_rollout_shape", "to": "broker_events_and_payouts_plan_dedicated_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_rollout_shape", "to": "broker_events_and_payouts_plan_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_verification_strategy", "to": "broker_events_and_payouts_plan_frontend_date_range_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_follow_up_implementation_tasks", "to": "broker_events_and_payouts_plan_backend_252", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_plan_follow_up_implementation_tasks", "to": "broker_events_and_payouts_plan_frontend_264", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec", "to": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks", "to": "broker_events_and_payouts_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_events_and_payouts_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_\u0432\u043d\u0435_\u043e\u0431\u043b\u0430\u0441\u0442\u0438_\u0444\u0438\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "broker_events_and_payouts_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_10_\u043e\u0448\u0438\u0431\u043a\u0438_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f_\u0438_\u0447\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f_\u0434\u0435\u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_1_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043f\u0435\u0440\u0432\u043e\u0439_\u0432\u0435\u0440\u0441\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_2_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f_\u0438_\u0442\u043e\u0447\u043a\u0438_\u0432\u0445\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_3_\u0442\u0438\u043f\u044b_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u043f\u0435\u0440\u0432\u043e\u0439_\u0432\u0435\u0440\u0441\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_4_1_\u0444\u0438\u043b\u044c\u0442\u0440_\u0442\u0438\u043f\u043e\u0432_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_4_\u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d_\u0434\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_5_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_6_1_\u0444\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_6_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430_\u0432\u044b\u043f\u043b\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_7_overview_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_8_\u0432\u043a\u043b\u0430\u0434\u043a\u0430_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "broker_events_and_payouts_spec_9_summary_\u043f\u043e_\u043f\u0435\u0440\u0438\u043e\u0434\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_6_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430_\u0432\u044b\u043f\u043b\u0430\u0442", "to": "broker_events_and_payouts_spec_\u0434\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_6_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430_\u0432\u044b\u043f\u043b\u0430\u0442", "to": "broker_events_and_payouts_spec_\u043a\u0443\u043f\u043e\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_6_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430_\u0432\u044b\u043f\u043b\u0430\u0442", "to": "broker_events_and_payouts_spec_\u043e\u0444\u0435\u0440\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_spec_6_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430_\u0432\u044b\u043f\u043b\u0430\u0442", "to": "broker_events_and_payouts_spec_\u043f\u043e\u0433\u0430\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks", "to": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_10_follow_up_ux_\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432_\u0438_\u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0435_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_1_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430_\u0438_gate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_2_backend_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_3_backend_aggregation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_4_backend_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_5_frontend_data_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_6_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_7_\u0432\u043a\u043b\u0430\u0434\u043a\u0430_\u0441\u043e\u0431\u044b\u0442\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_8_frontend_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_events_and_payouts_tasks_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0441\u043e\u0431\u044b\u0442\u0438\u0439_\u0438_\u043f\u0440\u043e\u0433\u043d\u043e\u0437_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "broker_events_and_payouts_tasks_9_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_quality_gates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_plan", "to": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "to": "broker_operations_ui_improvements_plan_task_1_remove_getbrokeroperationimpactlabel_from_brokerdisplay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "to": "broker_operations_ui_improvements_plan_task_2_update_brokerpages_test_tsx_for_new_expectations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "to": "broker_operations_ui_improvements_plan_task_3_remove_badges_and_add_prefix_style_pagination_buttons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "to": "broker_operations_ui_improvements_plan_task_4_add_keeppreviousdata_to_operations_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_plan_broker_operations_ui_improvements_implementation_plan", "to": "broker_operations_ui_improvements_plan_task_5_run_lint_and_verify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec", "to": "broker_operations_ui_improvements_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_ui_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439_\u0438_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438_\u0432_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_operations_ui_improvements_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_ui_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439_\u0438_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438_\u0432_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "to": "broker_operations_ui_improvements_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_ui_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439_\u0438_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438_\u0432_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "to": "broker_operations_ui_improvements_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_ui_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439_\u0438_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438_\u0432_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "to": "broker_operations_ui_improvements_spec_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_ui_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439_\u0438_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0438_\u0432_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u043c_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435", "to": "broker_operations_ui_improvements_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_operations_ui_improvements_spec_1_\u0443\u0431\u0440\u0430\u0442\u044c_\u0431\u0435\u0439\u0434\u0436\u0438_impact_\u0438\u0437_\u0442\u0430\u0431\u043b\u0438\u0446\u044b_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_operations_ui_improvements_spec_2_\u043f\u0440\u0435\u0444\u0438\u043a\u0441_\u0434\u043b\u044f_\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445_\u0441\u0443\u043c\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_operations_ui_improvements_spec_3_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_keeppreviousdata_\u0438_\u0441\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_operations_ui_improvements_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_operations_ui_improvements_spec_4_\u0434\u0440\u0443\u0433\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan", "to": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "to": "broker_portfolio_display_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "to": "broker_portfolio_display_plan_task_1_display_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "to": "broker_portfolio_display_plan_task_2_broker_position_tables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "to": "broker_portfolio_display_plan_task_3_broker_operations_table_and_cursor_pagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "to": "broker_portfolio_display_plan_task_4_regression_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_plan_broker_portfolio_display_implementation_plan", "to": "broker_portfolio_display_plan_task_5_review_handoff", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec", "to": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_portfolio_display_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_tdd_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_\u043e\u0448\u0438\u0431\u043a\u0438_\u0438_\u043f\u0443\u0441\u0442\u044b\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435_\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "broker_portfolio_display_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "to": "broker_portfolio_display_spec_\u0441\u0441\u044b\u043b\u043a\u0438_\u043d\u0430_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "to": "broker_portfolio_display_spec_\u0440\u0443\u0441\u0441\u043a\u0438\u0435_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f_\u0442\u0438\u043f\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_portfolio_display_spec_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "to": "broker_portfolio_display_spec_\u044d\u0444\u0444\u0435\u043a\u0442_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan", "to": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_10_frontend_brokeroperationstable_with_shimmer_instrument_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_11_frontend_brokeraccountdetailpage_with_positions_hook_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_12_frontend_brokeraccountspage_skeleton_cards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_13_frontend_update_brokerpages_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_14_full_build_and_test_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_1_backend_types_and_dtos_for_positions_page_operation_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_2_backend_mappers_separate_positions_add_name_to_operations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_3_backend_brokerportfolioservice_with_getpositions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_4_backend_controller_envelope_config_for_positions_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_5_backend_update_portfolio_service_tests_add_positions_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_6_frontend_css_shimmer_animations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_7_frontend_types_api_and_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_8_frontend_skeletonblock_and_tableskeleton_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_plan_broker_portfolio_enhancements_implementation_plan", "to": "broker_positions_pagination_and_loading_plan_task_9_frontend_brokerpositionssection_with_pagination_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec", "to": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "broker_positions_pagination_and_loading_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "to": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "to": "broker_positions_pagination_and_loading_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "to": "broker_positions_pagination_and_loading_spec_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "to": "broker_positions_pagination_and_loading_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "to": "broker_positions_pagination_and_loading_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_1_backend_\u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439_endpoint_\u0434\u043b\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_2_frontend_\u043d\u043e\u0432\u044b\u0439_\u0445\u0443\u043a_\u0438_\u0442\u0438\u043f\u044b_\u0434\u043b\u044f_\u043f\u043e\u0437\u0438\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_3_brokerpositionssection_\u0441_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_4_shimmer_\u0441\u043a\u0435\u043b\u0435\u0442\u043e\u043d\u044b_css_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_5_\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430_\u0432_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_6_loading_\u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_shimmer_\u0441\u0442\u0440\u043e\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "broker_positions_pagination_and_loading_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "to": "broker_positions_pagination_and_loading_spec_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_plan", "to": "ci_cd_plan_ci_cd_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_plan_ci_cd_implementation_plan", "to": "ci_cd_plan_task_1_add_format_check_script_to_root_package_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_plan_ci_cd_implementation_plan", "to": "ci_cd_plan_task_2_create_gitea_actions_workflow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_plan_ci_cd_implementation_plan", "to": "ci_cd_plan_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec", "to": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "ci_cd_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_configuration_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_explicitly_excluded", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_pipeline_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_project_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_runtime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ci_cd_spec_ci_cd_pipeline_for_moexvibe", "to": "ci_cd_spec_triggers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan", "to": "design_system_foundation_plan_design_system_foundation_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_design_system_foundation_implementation_plan", "to": "design_system_foundation_plan_\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_design_system_foundation_implementation_plan", "to": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_10_frontend_integration_\u0438_mui_boundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_11_docusaurus_\u0438_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_12_ci_visual_checks_\u0438_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_1_pre_flight_\u0438_workspace_shell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_2_token_schema_\u0438_resolver_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_3_\u0442\u0440\u0438_\u0443\u0440\u043e\u0432\u043d\u044f_\u0442\u043e\u043a\u0435\u043d\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_4_mui_adapter_\u0438_provider_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_5_storybook_\u0438_automated_story_checks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_6_typography_\u0438_actions_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_7_inputs_surfaces_\u0438_feedback_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_8_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_data_patterns_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "design_system_foundation_plan_task_9_form_\u0438_page_state_patterns_tdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec", "to": "design_system_foundation_spec_design_system_foundation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "design_system_foundation_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_governance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u0432\u043d\u0435_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u043c\u043e\u0434\u0435\u043b\u044c_\u0442\u043e\u043a\u0435\u043d\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u0441\u0442\u0430\u0442\u0443\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u0442\u0435\u043c\u0430_\u0438_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435_\u043e\u0441\u043d\u043e\u0432\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_design_system_foundation", "to": "design_system_foundation_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "to": "design_system_foundation_spec_docusaurus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "to": "design_system_foundation_spec_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "to": "design_system_foundation_spec_workspace_\u043f\u0430\u043a\u0435\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "to": "design_system_foundation_spec_core_ui_v1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "to": "design_system_foundation_spec_product_patterns_v1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks", "to": "design_system_foundation_tasks_design_system_foundation_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_1_pre_flight_\u0438_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_2_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_3_mui_adapter_\u0438_storybook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_4_core_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_5_product_patterns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_6_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f_\u0438_governance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_foundation_tasks_design_system_foundation_tasks", "to": "design_system_foundation_tasks_7_ci_\u0438_\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "docusaurus_docs_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec", "to": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "to": "docusaurus_docs_spec_content_sources_\u0442\u043e\u043b\u044c\u043a\u043e_\u0438\u0437_\u043a\u043e\u0434\u0430_\u0431\u0435\u0437_\u0432\u044b\u043c\u044b\u0441\u043b\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "to": "docusaurus_docs_spec_location", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "to": "docusaurus_docs_spec_mermaid_diagrams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "to": "docusaurus_docs_spec_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "to": "docusaurus_docs_spec_purpose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docusaurus_docs_spec_docusaurus_documentation_design_spec", "to": "docusaurus_docs_spec_root_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_plan", "to": "frontend_debt_audit_plan_frontend_debt_audit_and_backlog_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_plan_frontend_debt_audit_and_backlog_implementation_plan", "to": "frontend_debt_audit_plan_task_1_collect_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_plan_frontend_debt_audit_and_backlog_implementation_plan", "to": "frontend_debt_audit_plan_task_2_synthesize_the_backlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_plan_frontend_debt_audit_and_backlog_implementation_plan", "to": "frontend_debt_audit_plan_task_3_sync_inbox_and_roadmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_plan_frontend_debt_audit_and_backlog_implementation_plan", "to": "frontend_debt_audit_plan_task_4_self_check_the_documentation_set", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "frontend_debt_audit_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec", "to": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "to": "frontend_debt_audit_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "to": "frontend_debt_audit_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "to": "frontend_debt_audit_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "to": "frontend_debt_audit_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0430\u0443\u0434\u0438\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "to": "frontend_debt_audit_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_frontend_debt_audit_and_backlog", "to": "frontend_debt_audit_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_debt_audit_spec_1_\u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f_\u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_debt_audit_spec_2_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0438\u0437\u0430\u0446\u0438\u044f_\u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e_\u0434\u043e\u043b\u0433\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_debt_audit_spec_3_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f_\u043f\u0440\u043e\u0435\u043a\u0442\u043d\u043e\u0439_\u0434\u043e\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_debt_audit_spec_4_\u043d\u0438\u043a\u0430\u043a\u0438\u0445_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0430\u0443\u0434\u0438\u0442\u0430", "to": "frontend_debt_audit_spec_\u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u044f_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_spec_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b_\u0430\u0443\u0434\u0438\u0442\u0430", "to": "frontend_debt_audit_spec_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043e\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks", "to": "frontend_debt_audit_tasks_frontend_debt_audit_and_backlog_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_frontend_debt_audit_and_backlog_tasks", "to": "frontend_debt_audit_tasks_1_\u0441\u043d\u044f\u0442\u044c_\u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435_frontend_\u0434\u043e\u043b\u0433\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_frontend_debt_audit_and_backlog_tasks", "to": "frontend_debt_audit_tasks_2_\u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c_backlog_follow_up_\u0444\u0438\u0447", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_frontend_debt_audit_and_backlog_tasks", "to": "frontend_debt_audit_tasks_3_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u043f\u0440\u043e\u0435\u043a\u0442\u043d\u0443\u044e_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_frontend_debt_audit_and_backlog_tasks", "to": "frontend_debt_audit_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_1_\u0441\u043d\u044f\u0442\u044c_\u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435_frontend_\u0434\u043e\u043b\u0433\u0430", "to": "frontend_debt_audit_tasks_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_2_\u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c_backlog_follow_up_\u0444\u0438\u0447", "to": "frontend_debt_audit_tasks_\u043d\u0443\u0436\u0434\u0430\u044e\u0442\u0441\u044f_\u0432_\u043d\u043e\u0432\u044b\u0445_\u0444\u0438\u0447\u0430\u0445_\u043d\u0435_\u0441\u043e\u0437\u0434\u0430\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_debt_audit_tasks_2_\u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c_backlog_follow_up_\u0444\u0438\u0447", "to": "frontend_debt_audit_tasks_\u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435_follow_up_\u0444\u0438\u0447\u0438_\u0441\u0442\u0430\u0442\u0443\u0441_completed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_plan", "to": "frontend_docs_sync_plan_frontend_docs_sync_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_plan_frontend_docs_sync_implementation_plan", "to": "frontend_docs_sync_plan_task_1_reconcile_current_docs_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_plan_frontend_docs_sync_implementation_plan", "to": "frontend_docs_sync_plan_task_2_update_inbox_and_roadmap_wording", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_plan_frontend_docs_sync_implementation_plan", "to": "frontend_docs_sync_plan_task_3_align_feature_docs_with_the_epic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_plan_frontend_docs_sync_implementation_plan", "to": "frontend_docs_sync_plan_task_4_self_check_the_docs_set", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "frontend_docs_sync_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec", "to": "frontend_docs_sync_spec_frontend_docs_sync", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_frontend_docs_sync", "to": "frontend_docs_sync_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_frontend_docs_sync", "to": "frontend_docs_sync_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_frontend_docs_sync", "to": "frontend_docs_sync_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_frontend_docs_sync", "to": "frontend_docs_sync_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_frontend_docs_sync", "to": "frontend_docs_sync_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_docs_sync_spec_1_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_inbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_docs_sync_spec_2_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_roadmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_docs_sync_spec_3_\u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u0442\u044c_frontend_feature_docs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_docs_sync_spec_4_\u043d\u0435_\u043c\u0435\u043d\u044f\u0442\u044c_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_tasks", "to": "frontend_docs_sync_tasks_frontend_docs_sync_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_tasks_frontend_docs_sync_tasks", "to": "frontend_docs_sync_tasks_1_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_inbox_\u0438_roadmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_tasks_frontend_docs_sync_tasks", "to": "frontend_docs_sync_tasks_2_\u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438_frontend_docs_\u043a_\u0442\u0435\u043a\u0443\u0449\u0435\u043c\u0443_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_docs_sync_tasks_frontend_docs_sync_tasks", "to": "frontend_docs_sync_tasks_3_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan", "to": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_\u0446\u0435\u043b\u0435\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_frontend_fsd_app_auth_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "frontend_fsd_app_auth_plan_auth_flow_\u0431\u0435\u0437_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439_\u0432_runtime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "frontend_fsd_app_auth_plan_session_restore_\u043d\u0430_\u0441\u0442\u0430\u0440\u0442\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_1_entities_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_2_app_providers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_3_app_routing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_4_app_layouts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_5_app_app_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_6_main_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_app_auth_plan_phase_7_update_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_plan_coexistence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_plan_\u043f\u043e\u0447\u0435\u043c\u0443_context_\u043d\u0435_\u0432_entities_\u0430_\u0432_app_providers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_plan_\u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_plan_\u043f\u043e\u0447\u0435\u043c\u0443_entities_session_\u0430_\u043d\u0435_features_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec", "to": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "to": "frontend_fsd_app_auth_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "to": "frontend_fsd_app_auth_spec_\u043a\u043e\u043d\u0446\u0435\u043f\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "to": "frontend_fsd_app_auth_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "to": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_frontend_fsd_app_auth", "to": "frontend_fsd_app_auth_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_app_auth_spec_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_app_auth_spec_\u043d\u0435_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_spec_1_app_\u0441\u043b\u043e\u0439_\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_spec_2_session_\u0441\u043b\u043e\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_spec_3_coexistence_\u0447\u0435\u0440\u0435\u0437_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_spec_4_\u0442\u0435\u0441\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_\u0437\u0430_\u043a\u043e\u0434\u043e\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_app_auth_spec_5_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks", "to": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_1_entities_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_2_app_providers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_3_app_routing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_4_app_layouts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_5_app_app_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_6_main_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_app_auth_tasks_frontend_fsd_app_auth_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_app_auth_tasks_phase_7_update_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan", "to": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks", "to": "frontend_fsd_broker_pilot_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "to": "frontend_fsd_broker_pilot_plan_task_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_fsd_entrypoints_\u0438_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439_\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u043d\u044b\u0439_\u043a\u0430\u0440\u043a\u0430\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "to": "frontend_fsd_broker_pilot_plan_task_2_\u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438_broker_account_slice_\u0438_read_model_\u0441\u043f\u0438\u0441\u043a\u0430_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "to": "frontend_fsd_broker_pilot_plan_task_3_\u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438_broker_position_slice_\u0438_allocation_instrument_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "to": "frontend_fsd_broker_pilot_plan_task_4_\u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438_broker_operation_slice_layout_shell_\u0438_page_composition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "to": "frontend_fsd_broker_pilot_plan_task_5_\u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c_cleanup_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e_\u0438_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_plan_frontend_fsd_broker_pilot_implementation_plan", "to": "frontend_fsd_broker_pilot_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec", "to": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u044f_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_frontend_fsd_broker_pilot", "to": "frontend_fsd_broker_pilot_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_1_\u043f\u0435\u0440\u0432\u044b\u0439_fsd_\u0441\u0440\u0435\u0437_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d_broker_\u0434\u043e\u043c\u0435\u043d\u043e\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_2_broker_\u043a\u043e\u0434_\u0434\u043e\u043b\u0436\u0435\u043d_\u0431\u044b\u0442\u044c_\u0440\u0430\u0437\u0434\u0435\u043b\u0451\u043d_\u043f\u043e_fsd_\u0441\u043b\u043e\u044f\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_3_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u0441\u0440\u0435\u0437\u043e\u0432_\u0434\u043e\u043b\u0436\u043d\u044b_\u0431\u044b\u0442\u044c_\u044f\u0432\u043d\u044b\u043c\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_4_query_\u043b\u043e\u0433\u0438\u043a\u0430_\u0447\u0442\u0435\u043d\u0438\u044f_\u0434\u043e\u043b\u0436\u043d\u0430_\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_\u0434\u043e\u043c\u0435\u043d\u043d\u044b\u043c_\u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_5_\u043e\u0431\u0449\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043d\u0435_\u0434\u043e\u043b\u0436\u043d\u0430_\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f_broker_specific", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_6_\u0442\u0435\u0441\u0442\u044b_\u0434\u043e\u043b\u0436\u043d\u044b_\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_\u043d\u043e\u0432\u044b\u043c_\u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_broker_pilot_spec_7_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_ui_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks", "to": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_broker_pilot_tasks_1_fsd_entrypoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_broker_pilot_tasks_2_broker_account_slice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_broker_pilot_tasks_3_broker_position_slice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_broker_pilot_tasks_4_broker_operation_slice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_broker_pilot_tasks_frontend_fsd_broker_pilot_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_broker_pilot_tasks_5_cleanup_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan", "to": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u043e\u0431\u0449\u0438\u0439_\u043f\u043e\u0434\u0445\u043e\u0434", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_1_\u0440\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c_\u0446\u0435\u043f\u043e\u0447\u043a\u0443_entity_shims_\u043a_api_broker_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_2_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_\u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439_shim_\u043d\u0430_fsd_\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_4_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u044b_\u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u043a_shim_\u0444\u0430\u0439\u043b\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_5_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_api_broker_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_6_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_frontend_fsd_cleanup_\u043f\u043b\u0430\u043d", "to": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_7_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_api_\u043a\u0440\u043e\u043c\u0435_api_screener_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_components_\u043a\u0440\u043e\u043c\u0435_components_screener_\u0438_components_portfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_hooks_\u043a\u0440\u043e\u043c\u0435_hooks_usescreener_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_pages_broker_\u0432\u0435\u0441\u044c_\u043a\u0430\u0442\u0430\u043b\u043e\u0433", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_pages_flat_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_plan_\u0448\u0430\u0433_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_plan_\u043a\u043e\u0440\u0435\u043d\u044c_src", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec", "to": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "to": "frontend_fsd_cleanup_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "to": "frontend_fsd_cleanup_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "to": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "to": "frontend_fsd_cleanup_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_frontend_fsd_cleanup", "to": "frontend_fsd_cleanup_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_cleanup_spec_\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_cleanup_spec_\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u044b\u0435_\u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435_\u0441_shim_\u043d\u0430_fsd_\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_cleanup_spec_\u043f\u0435\u0440\u0435\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u044b\u0435_entity_api_\u0440\u0430\u0437\u0440\u044b\u0432_\u0446\u0435\u043f\u043e\u0447\u043a\u0438_\u043a_api_broker_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_cleanup_spec_\u0443\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435_shim_\u0444\u0430\u0439\u043b\u044b_re_export_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_cleanup_spec_\u0443\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0439_\u043c\u0451\u0440\u0442\u0432\u044b\u0439_\u043a\u043e\u0434", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks", "to": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_1_\u0440\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c_\u0446\u0435\u043f\u043e\u0447\u043a\u0443_entity_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_2_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_\u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0435\u0439_shim_\u043d\u0430_fsd_\u0438\u043c\u043f\u043e\u0440\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_4_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u044b_\u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u043a_shim_\u0444\u0430\u0439\u043b\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_5_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_api_broker_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_6_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_frontend_fsd_cleanup_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_cleanup_tasks_7_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_pages_broker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_pages_flat_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_cleanup_tasks_3_\u0443\u0434\u0430\u043b\u0438\u0442\u044c_shim_\u0444\u0430\u0439\u043b\u044b", "to": "frontend_fsd_cleanup_tasks_\u043a\u043e\u0440\u0435\u043d\u044c_src", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan", "to": "frontend_fsd_final_plan_fsd_final_cleanup_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_fsd_final_cleanup_implementation_plan", "to": "frontend_fsd_final_plan_phase_a_move_brokerallocationchart_to_shared_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_fsd_final_cleanup_implementation_plan", "to": "frontend_fsd_final_plan_phase_b_fix_cross_entity_deep_import_in_brokerdisplay_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_fsd_final_cleanup_implementation_plan", "to": "frontend_fsd_final_plan_phase_c_add_missing_barrel_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_fsd_final_cleanup_implementation_plan", "to": "frontend_fsd_final_plan_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_phase_a_move_brokerallocationchart_to_shared_ui", "to": "frontend_fsd_final_plan_task_a1_create_shared_ui_broker_allocation_chart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_phase_a_move_brokerallocationchart_to_shared_ui", "to": "frontend_fsd_final_plan_task_a2_update_consumers_and_delete_old_location", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_phase_b_fix_cross_entity_deep_import_in_brokerdisplay_ts", "to": "frontend_fsd_final_plan_task_b1_update_import_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_phase_c_add_missing_barrel_export", "to": "frontend_fsd_final_plan_task_c1_export_brokeraccountsaggregate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_phase_c_add_missing_barrel_export", "to": "frontend_fsd_final_plan_task_c2_update_consumer_to_use_barrel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_plan_verification", "to": "frontend_fsd_final_plan_task_d1_run_tests_lint_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec", "to": "frontend_fsd_final_spec_fsd_final_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_fsd_final_cleanup", "to": "frontend_fsd_final_spec_constraints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_fsd_final_cleanup", "to": "frontend_fsd_final_spec_goal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_fsd_final_cleanup", "to": "frontend_fsd_final_spec_out_of_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_fsd_final_cleanup", "to": "frontend_fsd_final_spec_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r1_all_imports_use_path_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r2_brokeraccountlayout_lives_in_widgets_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r3_entities_search_has_an_api_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r4_app_layer_uses_barrel_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r5_tests_use_path_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r6_brokerallocationchart_lives_in_shared_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r7_no_cross_entity_deep_relative_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_spec_requirements", "to": "frontend_fsd_final_spec_r8_all_entities_fully_export_their_public_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks", "to": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_1_fix_import_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_2_move_brokeraccountlayout_to_widgets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_3_add_api_to_entities_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_4_fix_app_layer_deep_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_5_fix_test_relative_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_a_move_brokerallocationbar_to_shared_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_b_fix_cross_entity_deep_import", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_phase_c_add_missing_barrel_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_final_tasks_tasks_fsd_final_cleanup", "to": "frontend_fsd_final_tasks_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan", "to": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_tasks", "to": "frontend_fsd_market_pages_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u0431\u0430\u0437\u043e\u0432\u043e\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f_\u043f\u043b\u0430\u043d\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u0440\u0438\u0441\u043a\u0438_\u0438_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0435_\u0442\u043e\u0447\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u0446\u0435\u043b\u0435\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_frontend_fsd_market_pages_implementation_plan", "to": "frontend_fsd_market_pages_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_market_pages_plan_create", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_market_pages_plan_modify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "frontend_fsd_market_pages_plan_bond_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "frontend_fsd_market_pages_plan_search_flow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u043f\u043e\u0442\u043e\u043a\u0438_\u0434\u0430\u043d\u043d\u044b\u0445", "to": "frontend_fsd_market_pages_plan_stock_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_market_pages_plan_phase_1_search_entity_\u0438_searchbar_widget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_market_pages_plan_phase_2_market_widgets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_market_pages_plan_phase_3_market_pages_\u0438_route_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "frontend_fsd_market_pages_plan_phase_4_documentation_adr_\u0438_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec", "to": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u044f_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_frontend_fsd_market_pages", "to": "frontend_fsd_market_pages_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_1_1_ownership_\u0434\u0430\u043d\u043d\u044b\u0445_\u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f_\u0443_pages_\u0438_entities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_1_\u0432\u0441\u0435_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_fsd_\u0441\u043b\u043e\u044f\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_2_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u0441\u0440\u0435\u0437\u043e\u0432_\u044f\u0432\u043d\u044b\u0435_\u0447\u0435\u0440\u0435\u0437_public_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_3_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_ui_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_4_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c_\u0447\u0435\u0440\u0435\u0437_shim_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_5_\u0442\u0435\u0441\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_\u043d\u043e\u0432\u044b\u043c_\u0433\u0440\u0430\u043d\u0438\u0446\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_market_pages_spec_6_\u043e\u0431\u0449\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f_\u0432_shared", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_tasks", "to": "frontend_fsd_market_pages_tasks_frontend_fsd_market_pages_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_tasks_frontend_fsd_market_pages_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_market_pages_tasks_1_search_slice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_tasks_frontend_fsd_market_pages_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_market_pages_tasks_2_market_widgets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_tasks_frontend_fsd_market_pages_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_market_pages_tasks_3_market_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_market_pages_tasks_frontend_fsd_market_pages_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_market_pages_tasks_4_docs_\u0438_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_plan", "to": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "to": "frontend_fsd_portfolios_plan_task_1_create_widget_directory_structure_and_barrel_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "to": "frontend_fsd_portfolios_plan_task_2_update_pages_to_use_widgets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "to": "frontend_fsd_portfolios_plan_task_3_remove_flat_components_portfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "to": "frontend_fsd_portfolios_plan_task_4_update_documentation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_plan_frontend_fsd_portfolio_pages_implementation_plan", "to": "frontend_fsd_portfolios_plan_task_5_final_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec", "to": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_\u0441\u043f\u0438\u0441\u043e\u043a_\u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_frontend_fsd_portfolio_pages", "to": "frontend_fsd_portfolios_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_portfolios_spec_\u043c\u0438\u0433\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_portfolios_spec_\u0443\u0434\u0430\u043b\u044f\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_tasks", "to": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "to": "frontend_fsd_portfolios_tasks_1_create_widget_directory_structure_and_barrel_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "to": "frontend_fsd_portfolios_tasks_2_update_pages_to_use_widgets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "to": "frontend_fsd_portfolios_tasks_3_remove_flat_components_portfolios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "to": "frontend_fsd_portfolios_tasks_4_update_documentation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_portfolios_tasks_frontend_fsd_portfolio_pages_tasks", "to": "frontend_fsd_portfolios_tasks_5_final_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan", "to": "frontend_fsd_screener_plan_frontend_fsd_screener_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan_frontend_fsd_screener_implementation_plan", "to": "frontend_fsd_screener_plan_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan_frontend_fsd_screener_implementation_plan", "to": "frontend_fsd_screener_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan_frontend_fsd_screener_implementation_plan", "to": "frontend_fsd_screener_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_screener_plan_create", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_screener_plan_delete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_screener_plan_modify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec", "to": "frontend_fsd_screener_spec_frontend_fsd_screener", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_frontend_fsd_screener", "to": "frontend_fsd_screener_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_frontend_fsd_screener", "to": "frontend_fsd_screener_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_frontend_fsd_screener", "to": "frontend_fsd_screener_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_frontend_fsd_screener", "to": "frontend_fsd_screener_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_frontend_fsd_screener", "to": "frontend_fsd_screener_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_screener_spec_1_features_\u0441\u043b\u043e\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_screener_spec_2_pages_\u0441\u043b\u043e\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_screener_spec_3_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks", "to": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_1_api_\u0441\u043b\u043e\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_2_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_3_ui_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_4_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_5_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_6_\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435_legacy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_screener_tasks_frontend_fsd_screener_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "frontend_fsd_screener_tasks_7_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan", "to": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "to": "frontend_fsd_shared_layer_plan_task_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_shared_api_re_export_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "to": "frontend_fsd_shared_layer_plan_task_2_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_shared_ui_re_export_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "to": "frontend_fsd_shared_layer_plan_task_3_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_fsd_entities_widgets_pages_\u043d\u0430_shared", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "to": "frontend_fsd_shared_layer_plan_task_4_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c_legacy_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_\u043d\u0430_shared", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "to": "frontend_fsd_shared_layer_plan_task_5_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_frontend_fsd_shared_layer_implementation_plan", "to": "frontend_fsd_shared_layer_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_shared_layer_plan_\u0431\u0443\u0434\u0443\u0442_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b_\u0438\u043c\u043f\u043e\u0440\u0442\u044b_shared", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_shared_layer_plan_\u0431\u0443\u0434\u0443\u0442_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b_\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f_re_export_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "frontend_fsd_shared_layer_plan_\u0431\u0443\u0434\u0443\u0442_\u0441\u043e\u0437\u0434\u0430\u043d\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec", "to": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "to": "frontend_fsd_shared_layer_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "to": "frontend_fsd_shared_layer_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "to": "frontend_fsd_shared_layer_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "to": "frontend_fsd_shared_layer_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "to": "frontend_fsd_shared_layer_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_frontend_fsd_shared_layer", "to": "frontend_fsd_shared_layer_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_shared_layer_spec_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "frontend_fsd_shared_layer_spec_\u043d\u0435_\u0432\u0445\u043e\u0434\u0438\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_shared_layer_spec_1_shared_api_\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442_\u0431\u0430\u0437\u043e\u0432\u0443\u044e_http_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_shared_layer_spec_2_shared_ui_\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442_\u0442\u043e\u043b\u044c\u043a\u043e_truly_generic_ui_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_shared_layer_spec_3_coexistence_\u0447\u0435\u0440\u0435\u0437_shims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_fsd_shared_layer_spec_4_fsd_\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u0438_\u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442_\u0447\u0435\u0440\u0435\u0437_shared", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_fsd_shared_layer_tasks", "to": "frontend_fsd_shared_layer_tasks_tasks_frontend_fsd_shared_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_plan", "to": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "to": "frontend_infrastructure_hardening_plan_task_1_browser_mock_mode_wiring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "to": "frontend_infrastructure_hardening_plan_task_2_env_validation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "to": "frontend_infrastructure_hardening_plan_task_3_tooling_consistency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "to": "frontend_infrastructure_hardening_plan_task_4_contract_freshness", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_plan_frontend_infrastructure_hardening_implementation_plan", "to": "frontend_infrastructure_hardening_plan_task_5_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "frontend_infrastructure_hardening_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec", "to": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "to": "frontend_infrastructure_hardening_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "to": "frontend_infrastructure_hardening_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "to": "frontend_infrastructure_hardening_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "to": "frontend_infrastructure_hardening_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_frontend_infrastructure_hardening", "to": "frontend_infrastructure_hardening_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_infrastructure_hardening_spec_1_browser_mock_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_infrastructure_hardening_spec_2_env_validation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_infrastructure_hardening_spec_3_tooling_consistency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_infrastructure_hardening_spec_4_contract_freshness", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_tasks", "to": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "to": "frontend_infrastructure_hardening_tasks_1_\u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c_browser_mock_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "to": "frontend_infrastructure_hardening_tasks_2_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_env", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "to": "frontend_infrastructure_hardening_tasks_3_tooling_consistency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "to": "frontend_infrastructure_hardening_tasks_4_contract_freshness", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_hardening_tasks_frontend_infrastructure_hardening_tasks", "to": "frontend_infrastructure_hardening_tasks_5_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan", "to": "frontend_infrastructure_tooling_plan_frontend_infrastructure_tooling_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_frontend_infrastructure_tooling_implementation_plan", "to": "frontend_infrastructure_tooling_plan_architecture_decisions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_frontend_infrastructure_tooling_implementation_plan", "to": "frontend_infrastructure_tooling_plan_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_frontend_infrastructure_tooling_implementation_plan", "to": "frontend_infrastructure_tooling_plan_phases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_frontend_infrastructure_tooling_implementation_plan", "to": "frontend_infrastructure_tooling_plan_rollback_strategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_architecture_decisions", "to": "frontend_infrastructure_tooling_plan_adr_references", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_architecture_decisions", "to": "frontend_infrastructure_tooling_plan_non_adr_decisions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_phases", "to": "frontend_infrastructure_tooling_plan_phase_1_ky_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_phases", "to": "frontend_infrastructure_tooling_plan_phase_2_biome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_phases", "to": "frontend_infrastructure_tooling_plan_phase_3_unify_api_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_phases", "to": "frontend_infrastructure_tooling_plan_phase_4_msw_browser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_phases", "to": "frontend_infrastructure_tooling_plan_phase_5_env_validation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_plan_phases", "to": "frontend_infrastructure_tooling_plan_phase_6_tanstack_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec", "to": "frontend_infrastructure_tooling_spec_frontend_infrastructure_tooling", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_frontend_infrastructure_tooling", "to": "frontend_infrastructure_tooling_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_frontend_infrastructure_tooling", "to": "frontend_infrastructure_tooling_spec_out_of_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_frontend_infrastructure_tooling", "to": "frontend_infrastructure_tooling_spec_purpose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_frontend_infrastructure_tooling", "to": "frontend_infrastructure_tooling_spec_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_requirements", "to": "frontend_infrastructure_tooling_spec_1_msw_browser_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_requirements", "to": "frontend_infrastructure_tooling_spec_2_biome_\u0432\u043c\u0435\u0441\u0442\u043e_eslint_prettier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_requirements", "to": "frontend_infrastructure_tooling_spec_3_\u0443\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0442\u0438\u043f\u043e\u0432_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_requirements", "to": "frontend_infrastructure_tooling_spec_4_\u043f\u043e\u043b\u043d\u0430\u044f_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u043d\u0430_ky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_requirements", "to": "frontend_infrastructure_tooling_spec_5_tanstack_router_lazy_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_spec_requirements", "to": "frontend_infrastructure_tooling_spec_6_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_phase_1_ky_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_phase_2_biome_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_phase_3_unify_api_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_phase_4_msw_browser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_phase_5_env_validation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_frontend_infrastructure_tooling_tasks", "to": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "to": "frontend_infrastructure_tooling_tasks_devtools", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "to": "frontend_infrastructure_tooling_tasks_replace_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "to": "frontend_infrastructure_tooling_tasks_route_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "to": "frontend_infrastructure_tooling_tasks_router_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "to": "frontend_infrastructure_tooling_tasks_setup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_tasks_phase_6_tanstack_router", "to": "frontend_infrastructure_tooling_tasks_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan", "to": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435_\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u043f\u043e_\u043a\u0430\u0436\u0434\u043e\u043c\u0443_\u044d\u0442\u0430\u043f\u0443_\u0440\u0430\u0431\u043e\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439_\u0444\u043e\u043d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0437\u0430\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439_\u0441\u043b\u043e\u0432\u0435\u0441\u043d\u044b\u0439_\u043e\u0431\u0437\u043e\u0440_\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0439_\u0441\u043f\u0438\u0441\u043e\u043a_\u0430\u0432\u0442\u043e\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435_\u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0441\u0442\u0438_\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439_\u0438_\u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0445_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432_\u0440\u0430\u0431\u043e\u0442\u044b_\u043d\u0430\u0434_\u0437\u0430\u0434\u0430\u0447\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u043e\u0431\u0437\u043e\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u043e\u0431\u0443\u0447\u0435\u043d\u0438\u0435_\u0438_\u0438\u043d\u0442\u0435\u0440\u043d\u0430\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430_\u043d\u0430\u0447\u0430\u043b\u043e_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438_\u043a\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0440\u0438\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0448\u0430\u0431\u043b\u043e\u043d_\u043a\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u0448\u0430\u0431\u043b\u043e\u043d_\u0440\u0438\u0441\u043a\u043e\u0432_\u043a\u043e\u043c\u0438\u0441\u0441\u0430\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_plan_md_\u043f\u043b\u0430\u043d_\u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435_\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "to": "frontend_libraries_plan_\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430_\u0440\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0433\u043e_\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e_\u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435_\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "to": "frontend_libraries_plan_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b_\u043a\u043e\u0434\u0430_\u0438_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b_\u043a\u043e\u0434\u0430_\u0438_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "frontend_libraries_plan_\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b_\u043a\u043e\u0434\u0430_\u0438_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "frontend_libraries_plan_\u0440\u0430\u0431\u043e\u0442\u0430_\u0441_\u0434\u0430\u043d\u043d\u044b\u043c\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b_\u043a\u043e\u0434\u0430_\u0438_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "frontend_libraries_plan_\u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e_\u0440\u0430\u0431\u043e\u0442\u044b_\u0441_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u043c\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u043f\u0430\u0442\u0442\u0435\u0440\u043d\u044b_\u043a\u043e\u0434\u0430_\u0438_\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438", "to": "frontend_libraries_plan_\u0444\u043e\u0440\u043c\u044b_\u043f\u043e_\u0448\u0430\u0431\u043b\u043e\u043d\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_10_\u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u044f_\u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_1_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430_\u0438_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_2_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_http_\u043a\u043b\u0438\u0435\u043d\u0442\u0430_ky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_3_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_zustand_stores", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_4_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_mui_\u0442\u0435\u043c\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_5_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0434\u0430\u0442\u044b_dayjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_6_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0444\u043e\u0440\u043c_react_hook_form_zod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_7_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0443\u0442\u0438\u043b\u0438\u0442\u044b_clsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_8_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435_\u0442\u0430\u0431\u043b\u0438\u0446_tanstack_react_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u044d\u0442\u0430\u043f\u044b_\u0440\u0430\u0431\u043e\u0442\u044b", "to": "frontend_libraries_plan_\u044d\u0442\u0430\u043f_9_\u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430_\u043a\u043e\u0434\u043e\u0432\u043e\u0439_\u0431\u0430\u0437\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u0440\u0438\u0441\u043a\u0438", "to": "frontend_libraries_plan_1_\u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c_\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438_mui_\u0441_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438_css_\u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u0440\u0438\u0441\u043a\u0438", "to": "frontend_libraries_plan_2_\u0437\u0430\u043c\u0435\u043d\u0430_\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438_\u0441_\u0442\u043e\u043a\u0435\u043d\u0430\u043c\u0438_\u043d\u0430_zustand", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u0440\u0438\u0441\u043a\u0438", "to": "frontend_libraries_plan_3_\u0440\u0438\u0441\u043a\u0438_\u0441\u0442\u0430\u0440\u0435\u043d\u0438\u044f_\u0434\u043e\u043a\u0430_\u0432_\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435_\u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_plan_\u0440\u0438\u0441\u043a\u0438", "to": "frontend_libraries_plan_4_\u043d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439_\u043d\u0430_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435_\u0444\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec", "to": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_spec_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0438\u043d\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_spec_\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f_\u0436\u0438\u0437\u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_spec_\u043f\u0440\u0438\u0435\u043c\u043b\u0435\u043c\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_spec_\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_spec_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u044b", "to": "frontend_libraries_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_spec_\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u044b", "to": "frontend_libraries_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks", "to": "frontend_libraries_tasks_tasks_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_tasks_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_tasks_\u0431\u0430\u0437\u043e\u0432\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_tasks_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_tasks_\u043e\u0441\u0442\u0430\u0432\u0448\u0438\u0435\u0441\u044f_\u0437\u0430\u0434\u0430\u0447\u0438_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_tasks_md_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439_\u0441\u0442\u0435\u043a", "to": "frontend_libraries_tasks_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_\u0431\u0430\u0437\u043e\u0432\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "to": "frontend_libraries_tasks_\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_\u0431\u0430\u0437\u043e\u0432\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "to": "frontend_libraries_tasks_\u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435_\u0444\u0430\u0439\u043b\u044b_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_\u0431\u0430\u0437\u043e\u0432\u0430\u044f_\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e", "to": "frontend_libraries_tasks_\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_\u043e\u0441\u0442\u0430\u0432\u0448\u0438\u0435\u0441\u044f_\u0437\u0430\u0434\u0430\u0447\u0438_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "frontend_libraries_tasks_low_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442_\u043f\u043e_\u043c\u0435\u0440\u0435_\u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_libraries_tasks_\u043e\u0441\u0442\u0430\u0432\u0448\u0438\u0435\u0441\u044f_\u0437\u0430\u0434\u0430\u0447\u0438_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432", "to": "frontend_libraries_tasks_mid_\u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439_\u0441\u043f\u0440\u0438\u043d\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_plan", "to": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "to": "frontend_shared_boundary_cleanup_plan_task_1_audit_shared_public_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "to": "frontend_shared_boundary_cleanup_plan_task_2_narrow_the_shared_surface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "to": "frontend_shared_boundary_cleanup_plan_task_3_fix_ambiguous_cross_boundary_imports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "to": "frontend_shared_boundary_cleanup_plan_task_4_update_boundary_docs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_plan_frontend_shared_boundary_cleanup_implementation_plan", "to": "frontend_shared_boundary_cleanup_plan_task_5_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "frontend_shared_boundary_cleanup_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec", "to": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "to": "frontend_shared_boundary_cleanup_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "to": "frontend_shared_boundary_cleanup_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "to": "frontend_shared_boundary_cleanup_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "to": "frontend_shared_boundary_cleanup_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_frontend_shared_boundary_cleanup", "to": "frontend_shared_boundary_cleanup_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_shared_boundary_cleanup_spec_1_\u0441\u0443\u0437\u0438\u0442\u044c_shared_public_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_shared_boundary_cleanup_spec_2_\u0443\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c_boundary_ambiguity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_shared_boundary_cleanup_spec_3_\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c_runtime_behavior", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_shared_boundary_cleanup_spec_4_\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c_public_api_\u043f\u0440\u0430\u0432\u0438\u043b\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_tasks", "to": "frontend_shared_boundary_cleanup_tasks_frontend_shared_boundary_cleanup_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_tasks_frontend_shared_boundary_cleanup_tasks", "to": "frontend_shared_boundary_cleanup_tasks_1_\u043d\u0430\u0439\u0442\u0438_boundary_ambiguity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_tasks_frontend_shared_boundary_cleanup_tasks", "to": "frontend_shared_boundary_cleanup_tasks_2_\u0441\u0443\u0437\u0438\u0442\u044c_shared_public_surface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_tasks_frontend_shared_boundary_cleanup_tasks", "to": "frontend_shared_boundary_cleanup_tasks_3_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e_\u0441\u043b\u043e\u0451\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_shared_boundary_cleanup_tasks_frontend_shared_boundary_cleanup_tasks", "to": "frontend_shared_boundary_cleanup_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan", "to": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_1_infrastructure_vitest_config_test_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_2_api_client_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_3_auth_api_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_4_authcontext_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_5_hook_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_6_ui_component_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_7_page_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_plan_frontend_test_coverage_implementation_plan", "to": "frontend_test_coverage_plan_task_8_final_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "frontend_test_coverage_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec", "to": "frontend_test_coverage_spec_frontend_unit_test_coverage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_conventions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_implementation_order_5_phases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_msw_handlers_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_project_structure_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_renderwithproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_stack", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_frontend_unit_test_coverage", "to": "frontend_test_coverage_spec_testing_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_implementation_order_5_phases", "to": "frontend_test_coverage_spec_phase_1_infrastructure_api_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_implementation_order_5_phases", "to": "frontend_test_coverage_spec_phase_2_auth_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_implementation_order_5_phases", "to": "frontend_test_coverage_spec_phase_3_ui_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_implementation_order_5_phases", "to": "frontend_test_coverage_spec_phase_4_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_coverage_spec_implementation_order_5_phases", "to": "frontend_test_coverage_spec_phase_5_scripts_wiring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_plan", "to": "frontend_test_hygiene_plan_frontend_test_hygiene_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_plan_frontend_test_hygiene_implementation_plan", "to": "frontend_test_hygiene_plan_task_1_inspect_the_current_test_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_plan_frontend_test_hygiene_implementation_plan", "to": "frontend_test_hygiene_plan_task_2_narrow_the_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_plan_frontend_test_hygiene_implementation_plan", "to": "frontend_test_hygiene_plan_task_3_normalize_conventions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_plan_frontend_test_hygiene_implementation_plan", "to": "frontend_test_hygiene_plan_task_4_verify_coverage_remains_stable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "frontend_test_hygiene_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec", "to": "frontend_test_hygiene_spec_frontend_test_hygiene", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_frontend_test_hygiene", "to": "frontend_test_hygiene_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_frontend_test_hygiene", "to": "frontend_test_hygiene_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_frontend_test_hygiene", "to": "frontend_test_hygiene_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_frontend_test_hygiene", "to": "frontend_test_hygiene_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_frontend_test_hygiene", "to": "frontend_test_hygiene_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_test_hygiene_spec_1_test_helpers_stay_minimal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_test_hygiene_spec_2_testing_conventions_stay_consistent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_test_hygiene_spec_3_coverage_is_preserved", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "frontend_test_hygiene_spec_4_no_production_behavior_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_tasks", "to": "frontend_test_hygiene_tasks_frontend_test_hygiene_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_tasks_frontend_test_hygiene_tasks", "to": "frontend_test_hygiene_tasks_1_\u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c_\u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435_helpers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_tasks_frontend_test_hygiene_tasks", "to": "frontend_test_hygiene_tasks_2_\u0441\u0443\u0437\u0438\u0442\u044c_test_layer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_tasks_frontend_test_hygiene_tasks", "to": "frontend_test_hygiene_tasks_3_\u043d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c_conventions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_test_hygiene_tasks_frontend_test_hygiene_tasks", "to": "frontend_test_hygiene_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan", "to": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks", "to": "fsd_entities_migration_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "to": "fsd_entities_migration_plan_task_1_entities_stock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "to": "fsd_entities_migration_plan_task_2_entities_bond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "to": "fsd_entities_migration_plan_task_3_entities_portfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "to": "fsd_entities_migration_plan_task_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_fsd_entities_migration_implementation_plan", "to": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_bond_entity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_consumer_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_portfolio_entity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_shared_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_shim_files_\u043e\u0431\u0440\u0430\u0442\u043d\u043e_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0435_re_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_stock_entity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_\u043a\u0430\u0440\u0442\u0430_\u0444\u0430\u0439\u043b\u043e\u0432", "to": "fsd_entities_migration_plan_test_relocation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_task_1_entities_stock", "to": "fsd_entities_migration_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_task_1_entities_stock", "to": "fsd_entities_migration_plan_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_task_2_entities_bond", "to": "fsd_entities_migration_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_121", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_task_2_entities_bond", "to": "fsd_entities_migration_plan_\u0444\u0430\u0439\u043b\u044b_112", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_task_3_entities_portfolio", "to": "fsd_entities_migration_plan_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_152", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_plan_task_3_entities_portfolio", "to": "fsd_entities_migration_plan_\u0444\u0430\u0439\u043b\u044b_142", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec", "to": "fsd_entities_migration_spec_fsd_entities_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_fsd_entities_migration", "to": "fsd_entities_migration_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_fsd_entities_migration", "to": "fsd_entities_migration_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_fsd_entities_migration", "to": "fsd_entities_migration_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_fsd_entities_migration", "to": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_fsd_entities_migration", "to": "fsd_entities_migration_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "fsd_entities_migration_spec_1_\u043a\u0430\u0436\u0434\u0430\u044f_\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u044c_\u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442_\u044f\u0432\u043d\u0443\u044e_fsd_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "fsd_entities_migration_spec_2_api_\u0444\u0443\u043d\u043a\u0446\u0438\u0438_\u0432\u044b\u043d\u043e\u0441\u044f\u0442\u0441\u044f_\u0438\u0437_shared_api_client_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "fsd_entities_migration_spec_3_query_\u0445\u0443\u043a\u0438_\u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f_\u0438\u0437_global_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "fsd_entities_migration_spec_4_\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c_\u043d\u0430_\u0432\u0440\u0435\u043c\u044f_\u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "fsd_entities_migration_spec_5_\u0442\u0435\u0441\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0442_\u0437\u0430_\u043a\u043e\u0434\u043e\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "to": "fsd_entities_migration_spec_6_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_\u043d\u0435_\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks", "to": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_entities_migration_tasks_1_entities_stock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_entities_migration_tasks_2_entities_bond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_entities_migration_tasks_3_entities_portfolio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_entities_migration_tasks_4_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_entities_migration_tasks_fsd_entities_migration_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_entities_migration_tasks_pre_flight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan", "to": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_file_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_self_review_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_task_1_\u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c_\u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435_shared_app_testsessionprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_task_2_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokerpositiontable_\u0438\u0437_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_task_3_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokersummary_brokerassetcards_brokeroverviewskeleton_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_task_4_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_addpositionform_\u0432_features_add_position", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_task_5_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_cursor_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e_\u0432_shared_lib_usecursorpagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_plan_fsd_frontend_refactor_implementation_plan", "to": "fsd_frontend_refactor_plan_task_6_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_conarti_eslint_plugin_feature_sliced", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "fsd_frontend_refactor_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec", "to": "fsd_frontend_refactor_spec_fsd_frontend_refactor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_fsd_frontend_refactor", "to": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_fsd_frontend_refactor", "to": "fsd_frontend_refactor_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0451\u043c\u043a\u0438_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_fsd_frontend_refactor", "to": "fsd_frontend_refactor_spec_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_fsd_frontend_refactor", "to": "fsd_frontend_refactor_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_frontend_refactor_spec_1_\u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c_\u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435_\u0441\u043b\u043e\u0451\u0432_\u0432_shared_lib_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_frontend_refactor_spec_2_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokerpositiontable_\u0438\u0437_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_frontend_refactor_spec_3_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_brokersummary_brokerassetcards_brokeroverviewskeleton_\u0432_\u0432\u0438\u0434\u0436\u0435\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_frontend_refactor_spec_4_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_addpositionform_\u0432_\u0444\u0438\u0447\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_frontend_refactor_spec_5_\u0432\u044b\u043d\u0435\u0441\u0442\u0438_cursor_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044e_\u0432_shared_\u0445\u0443\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_spec_\u0437\u0430\u0434\u0430\u0447\u0438", "to": "fsd_frontend_refactor_spec_6_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_eslint_\u043f\u043b\u0430\u0433\u0438\u043d_fsd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_frontend_refactor_tasks", "to": "fsd_frontend_refactor_tasks_fsd_frontend_refactor_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan", "to": "fsd_quick_fix_plan_fsd_quick_fix_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_fsd_quick_fix_plan", "to": "fsd_quick_fix_plan_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0435_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_fsd_quick_fix_plan", "to": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "to": "fsd_quick_fix_plan_task_1_\u0443\u0431\u0440\u0430\u0442\u044c_cross_entity_import", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "to": "fsd_quick_fix_plan_task_2_\u0434\u0435\u0434\u0443\u043f\u043b\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0444\u043e\u0440\u043c\u0430\u0442\u0442\u0435\u0440\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "to": "fsd_quick_fix_plan_task_3_\u0443\u043f\u043b\u043e\u0441\u0442\u0438\u0442\u044c_shared_ui_broker_allocation_bar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "to": "fsd_quick_fix_plan_task_4_\u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c_entities_stock_index_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_plan_\u043f\u043e\u0440\u044f\u0434\u043e\u043a_\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f", "to": "fsd_quick_fix_plan_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_spec", "to": "fsd_quick_fix_spec_fsd_quick_fix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_spec_fsd_quick_fix", "to": "fsd_quick_fix_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_spec_fsd_quick_fix", "to": "fsd_quick_fix_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_spec_fsd_quick_fix", "to": "fsd_quick_fix_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fsd_quick_fix_tasks", "to": "fsd_quick_fix_tasks_fsd_quick_fix_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan", "to": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_sprint_1_backend_foundation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_sprint_2_securities_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_sprint_3_bonds_history_candles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_sprint_4_frontend_foundation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_sprint_5_frontend_details", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_moexvibe_mvp_implementation_plan", "to": "moex_vibe_plan_sprint_6_documentation_infrastructure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_1_initialize_project_root_with_npm_workspaces", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_2_scaffold_nestjs_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_3_configuration_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_4_common_dtos_filters_interceptors_middleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_5_health_check_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_6_moexclient_module_with_rate_limiting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_1_backend_foundation", "to": "moex_vibe_plan_task_1_7_cache_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_2_securities_api", "to": "moex_vibe_plan_task_2_1_securities_search_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_2_securities_api", "to": "moex_vibe_plan_task_2_2_shares_module_spec_marketdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_3_bonds_history_candles", "to": "moex_vibe_plan_task_3_1_bonds_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_3_bonds_history_candles", "to": "moex_vibe_plan_task_3_2_candles_module_shared_by_shares_bonds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_4_frontend_foundation", "to": "moex_vibe_plan_task_4_1_scaffold_react_vite_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_4_frontend_foundation", "to": "moex_vibe_plan_task_4_2_generate_api_client_from_openapi_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_4_frontend_foundation", "to": "moex_vibe_plan_task_4_3_layout_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_4_frontend_foundation", "to": "moex_vibe_plan_task_4_4_search_hook_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_5_frontend_details", "to": "moex_vibe_plan_task_5_1_stock_page_hook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_5_frontend_details", "to": "moex_vibe_plan_task_5_2_stockdetails_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_5_frontend_details", "to": "moex_vibe_plan_task_5_3_bond_page_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_5_frontend_details", "to": "moex_vibe_plan_task_5_4_bonddetails_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_5_frontend_details", "to": "moex_vibe_plan_task_5_5_pricechart_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_5_frontend_details", "to": "moex_vibe_plan_task_5_6_stockpage_and_bondpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_6_documentation_infrastructure", "to": "moex_vibe_plan_task_6_1_openapi_spec_finalization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_6_documentation_infrastructure", "to": "moex_vibe_plan_task_6_2_adr_documentation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_6_documentation_infrastructure", "to": "moex_vibe_plan_task_6_3_docker_setup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_plan_sprint_6_documentation_infrastructure", "to": "moex_vibe_plan_task_6_4_readme_and_final_checks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "moex_vibe_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec", "to": "moex_vibe_spec_moexvibe_mvp_design_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_1_product_requirements_document_prd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_2_domain_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_3_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_4_api_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_5_repo_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_6_sprint_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_7_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_moexvibe_mvp_design_specification", "to": "moex_vibe_spec_8_post_mvp_roadmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_1_product_requirements_document_prd", "to": "moex_vibe_spec_1_1_product_vision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_1_product_requirements_document_prd", "to": "moex_vibe_spec_1_2_target_audience", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_1_product_requirements_document_prd", "to": "moex_vibe_spec_1_3_mvp_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_1_product_requirements_document_prd", "to": "moex_vibe_spec_1_4_user_stories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_1_product_requirements_document_prd", "to": "moex_vibe_spec_1_5_non_functional_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_3_architecture", "to": "moex_vibe_spec_3_1_caching_strategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_3_architecture", "to": "moex_vibe_spec_3_2_error_handling_strategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_3_architecture", "to": "moex_vibe_spec_3_3_rate_limiting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_6_sprint_plan", "to": "moex_vibe_spec_sprint_1_backend_foundation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_6_sprint_plan", "to": "moex_vibe_spec_sprint_2_securities_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_6_sprint_plan", "to": "moex_vibe_spec_sprint_3_bonds_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_6_sprint_plan", "to": "moex_vibe_spec_sprint_4_frontend_foundation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_6_sprint_plan", "to": "moex_vibe_spec_sprint_5_frontend_details", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moex_vibe_spec_6_sprint_plan", "to": "moex_vibe_spec_sprint_6_docs_infrastructure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan", "to": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "to": "pagination_loading_overlay_plan_task_1_css_spinner_animation_and_overlay_styles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "to": "pagination_loading_overlay_plan_task_2_positiongrouptable_overlay_on_pagination_spinner_in_buttons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "to": "pagination_loading_overlay_plan_task_3_brokeroperationstable_new_isfetching_prop_overlay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "to": "pagination_loading_overlay_plan_task_4_brokeraccountdetailpage_pass_isfetching_to_operations_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "to": "pagination_loading_overlay_plan_task_5_update_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_plan_pagination_loading_overlay_implementation_plan", "to": "pagination_loading_overlay_plan_task_6_lint_and_final_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "pagination_loading_overlay_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec", "to": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "pagination_loading_overlay_spec_\u0433\u0434\u0435_\u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "pagination_loading_overlay_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0432\u044b\u0431\u0440\u0430\u043d_c3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "pagination_loading_overlay_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "pagination_loading_overlay_spec_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "pagination_loading_overlay_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0438\u043d\u0434\u0438\u043a\u0430\u0446\u0438\u044f_\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438_\u043f\u0440\u0438_\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438_\u0441\u0442\u0440\u0430\u043d\u0438\u0446_\u0432_\u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0445_\u0431\u0440\u043e\u043a\u0435\u0440\u0430", "to": "pagination_loading_overlay_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0432\u044b\u0431\u0440\u0430\u043d_c3", "to": "pagination_loading_overlay_spec_\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0435_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0432\u044b\u0431\u0440\u0430\u043d_c3", "to": "pagination_loading_overlay_spec_\u043a\u0430\u043a_\u044d\u0442\u043e_\u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0432\u044b\u0431\u0440\u0430\u043d_c3", "to": "pagination_loading_overlay_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_tableloadingoverlay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pagination_loading_overlay_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0432\u044b\u0431\u0440\u0430\u043d_c3", "to": "pagination_loading_overlay_spec_\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f_\u0441\u043f\u0438\u043d\u043d\u0435\u0440_\u0432_\u043a\u043d\u043e\u043f\u043a\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan", "to": "pilot_migration_plan_pilot_migration_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_pilot_migration_implementation_plan", "to": "pilot_migration_plan_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_pilot_migration_implementation_plan", "to": "pilot_migration_plan_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_pilot_migration_implementation_plan", "to": "pilot_migration_plan_step_by_step", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_files", "to": "pilot_migration_plan_modify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_files", "to": "pilot_migration_plan_no_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_step_by_step", "to": "pilot_migration_plan_step_1_migrate_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_step_by_step", "to": "pilot_migration_plan_step_2_migrate_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_plan_step_by_step", "to": "pilot_migration_plan_step_3_verify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "pilot_migration_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_spec", "to": "pilot_migration_spec_pilot_migration_design_system_adoption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_spec_pilot_migration_design_system_adoption", "to": "pilot_migration_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_spec_pilot_migration_design_system_adoption", "to": "pilot_migration_spec_goal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_spec_pilot_migration_design_system_adoption", "to": "pilot_migration_spec_out_of_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_spec_pilot_migration_design_system_adoption", "to": "pilot_migration_spec_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_spec_pilot_migration_design_system_adoption", "to": "pilot_migration_spec_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_tasks", "to": "pilot_migration_tasks_pilot_migration_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_tasks_pilot_migration_tasks", "to": "pilot_migration_tasks_1_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_tasks_pilot_migration_tasks", "to": "pilot_migration_tasks_2_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pilot_migration_tasks_pilot_migration_tasks", "to": "pilot_migration_tasks_3_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_plan", "to": "portfolio_allocation_chart_plan_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_plan_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "portfolio_allocation_chart_plan_\u0437\u0430\u0434\u0430\u0447\u0430_1_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_allocationchart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_plan_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "portfolio_allocation_chart_plan_\u0437\u0430\u0434\u0430\u0447\u0430_2_\u0438\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0432_portfoliosummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "portfolio_allocation_chart_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec", "to": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "portfolio_allocation_chart_spec_\u0433\u0440\u0430\u043d\u0438\u0447\u043d\u044b\u0435_\u0441\u043b\u0443\u0447\u0430\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "portfolio_allocation_chart_spec_\u0438\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "portfolio_allocation_chart_spec_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "portfolio_allocation_chart_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_allocationchart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430_\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "portfolio_allocation_chart_spec_\u043e\u0431\u0437\u043e\u0440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_allocationchart", "to": "portfolio_allocation_chart_spec_\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_allocationchart", "to": "portfolio_allocation_chart_spec_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442_allocationchart", "to": "portfolio_allocation_chart_spec_\u0446\u0432\u0435\u0442\u043e\u0432\u0430\u044f_\u0441\u0445\u0435\u043c\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0438\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "to": "portfolio_allocation_chart_spec_\u0438\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_allocation_chart_spec_\u0438\u0437\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435_\u0444\u0430\u0439\u043b\u044b", "to": "portfolio_allocation_chart_spec_\u043d\u043e\u0432\u044b\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan", "to": "portfolio_analytics_plan_portfolio_analytics_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_portfolio_analytics_implementation_plan", "to": "portfolio_analytics_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_backend_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_backend_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_frontend_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_frontend_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_10_frontend_analyticssummary_portfoliosummary_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_11_frontend_portfoliodetailpage_add_buyprice_to_add_position_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_12_verify_everything_works", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_1_prisma_schema_add_buyprice_and_buydate_to_position", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_2_backend_dto_updates_add_position_and_update_position", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_3_backend_portfolioservice_pnl_enrichment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_4_backend_analyticsresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_5_backend_tests_pnl_calculation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_6_frontend_types_add_pnl_fields_to_responses_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_7_frontend_api_client_hooks_pass_buyprice_buydate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_8_frontend_sharepositionrow_add_pnl_columns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_plan_file_structure", "to": "portfolio_analytics_plan_task_9_frontend_bondpositionrow_add_pnl_columns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "portfolio_analytics_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec", "to": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_10_openapi_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_11_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_12_self_review_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_1_product_requirements_document_prd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_2_domain_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_3_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_4_api_contracts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_5_database_schema_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_6_business_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_7_events_domain_events", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_8_risks_and_edge_cases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_portfolio_analytics_design_specification_sdd", "to": "portfolio_analytics_spec_9_implementation_phases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_1_product_requirements_document_prd", "to": "portfolio_analytics_spec_1_1_product_vision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_1_product_requirements_document_prd", "to": "portfolio_analytics_spec_1_2_target_audience", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_1_product_requirements_document_prd", "to": "portfolio_analytics_spec_1_3_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_1_product_requirements_document_prd", "to": "portfolio_analytics_spec_1_4_user_stories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_1_product_requirements_document_prd", "to": "portfolio_analytics_spec_1_5_non_functional_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_2_domain_model", "to": "portfolio_analytics_spec_\u0440\u0430\u0441\u0447\u0451\u0442_pnl_\u0434\u043b\u044f_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_2_domain_model", "to": "portfolio_analytics_spec_\u0440\u0430\u0441\u0447\u0451\u0442_\u0434\u0438\u0432\u0438\u0434\u0435\u043d\u0434\u043d\u043e\u0433\u043e_\u0434\u043e\u0445\u043e\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_3_architecture", "to": "portfolio_analytics_spec_3_1_backend_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_\u0432_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c_portfoliomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_3_architecture", "to": "portfolio_analytics_spec_3_2_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_3_architecture", "to": "portfolio_analytics_spec_3_3_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_4_api_contracts", "to": "portfolio_analytics_spec_4_1_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f_\u0432_\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445_\u044d\u043d\u0434\u043f\u043e\u0438\u043d\u0442\u0430\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_4_api_contracts", "to": "portfolio_analytics_spec_4_2_response_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_4_api_contracts", "to": "portfolio_analytics_spec_4_3_error_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_9_implementation_phases", "to": "portfolio_analytics_spec_phase_1_cost_basis_pnl_core", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_9_implementation_phases", "to": "portfolio_analytics_spec_phase_2_dividend_income", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_9_implementation_phases", "to": "portfolio_analytics_spec_phase_3_target_allocation_comparison", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_11_adr", "to": "portfolio_analytics_spec_adr_011_pnl_calculation_on_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_11_adr", "to": "portfolio_analytics_spec_adr_012_buyprice_\u043a\u0430\u043a_float_\u043d\u0435_decimal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_analytics_spec_11_adr", "to": "portfolio_analytics_spec_adr_013_dividend_income_calculation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_plan", "to": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "to": "portfolio_enricher_optimization_plan_task_1_add_types_shortname_on_share_market_data_moexbondpositiondata_combined_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "to": "portfolio_enricher_optimization_plan_task_2_add_batch_methods_to_moexclientservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "to": "portfolio_enricher_optimization_plan_task_3_rewrite_enrichpositions_in_portfolioservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "to": "portfolio_enricher_optimization_plan_task_4_verify_and_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_plan_portfolio_enricher_optimization_implementation_plan", "to": "portfolio_enricher_optimization_plan_task_5_document_performance_gain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "portfolio_enricher_optimization_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec", "to": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "to": "portfolio_enricher_optimization_spec_files_changed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "to": "portfolio_enricher_optimization_spec_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "to": "portfolio_enricher_optimization_spec_risks_and_mitigations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "to": "portfolio_enricher_optimization_spec_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_portfolio_enricher_optimization", "to": "portfolio_enricher_optimization_spec_solution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_solution", "to": "portfolio_enricher_optimization_spec_1_merge_bond_data_calls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_solution", "to": "portfolio_enricher_optimization_spec_2_remove_redundant_getsecuritydescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_solution", "to": "portfolio_enricher_optimization_spec_3_batch_requests_by_market", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_enricher_optimization_spec_solution", "to": "portfolio_enricher_optimization_spec_metrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan", "to": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_1_create_portfoliolistresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_2_write_failing_tests_for_portfolioservice_findall_enrichment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_3_implement_backend_enrichment_in_portfolioservice_findall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_4_update_portfoliocontroller_with_new_dto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_5_update_frontend_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_6_update_portfoliocard_to_show_enriched_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_plan_portfolio_list_enrichment_implementation_plan", "to": "portfolio_list_enrichment_plan_task_7_run_full_test_suite_and_verify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "portfolio_list_enrichment_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec", "to": "portfolio_list_enrichment_spec_portfolio_list_enrichment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_portfolio_list_enrichment", "to": "portfolio_list_enrichment_spec_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_portfolio_list_enrichment", "to": "portfolio_list_enrichment_spec_solution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_solution", "to": "portfolio_list_enrichment_spec_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_solution", "to": "portfolio_list_enrichment_spec_data_flow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_solution", "to": "portfolio_list_enrichment_spec_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_solution", "to": "portfolio_list_enrichment_spec_risks_and_edge_cases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_backend", "to": "portfolio_list_enrichment_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435_portfoliocontroller_findall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_backend", "to": "portfolio_list_enrichment_spec_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435_portfolioservice_findall_userid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_backend", "to": "portfolio_list_enrichment_spec_\u043d\u043e\u0432\u044b\u0439_dto_portfoliolistresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_frontend", "to": "portfolio_list_enrichment_spec_portfoliocard_tsx_\u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_frontend", "to": "portfolio_list_enrichment_spec_portfolioslistpage_tsx_\u0431\u0435\u0437_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_list_enrichment_spec_frontend", "to": "portfolio_list_enrichment_spec_\u0442\u0438\u043f_portfolio_\u0432_responses_ts_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043f\u043e\u043b\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan", "to": "portfolio_plan_portfolio_phase_1_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_portfolio_phase_1_implementation_plan", "to": "portfolio_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_portfolio_phase_1_implementation_plan", "to": "portfolio_plan_self_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_backend_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_backend_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_frontend_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_frontend_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_1_prisma_schema_portfolio_and_position_models", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_2_backend_portfoliomodule_scaffold", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_3_frontend_api_types_and_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_4_frontend_tanstack_query_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_5_frontend_portfolio_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_6_frontend_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_plan_file_structure", "to": "portfolio_plan_task_7_docusaurus_documentation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "portfolio_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec", "to": "portfolio_spec_portfolio_design_specification_sdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_10_openapi_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_11_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_12_self_review_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_1_product_requirements_document_prd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_2_domain_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_3_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_4_api_contracts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_5_database_schema_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_6_business_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_7_events_domain_events", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_8_risks_and_edge_cases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_portfolio_design_specification_sdd", "to": "portfolio_spec_9_implementation_phases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_1_product_requirements_document_prd", "to": "portfolio_spec_1_1_product_vision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_1_product_requirements_document_prd", "to": "portfolio_spec_1_2_target_audience", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_1_product_requirements_document_prd", "to": "portfolio_spec_1_3_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_1_product_requirements_document_prd", "to": "portfolio_spec_1_4_user_stories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_1_product_requirements_document_prd", "to": "portfolio_spec_1_5_non_functional_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_3_architecture", "to": "portfolio_spec_3_1_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_3_architecture", "to": "portfolio_spec_3_2_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_3_architecture", "to": "portfolio_spec_3_3_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_4_api_contracts", "to": "portfolio_spec_4_1_portfolio_crud", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_4_api_contracts", "to": "portfolio_spec_4_2_position_crud", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_4_api_contracts", "to": "portfolio_spec_4_3_response_types_swagger_dtos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_9_implementation_phases", "to": "portfolio_spec_phase_1_portfolio_position_crud", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_9_implementation_phases", "to": "portfolio_spec_phase_2_positions_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_9_implementation_phases", "to": "portfolio_spec_phase_3_transactions_\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_9_implementation_phases", "to": "portfolio_spec_phase_4_analytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_9_implementation_phases", "to": "portfolio_spec_phase_5_dividend_and_coupon_forecasts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_9_implementation_phases", "to": "portfolio_spec_phase_6_corporate_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_11_adr", "to": "portfolio_spec_adr_009_portfolio_domain_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "portfolio_spec_11_adr", "to": "portfolio_spec_adr_010_backend_price_computation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_plan", "to": "pre_commit_checks_plan_pre_commit_checks_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_plan_pre_commit_checks_implementation_plan", "to": "pre_commit_checks_plan_task_1_eslint_\u0434\u043b\u044f_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_plan_pre_commit_checks_implementation_plan", "to": "pre_commit_checks_plan_task_2_husky_lint_staged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_plan_pre_commit_checks_implementation_plan", "to": "pre_commit_checks_plan_task_3_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_root_lint_script", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "pre_commit_checks_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec", "to": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u0434\u0430\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435_\u043f\u0440\u0438_\u043e\u0448\u0438\u0431\u043a\u0430\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u0441\u043e\u0441\u0442\u0430\u0432_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u0441\u0445\u0435\u043c\u0430_\u0440\u0430\u0431\u043e\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_pre_commit_checks_eslint_prettier_\u0434\u043b\u044f_\u043c\u043e\u043d\u043e\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f", "to": "pre_commit_checks_spec_\u0444\u0430\u0439\u043b\u044b_\u0434\u043b\u044f_\u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_\u0441\u043e\u0441\u0442\u0430\u0432_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "pre_commit_checks_spec_1_frontend_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_\u0441\u043e\u0441\u0442\u0430\u0432_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "pre_commit_checks_spec_2_husky_lint_staged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pre_commit_checks_spec_\u0441\u043e\u0441\u0442\u0430\u0432_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "pre_commit_checks_spec_3_root_lint_script", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan", "to": "quality_gate_contract_docs_plan_\u0438\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan", "to": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "to": "quality_gate_contract_docs_plan_task_1_\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c_backend_unit_tests_\u0438_live_moex_integration_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "to": "quality_gate_contract_docs_plan_task_2_\u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438_backend_service_specs_\u043d\u0430_mocked_dependencies_\u0438_\u043f\u043e\u0447\u0438\u043d\u0438\u0442\u044c_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "to": "quality_gate_contract_docs_plan_task_3_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_offline_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443_openapi_artifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "to": "quality_gate_contract_docs_plan_task_4_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_swagger_json_\u0438_frontend_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "to": "quality_gate_contract_docs_plan_task_5_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_readme_agents_\u0438_docusaurus_docs_\u043d\u0430_\u0440\u0443\u0441\u0441\u043a\u043e\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_implementation_plan", "to": "quality_gate_contract_docs_plan_\u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "to": "quality_gate_contract_docs_plan_\u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430", "to": "quality_gate_contract_docs_plan_\u0441\u043e\u0437\u0434\u0430\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0438\u043b\u0438", "to": "quality_gate_contract_docs_plan_self_review_\u043f\u043b\u0430\u043d\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_plan_\u0438\u043b\u0438", "to": "quality_gate_contract_docs_plan_task_6_\u0444\u0438\u043d\u0430\u043b\u044c\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_quality_gate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "quality_gate_contract_docs_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec", "to": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_backend_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_documentation_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_frontend_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_openapi_contract_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_prd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_self_review_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u0440\u0438\u0441\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u0441\u0442\u0430\u0442\u0443\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u0442\u0435\u043a\u0443\u0449\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438_quality_gate_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_prd", "to": "quality_gate_contract_docs_spec_\u043d\u0435_\u0432\u0445\u043e\u0434\u0438\u0442_\u0432_\u0437\u0430\u0434\u0430\u0447\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_prd", "to": "quality_gate_contract_docs_spec_\u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_prd", "to": "quality_gate_contract_docs_spec_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0442\u0435\u043a\u0443\u0449\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043a\u0438", "to": "quality_gate_contract_docs_spec_\u043f\u0430\u0434\u0430\u044e\u0449\u0438\u0435_\u0438\u043b\u0438_\u0448\u0443\u043c\u043d\u044b\u0435_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0442\u0435\u043a\u0443\u0449\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043a\u0438", "to": "quality_gate_contract_docs_spec_\u043f\u0440\u043e\u0445\u043e\u0434\u044f\u0449\u0438\u0435_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0442\u0435\u043a\u0443\u0449\u0438\u0435_\u043d\u0430\u0445\u043e\u0434\u043a\u0438", "to": "quality_gate_contract_docs_spec_\u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_\u0438_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u043d\u044b\u0435_\u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "to": "quality_gate_contract_docs_spec_quality_gate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "to": "quality_gate_contract_docs_spec_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_api_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u0434\u043e\u043c\u0435\u043d\u043d\u0430\u044f_\u043c\u043e\u0434\u0435\u043b\u044c", "to": "quality_gate_contract_docs_spec_\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_adr", "to": "quality_gate_contract_docs_spec_\u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_adr", "to": "quality_gate_contract_docs_spec_\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_adr", "to": "quality_gate_contract_docs_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_backend_architecture", "to": "quality_gate_contract_docs_spec_openapi_decorators", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_backend_architecture", "to": "quality_gate_contract_docs_spec_\u0433\u0440\u0430\u043d\u0438\u0446\u0430_live_integration_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_backend_architecture", "to": "quality_gate_contract_docs_spec_\u0433\u0440\u0430\u043d\u0438\u0446\u0430_unit_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_frontend_architecture", "to": "quality_gate_contract_docs_spec_generated_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_frontend_architecture", "to": "quality_gate_contract_docs_spec_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_documentation_architecture", "to": "quality_gate_contract_docs_spec_agents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_documentation_architecture", "to": "quality_gate_contract_docs_spec_docusaurus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_documentation_architecture", "to": "quality_gate_contract_docs_spec_readme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_1_\u0441\u0442\u0430\u0431\u0438\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_2_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_contract_artifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_3_\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "to": "quality_gate_contract_docs_spec_\u044d\u0442\u0430\u043f_4_\u043f\u043e\u043b\u043d\u0430\u044f_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "russian_docs_and_architecture_diagrams_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec", "to": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0451\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043f\u043b\u0430\u043d_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f_architecture_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043f\u043b\u0430\u043d_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439_mermaid_\u043f\u0430\u0442\u0442\u0435\u0440\u043d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u0434\u043b\u044f_\u0440\u0435\u0432\u044c\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u0440\u0438\u0441\u043a\u0438_\u0438_\u0440\u0435\u0448\u0435\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438_\u0438_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u044b\u0445_\u0441\u0445\u0435\u043c_sdd_\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "to": "russian_docs_and_architecture_diagrams_spec_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "russian_docs_and_architecture_diagrams_spec_\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u0430\u044f_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "to": "russian_docs_and_architecture_diagrams_spec_\u0441\u0442\u0438\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "to": "russian_docs_and_architecture_diagrams_spec_\u043d\u0435_\u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "to": "russian_docs_and_architecture_diagrams_spec_\u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0440\u0443\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", "to": "russian_docs_and_architecture_diagrams_spec_\u0441\u0442\u0438\u043b\u044c_\u0440\u0443\u0441\u0441\u043a\u043e\u0433\u043e_\u0442\u0435\u043a\u0441\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "to": "russian_docs_and_architecture_diagrams_spec_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "russian_docs_and_architecture_diagrams_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430", "to": "russian_docs_and_architecture_diagrams_spec_\u0440\u0443\u0447\u043d\u0430\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan", "to": "security_screener_plan_security_screener_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_security_screener_implementation_plan", "to": "security_screener_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_backend_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_backend_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_frontend_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_frontend_new_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_10_frontend_filterpanel_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_11_frontend_screenertable_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_12_frontend_screenerpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_13_frontend_routes_nav_link", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_14_verify_everything_works", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_1_backend_moexclientservice_allow_full_board_fetch_with_empty_secids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_2_backend_screenerquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_3_backend_screenerresponsedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_4_backend_screenerservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_5_backend_controller_module_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_6_backend_tests_screenerservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_7_frontend_types_add_screener_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_8_frontend_api_client_for_screener", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_plan_file_structure", "to": "security_screener_plan_task_9_frontend_usescreener_hook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "security_screener_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec", "to": "security_screener_spec_security_screener_design_specification_sdd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_10_openapi_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_11_adr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_12_self_review_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_1_product_requirements_document_prd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_2_domain_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_3_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_4_api_contracts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_5_database_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_6_business_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_7_events_domain_events", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_8_risks_and_edge_cases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_security_screener_design_specification_sdd", "to": "security_screener_spec_9_implementation_phases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_1_product_requirements_document_prd", "to": "security_screener_spec_1_1_product_vision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_1_product_requirements_document_prd", "to": "security_screener_spec_1_2_target_audience", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_1_product_requirements_document_prd", "to": "security_screener_spec_1_3_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_1_product_requirements_document_prd", "to": "security_screener_spec_1_4_user_stories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_1_product_requirements_document_prd", "to": "security_screener_spec_1_5_non_functional_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_2_domain_model", "to": "security_screener_spec_\u0444\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f_\u043d\u0430_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_3_architecture", "to": "security_screener_spec_3_1_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_3_architecture", "to": "security_screener_spec_3_2_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_3_architecture", "to": "security_screener_spec_3_3_\u0440\u043e\u0443\u0442\u0438\u043d\u0433", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_3_architecture", "to": "security_screener_spec_3_4_state_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_4_api_contracts", "to": "security_screener_spec_4_1_screener_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_4_api_contracts", "to": "security_screener_spec_4_2_response_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_4_api_contracts", "to": "security_screener_spec_4_3_error_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_9_implementation_phases", "to": "security_screener_spec_phase_1_core_screener_shares_bonds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_9_implementation_phases", "to": "security_screener_spec_phase_2_dividend_yield_shares", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_9_implementation_phases", "to": "security_screener_spec_phase_3_saved_screener_templates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_11_adr", "to": "security_screener_spec_adr_014_full_board_fetch_vs_incremental", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_11_adr", "to": "security_screener_spec_adr_015_url_search_params_as_source_of_truth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "security_screener_spec_11_adr", "to": "security_screener_spec_adr_016_sorting_on_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan", "to": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks", "to": "table_migration_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_1_\u0443\u0442\u043e\u0447\u043d\u0438\u0442\u044c_api_datatable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_2_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_dividendstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_3_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_screenertable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_4_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_sharepositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_5_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_bondpositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_6_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_legacy_\u0441\u043b\u043e\u044f_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_plan_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_plan", "to": "table_migration_plan_task_7_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "table_migration_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec", "to": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks", "to": "table_migration_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_in_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_out_of_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435_\u0444\u0438\u0447\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_spec_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "to": "table_migration_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks", "to": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_1_\u0443\u0442\u043e\u0447\u043d\u0438\u0442\u044c_api_datatable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_2_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_dividendstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_3_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_screenertable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_4_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_sharepositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_5_\u043c\u0438\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c_bondpositiontable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_6_\u043e\u0447\u0438\u0441\u0442\u043a\u0430_legacy_\u0438_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "table_migration_tasks_\u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f_\u0442\u0430\u0431\u043b\u0438\u0446_\u043d\u0430_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_tasks", "to": "table_migration_tasks_task_7_\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan", "to": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_file_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_10_add_durable_operation_sync_models_and_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_11_publish_t_bank_integration_documentation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_12_final_verification_and_openapi_contract_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_1_add_grpc_dependencies_and_official_proto_contracts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_2_add_configuration_and_core_t_bank_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_3_implement_money_account_and_operation_mappers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_4_implement_tbankclientservice_grpc_transport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_5_implement_broker_accounts_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_6_implement_broker_portfolio_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_7_implement_broker_operations_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_8_generate_frontend_types_and_add_broker_api_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_t_bank_broker_portfolios_implementation_plan", "to": "tbank_broker_portfolios_plan_task_9_build_broker_portfolio_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_file_structure", "to": "tbank_broker_portfolios_plan_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_file_structure", "to": "tbank_broker_portfolios_plan_durable_sync", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_file_structure", "to": "tbank_broker_portfolios_plan_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_plan_file_structure", "to": "tbank_broker_portfolios_plan_published_docs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "tbank_broker_portfolios_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec", "to": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430_\u0431\u044d\u043a\u0435\u043d\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0432\u0438\u0434_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430_\u043d\u0430_\u0444\u0440\u043e\u043d\u0442\u0435\u043d\u0434\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438_\u043f\u0440\u0438\u0435\u043c\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043c\u043e\u0434\u0435\u043b\u044c_\u043e\u0442\u0432\u0435\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043d\u0435_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u0441\u0447\u0435\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430_\u043e\u0448\u0438\u0431\u043e\u043a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439_api_\u0431\u044d\u043a\u0435\u043d\u0434\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u043f\u043e_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_\u043a\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f_\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0444\u0430\u043a\u0442\u044b_\u043e_\u0432\u043d\u0435\u0448\u043d\u0435\u043c_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u0446\u0435\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u0438\u0445_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u0439_t_bank", "to": "tbank_broker_portfolios_spec_\u044d\u0442\u0430\u043f\u044b_\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u043f\u043e_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "to": "tbank_broker_portfolios_spec_\u043f\u043e\u0447\u0435\u043c\u0443_grpc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u043f\u043e_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "to": "tbank_broker_portfolios_spec_\u043f\u043e\u0447\u0435\u043c\u0443_\u043d\u0435_rest_\u043f\u0435\u0440\u0432\u044b\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_broker_portfolios_spec_\u0440\u0435\u0448\u0435\u043d\u0438\u0435_\u043f\u043e_\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0443", "to": "tbank_broker_portfolios_spec_\u043f\u043e\u0447\u0435\u043c\u0443_\u043d\u0435_sdk_\u043f\u0435\u0440\u0432\u044b\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "tbank_deadline_queue_fix_spec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_deadline_queue_fix_spec", "to": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "tbank_deadline_queue_fix_spec_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "tbank_deadline_queue_fix_spec_\u0433\u0440\u0430\u043d\u0438\u0446\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "tbank_deadline_queue_fix_spec_\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "tbank_deadline_queue_fix_spec_\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tbank_deadline_queue_fix_spec_\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435_grpc_deadline_\u0434\u043b\u044f_t_bank_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "to": "tbank_deadline_queue_fix_spec_\u0446\u0435\u043b\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox", "to": "docs_inbox_inbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_frontend_\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u0434\u043e\u043b\u0433\u043e\u0441\u0440\u043e\u0447\u043d\u043e\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0435_\u0432\u0438\u0434\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u0438_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435_\u0432\u043e\u043f\u0440\u043e\u0441\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435_\u043a\u0430\u043d\u0430\u043b\u044b_\u0438_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f_\u043a\u0430\u0440\u0442\u0430_\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u0441\u043e\u0431\u044b\u0442\u0438\u044f_\u0438_\u0431\u0443\u0434\u0443\u0449\u0438\u0435_\u0432\u044b\u043f\u043b\u0430\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0445_t_bank", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_inbox", "to": "docs_inbox_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0435_\u044f\u0434\u0440\u043e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0435_\u044f\u0434\u0440\u043e", "to": "docs_inbox_\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044c_\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e_\u0441\u043f\u043e\u0441\u043e\u0431\u043e\u0432_\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f_\u0434\u0430\u043d\u043d\u044b\u0445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0435_\u044f\u0434\u0440\u043e", "to": "docs_inbox_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0435\u0434\u0438\u043d\u044b\u0439_\u0436\u0443\u0440\u043d\u0430\u043b_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u0432\u043a\u043b\u0430\u0434\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043c\u0435\u0442\u0430\u043b\u043b\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0441\u0447\u0435\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043d\u0430\u043a\u043e\u043f\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435_\u0441\u0447\u0435\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "to": "docs_inbox_\u0440\u0430\u0437\u0432\u0438\u0442\u044c_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e_\u043f\u043e\u0442\u043e\u043a\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b_\u0438_\u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435_\u0444\u0438\u043d\u0430\u043d\u0441\u044b", "to": "docs_inbox_\u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438_\u043f\u043e_\u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u043c_\u043a\u0430\u0440\u0442\u0430\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043d\u043e\u0435_\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435_\u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e_\u0434\u043e\u0441\u0442\u0443\u043f\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "to": "docs_inbox_\u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c_\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435_\u043f\u043e_api_first_\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438", "to": "docs_inbox_\u0441\u0434\u0435\u043b\u0430\u0442\u044c_\u043c\u043e\u0431\u0438\u043b\u044c\u043d\u0443\u044e_pwa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435_\u043a\u0430\u043d\u0430\u043b\u044b_\u0438_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044f", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_telegram_\u0431\u043e\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435_\u043a\u0430\u043d\u0430\u043b\u044b_\u0438_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044f", "to": "docs_inbox_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_mcp_agent_\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_frontend_\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "to": "docs_inbox_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_backend_driven_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_frontend_\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "to": "docs_inbox_\u043f\u0435\u0440\u0435\u0439\u0442\u0438_\u043a_feature_sliced_design", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_frontend_\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "to": "docs_inbox_\u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438_\u0430\u0443\u0434\u0438\u0442_frontend_debt_backlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_frontend_\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "to": "docs_inbox_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u0434\u0438\u0437\u0430\u0439\u043d_\u0441\u0438\u0441\u0442\u0435\u043c\u0443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e_frontend", "to": "docs_inbox_\u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c_\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435_\u0442\u0435\u0441\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_api", "to": "docs_inbox_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c_\u0438_\u0443\u043b\u0443\u0447\u0448\u0430\u0442\u044c_\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u0438_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "docs_inbox_\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c_\u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0435_\u0440\u0435\u0439\u0442\u0438\u043d\u0433\u0438_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u0438_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "docs_inbox_\u0441\u0434\u0435\u043b\u0430\u0442\u044c_\u0442\u0430\u0431\u043b\u0438\u0446\u044b_\u0430\u043a\u0446\u0438\u0439_\u0438_\u043e\u0431\u043b\u0438\u0433\u0430\u0446\u0438\u0439_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u0435\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043a\u0430\u0442\u0430\u043b\u043e\u0433_\u0438_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "to": "docs_inbox_\u0443\u043b\u0443\u0447\u0448\u0438\u0442\u044c_\u043f\u043e\u0438\u0441\u043a_\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0441\u043e\u0431\u044b\u0442\u0438\u044f_\u0438_\u0431\u0443\u0434\u0443\u0449\u0438\u0435_\u0432\u044b\u043f\u043b\u0430\u0442\u044b", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0432\u044b\u043f\u043b\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0441\u043e\u0431\u044b\u0442\u0438\u044f_\u0438_\u0431\u0443\u0434\u0443\u0449\u0438\u0435_\u0432\u044b\u043f\u043b\u0430\u0442\u044b", "to": "docs_inbox_\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c_\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c_\u0431\u0443\u0434\u0443\u0449\u0438\u0445_\u0441\u043e\u0431\u044b\u0442\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "to": "docs_inbox_\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c_\u0438\u0441\u0442\u043e\u0440\u0438\u044e_\u0431\u0430\u043b\u0430\u043d\u0441\u0430_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "to": "docs_inbox_\u0441\u043e\u0437\u0434\u0430\u0442\u044c_\u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439_\u0440\u0430\u0437\u0434\u0435\u043b_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0430", "to": "docs_inbox_\u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u0443_\u0432_pdf_\u0438_xlsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0445_t_bank", "to": "docs_inbox_\u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c_\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0445_\u043f\u0440\u0438_\u043e\u0442\u043a\u0430\u0437\u0435_t_bank_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p0_p1_\u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u0434\u0430\u043d\u043d\u044b\u0435_t_bank_\u043f\u043e_\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p1_p2_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c_\u043c\u043e\u0434\u0435\u043b\u044c_\u0441\u0435\u0441\u0441\u0438\u0439_\u043a_\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c_\u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u044f\u043c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p1_\u0441\u0434\u0435\u043b\u0430\u0442\u044c_\u043b\u043e\u043a\u0430\u043b\u044c\u043d\u0443\u044e_\u0438\u0441\u0442\u043e\u0440\u0438\u044e_t_bank_\u0440\u0430\u0431\u043e\u0447\u0438\u043c_read_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p1_\u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c_api_envelope_\u0438_runtime_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p1_\u0443\u0441\u0438\u043b\u0438\u0442\u044c_production_\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e_\u0438_auth_security", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p2_\u0434\u0435\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_\u043a\u0440\u0443\u043f\u043d\u044b\u0435_backend_frontend_\u043c\u043e\u0434\u0443\u043b\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p2_\u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c_\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044e_\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p2_\u0441\u043e\u043a\u0440\u0430\u0442\u0438\u0442\u044c_\u043d\u0435\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0443\u0435\u043c\u0443\u044e_\u0442\u0438\u043f\u043e\u0432\u0443\u044e_\u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p2_\u0443\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c_\u0434\u0432\u043e\u0439\u043d\u0443\u044e_\u0441\u0438\u0441\u0442\u0435\u043c\u0443_frontend_api_\u0442\u0438\u043f\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p3_\u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c_frontend_delivery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_inbox_\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439_\u0434\u043e\u043b\u0433_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442_\u043d\u0430_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e_\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e", "to": "docs_inbox_p3_\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c_\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435_\u0442\u0438\u043f\u044b_\u0434\u0430\u043d\u043d\u044b\u0445_\u043a_\u0431\u0443\u0434\u0443\u0449\u0435\u043c\u0443_ledger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections", "to": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0432\u044b\u044f\u0432\u043b\u0435\u043d\u043d\u043e\u0435_\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435_\u0433\u0440\u0430\u043d\u0438\u0446\u044b_\u043f\u0435\u0440\u0432\u043e\u0439_\u0432\u0435\u0440\u0441\u0438\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u0430\u044f_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f_\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u044b\u0435_\u043f\u0440\u0430\u0432\u0438\u043b\u0430_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0442\u0435\u043a\u0443\u0449\u0435\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435_\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b_\u0431\u0440\u043e\u043a\u0435\u0440\u0441\u043a\u043e\u0433\u043e_\u0441\u0447\u0451\u0442\u0430", "to": "research_2026_06_18_broker_account_sections_\u0446\u0435\u043b\u044c_\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0442\u0435\u043a\u0443\u0449\u0435\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "to": "research_2026_06_18_broker_account_sections_backend_\u0438_\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0442\u0435\u043a\u0443\u0449\u0435\u0435_\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "to": "research_2026_06_18_broker_account_sections_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "research_2026_06_18_broker_account_sections_\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "research_2026_06_18_broker_account_sections_\u043e\u0431\u043b\u0430\u0441\u0442\u044c_\u043a\u0440\u0443\u0433\u043e\u0432\u043e\u0439_\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "research_2026_06_18_broker_account_sections_\u0441\u0435\u043c\u0430\u043d\u0442\u0438\u043a\u0430_\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "research_2026_06_18_broker_account_sections_\u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435_\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u044b\u0435_\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u044b", "to": "research_2026_06_18_broker_account_sections_\u0444\u0438\u043b\u044c\u0442\u0440_\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_vs_oxlint_comparison_for_frontend_tooling", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_vs_oxlint_comparison_for_frontend_tooling", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_candidates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_vs_oxlint_comparison_for_frontend_tooling", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_comparison", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_vs_oxlint_comparison_for_frontend_tooling", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_vs_oxlint_comparison_for_frontend_tooling", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_verdict_biome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint_candidates", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_biome_v2_5_0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_biome_vs_oxlint_candidates", "to": "frontend_infrastructure_tooling_biome_vs_oxlint_oxlint_oxfmt_oxc_project", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_vs_tanstack_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_vs_tanstack_router", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_candidates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_vs_tanstack_router", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_comparison", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_vs_tanstack_router", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_vs_tanstack_router", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_verdict_tanstack_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_candidates", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_react_router_dom_v6_\u0442\u0435\u043a\u0443\u0449\u0438\u0439", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_candidates", "to": "frontend_infrastructure_tooling_react_router_vs_tanstack_router_tanstack_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap", "to": "docs_roadmap_roadmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_roadmap", "to": "docs_roadmap_\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_roadmap", "to": "docs_roadmap_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_roadmap", "to": "docs_roadmap_\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u044b_\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445_\u0444\u0438\u0447", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_roadmap", "to": "docs_roadmap_\u043a\u0440\u0443\u043f\u043d\u044b\u0435_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u0440\u0430\u0431\u043e\u0442\u044b_\u0432\u043d\u0435_\u044d\u043f\u0438\u043a\u043e\u0432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "to": "docs_roadmap_devops_epics_devops_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "to": "docs_roadmap_\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f_epics_authentication_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_\u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "to": "docs_roadmap_\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f_epics_documentation_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "to": "docs_roadmap_\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c_\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430_epics_qualityassurance_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "to": "docs_roadmap_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c_\u0431\u0440\u043e\u043a\u0435\u0440\u0430_epics_brokerportfolio_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_roadmap_\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435_\u044d\u043f\u0438\u043a\u0438", "to": "docs_roadmap_\u043f\u043e\u0440\u0442\u0444\u0435\u043b\u044c\u043d\u0430\u044f_\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430_epics_portfoliodashboard_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_changelog", "to": "design_system_changelog_changelog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_changelog_changelog", "to": "design_system_changelog_0_1_0_2026_06_21", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "design_system_changelog_0_1_0_2026_06_21", "to": "design_system_changelog_added", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 31}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 48}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 37}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 47}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 46}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 34}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 30}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 30}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 51}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 36}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 36}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 33}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 23}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 56}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 28}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 27}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 8}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 26}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 26}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 52}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 27}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 40}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 31}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 38}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 28}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 20}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 24}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 23}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 23}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 22}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 39}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 18}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 21}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 21}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 28}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 16}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 37}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 42}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 24}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 29}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 13}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 14}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 16}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 18}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 16}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 16}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 27}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 16}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 30}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 35}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 14}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 14}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 27}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 29}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 35}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 54}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 14}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 34}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 14}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 14}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 33}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 32}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 25}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 13}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 32}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 13}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 30}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 12}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 24}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 12}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 12}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 15}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 12}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 11}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 13}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 28}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 7}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 10}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 10}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 27}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 12}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 10}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 27}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 26}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 9}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 9}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 26}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "count": 25}, {"cid": 88, "color": "#9C755F", "label": "Community 88", "count": 7}, {"cid": 89, "color": "#BAB0AC", "label": "Community 89", "count": 7}, {"cid": 90, "color": "#4E79A7", "label": "Community 90", "count": 7}, {"cid": 91, "color": "#F28E2B", "label": "Community 91", "count": 12}, {"cid": 92, "color": "#E15759", "label": "Community 92", "count": 6}, {"cid": 93, "color": "#76B7B2", "label": "Community 93", "count": 5}, {"cid": 94, "color": "#59A14F", "label": "Community 94", "count": 4}, {"cid": 95, "color": "#EDC948", "label": "Community 95", "count": 4}, {"cid": 96, "color": "#B07AA1", "label": "Community 96", "count": 4}, {"cid": 97, "color": "#FF9DA7", "label": "Community 97", "count": 3}, {"cid": 98, "color": "#9C755F", "label": "Community 98", "count": 24}, {"cid": 99, "color": "#BAB0AC", "label": "Community 99", "count": 3}, {"cid": 100, "color": "#4E79A7", "label": "Community 100", "count": 2}, {"cid": 101, "color": "#F28E2B", "label": "Community 101", "count": 24}, {"cid": 102, "color": "#E15759", "label": "Community 102", "count": 2}, {"cid": 103, "color": "#76B7B2", "label": "Community 103", "count": 2}, {"cid": 104, "color": "#59A14F", "label": "Community 104", "count": 1}, {"cid": 105, "color": "#EDC948", "label": "Community 105", "count": 1}, {"cid": 106, "color": "#B07AA1", "label": "Community 106", "count": 1}, {"cid": 107, "color": "#FF9DA7", "label": "Community 107", "count": 1}, {"cid": 108, "color": "#9C755F", "label": "Community 108", "count": 1}, {"cid": 109, "color": "#BAB0AC", "label": "Community 109", "count": 1}, {"cid": 110, "color": "#4E79A7", "label": "Community 110", "count": 1}, {"cid": 111, "color": "#F28E2B", "label": "Community 111", "count": 1}, {"cid": 112, "color": "#E15759", "label": "Community 112", "count": 1}, {"cid": 113, "color": "#76B7B2", "label": "Community 113", "count": 24}, {"cid": 114, "color": "#59A14F", "label": "Community 114", "count": 23}, {"cid": 115, "color": "#EDC948", "label": "Community 115", "count": 22}, {"cid": 116, "color": "#B07AA1", "label": "Community 116", "count": 21}, {"cid": 117, "color": "#FF9DA7", "label": "Community 117", "count": 21}, {"cid": 118, "color": "#9C755F", "label": "Community 118", "count": 21}, {"cid": 119, "color": "#BAB0AC", "label": "Community 119", "count": 20}, {"cid": 120, "color": "#4E79A7", "label": "Community 120", "count": 19}, {"cid": 121, "color": "#F28E2B", "label": "Community 121", "count": 19}, {"cid": 122, "color": "#E15759", "label": "Community 122", "count": 19}, {"cid": 123, "color": "#76B7B2", "label": "Community 123", "count": 19}, {"cid": 124, "color": "#59A14F", "label": "Community 124", "count": 18}, {"cid": 125, "color": "#EDC948", "label": "Community 125", "count": 17}, {"cid": 126, "color": "#B07AA1", "label": "Community 126", "count": 17}, {"cid": 127, "color": "#FF9DA7", "label": "Community 127", "count": 17}, {"cid": 128, "color": "#9C755F", "label": "Community 128", "count": 17}, {"cid": 129, "color": "#BAB0AC", "label": "Community 129", "count": 17}, {"cid": 130, "color": "#4E79A7", "label": "Community 130", "count": 17}, {"cid": 131, "color": "#F28E2B", "label": "Community 131", "count": 17}, {"cid": 132, "color": "#E15759", "label": "Community 132", "count": 16}, {"cid": 133, "color": "#76B7B2", "label": "Community 133", "count": 16}, {"cid": 134, "color": "#59A14F", "label": "Community 134", "count": 16}, {"cid": 135, "color": "#EDC948", "label": "Community 135", "count": 16}, {"cid": 136, "color": "#B07AA1", "label": "Community 136", "count": 16}, {"cid": 137, "color": "#FF9DA7", "label": "Community 137", "count": 16}, {"cid": 138, "color": "#9C755F", "label": "Community 138", "count": 15}, {"cid": 139, "color": "#BAB0AC", "label": "Community 139", "count": 15}, {"cid": 140, "color": "#4E79A7", "label": "Community 140", "count": 15}, {"cid": 141, "color": "#F28E2B", "label": "Community 141", "count": 15}, {"cid": 142, "color": "#E15759", "label": "Community 142", "count": 15}, {"cid": 143, "color": "#76B7B2", "label": "Community 143", "count": 14}, {"cid": 144, "color": "#59A14F", "label": "Community 144", "count": 14}, {"cid": 145, "color": "#EDC948", "label": "Community 145", "count": 14}, {"cid": 146, "color": "#B07AA1", "label": "Community 146", "count": 14}, {"cid": 147, "color": "#FF9DA7", "label": "Community 147", "count": 14}, {"cid": 148, "color": "#9C755F", "label": "Community 148", "count": 14}, {"cid": 149, "color": "#BAB0AC", "label": "Community 149", "count": 14}, {"cid": 150, "color": "#4E79A7", "label": "Community 150", "count": 14}, {"cid": 151, "color": "#F28E2B", "label": "Community 151", "count": 14}, {"cid": 152, "color": "#E15759", "label": "Community 152", "count": 13}, {"cid": 153, "color": "#76B7B2", "label": "Community 153", "count": 13}, {"cid": 154, "color": "#59A14F", "label": "Community 154", "count": 13}, {"cid": 155, "color": "#EDC948", "label": "Community 155", "count": 13}, {"cid": 156, "color": "#B07AA1", "label": "Community 156", "count": 13}, {"cid": 157, "color": "#FF9DA7", "label": "Community 157", "count": 13}, {"cid": 158, "color": "#9C755F", "label": "Community 158", "count": 13}, {"cid": 159, "color": "#BAB0AC", "label": "Community 159", "count": 13}, {"cid": 160, "color": "#4E79A7", "label": "Community 160", "count": 12}, {"cid": 161, "color": "#F28E2B", "label": "Community 161", "count": 12}, {"cid": 162, "color": "#E15759", "label": "Community 162", "count": 12}, {"cid": 163, "color": "#76B7B2", "label": "Community 163", "count": 12}, {"cid": 164, "color": "#59A14F", "label": "Community 164", "count": 12}, {"cid": 165, "color": "#EDC948", "label": "Community 165", "count": 12}, {"cid": 166, "color": "#B07AA1", "label": "Community 166", "count": 12}, {"cid": 167, "color": "#FF9DA7", "label": "Community 167", "count": 12}, {"cid": 168, "color": "#9C755F", "label": "Community 168", "count": 12}, {"cid": 169, "color": "#BAB0AC", "label": "Community 169", "count": 12}, {"cid": 170, "color": "#4E79A7", "label": "Community 170", "count": 12}, {"cid": 171, "color": "#F28E2B", "label": "Community 171", "count": 12}, {"cid": 172, "color": "#E15759", "label": "Community 172", "count": 12}, {"cid": 173, "color": "#76B7B2", "label": "Community 173", "count": 12}, {"cid": 174, "color": "#59A14F", "label": "Community 174", "count": 11}, {"cid": 175, "color": "#EDC948", "label": "Community 175", "count": 11}, {"cid": 176, "color": "#B07AA1", "label": "Community 176", "count": 11}, {"cid": 177, "color": "#FF9DA7", "label": "Community 177", "count": 11}, {"cid": 178, "color": "#9C755F", "label": "Community 178", "count": 11}, {"cid": 179, "color": "#BAB0AC", "label": "Community 179", "count": 11}, {"cid": 180, "color": "#4E79A7", "label": "Community 180", "count": 11}, {"cid": 181, "color": "#F28E2B", "label": "Community 181", "count": 11}, {"cid": 182, "color": "#E15759", "label": "Community 182", "count": 11}, {"cid": 183, "color": "#76B7B2", "label": "Community 183", "count": 11}, {"cid": 184, "color": "#59A14F", "label": "Community 184", "count": 11}, {"cid": 185, "color": "#EDC948", "label": "Community 185", "count": 11}, {"cid": 186, "color": "#B07AA1", "label": "Community 186", "count": 10}, {"cid": 187, "color": "#FF9DA7", "label": "Community 187", "count": 10}, {"cid": 188, "color": "#9C755F", "label": "Community 188", "count": 10}, {"cid": 189, "color": "#BAB0AC", "label": "Community 189", "count": 10}, {"cid": 190, "color": "#4E79A7", "label": "Community 190", "count": 10}, {"cid": 191, "color": "#F28E2B", "label": "Community 191", "count": 10}, {"cid": 192, "color": "#E15759", "label": "Community 192", "count": 10}, {"cid": 193, "color": "#76B7B2", "label": "Community 193", "count": 10}, {"cid": 194, "color": "#59A14F", "label": "Community 194", "count": 10}, {"cid": 195, "color": "#EDC948", "label": "Community 195", "count": 10}, {"cid": 196, "color": "#B07AA1", "label": "Community 196", "count": 10}, {"cid": 197, "color": "#FF9DA7", "label": "Community 197", "count": 10}, {"cid": 198, "color": "#9C755F", "label": "Community 198", "count": 10}, {"cid": 199, "color": "#BAB0AC", "label": "Community 199", "count": 9}, {"cid": 200, "color": "#4E79A7", "label": "Community 200", "count": 9}, {"cid": 201, "color": "#F28E2B", "label": "Community 201", "count": 9}, {"cid": 202, "color": "#E15759", "label": "Community 202", "count": 9}, {"cid": 203, "color": "#76B7B2", "label": "Community 203", "count": 9}, {"cid": 204, "color": "#59A14F", "label": "Community 204", "count": 9}, {"cid": 205, "color": "#EDC948", "label": "Community 205", "count": 9}, {"cid": 206, "color": "#B07AA1", "label": "Community 206", "count": 9}, {"cid": 207, "color": "#FF9DA7", "label": "Community 207", "count": 9}, {"cid": 208, "color": "#9C755F", "label": "Community 208", "count": 9}, {"cid": 209, "color": "#BAB0AC", "label": "Community 209", "count": 9}, {"cid": 210, "color": "#4E79A7", "label": "Community 210", "count": 9}, {"cid": 211, "color": "#F28E2B", "label": "Community 211", "count": 9}, {"cid": 212, "color": "#E15759", "label": "Community 212", "count": 9}, {"cid": 213, "color": "#76B7B2", "label": "Community 213", "count": 8}, {"cid": 214, "color": "#59A14F", "label": "Community 214", "count": 8}, {"cid": 215, "color": "#EDC948", "label": "Community 215", "count": 8}, {"cid": 216, "color": "#B07AA1", "label": "Community 216", "count": 8}, {"cid": 217, "color": "#FF9DA7", "label": "Community 217", "count": 8}, {"cid": 218, "color": "#9C755F", "label": "Community 218", "count": 8}, {"cid": 219, "color": "#BAB0AC", "label": "Community 219", "count": 8}, {"cid": 220, "color": "#4E79A7", "label": "Community 220", "count": 8}, {"cid": 221, "color": "#F28E2B", "label": "Community 221", "count": 8}, {"cid": 222, "color": "#E15759", "label": "Community 222", "count": 8}, {"cid": 223, "color": "#76B7B2", "label": "Community 223", "count": 8}, {"cid": 224, "color": "#59A14F", "label": "Community 224", "count": 8}, {"cid": 225, "color": "#EDC948", "label": "Community 225", "count": 8}, {"cid": 226, "color": "#B07AA1", "label": "Community 226", "count": 7}, {"cid": 227, "color": "#FF9DA7", "label": "Community 227", "count": 7}, {"cid": 228, "color": "#9C755F", "label": "Community 228", "count": 7}, {"cid": 229, "color": "#BAB0AC", "label": "Community 229", "count": 7}, {"cid": 230, "color": "#4E79A7", "label": "Community 230", "count": 7}, {"cid": 231, "color": "#F28E2B", "label": "Community 231", "count": 7}, {"cid": 232, "color": "#E15759", "label": "Community 232", "count": 7}, {"cid": 233, "color": "#76B7B2", "label": "Community 233", "count": 7}, {"cid": 234, "color": "#59A14F", "label": "Community 234", "count": 7}, {"cid": 235, "color": "#EDC948", "label": "Community 235", "count": 7}, {"cid": 236, "color": "#B07AA1", "label": "Community 236", "count": 7}, {"cid": 237, "color": "#FF9DA7", "label": "Community 237", "count": 7}, {"cid": 238, "color": "#9C755F", "label": "Community 238", "count": 7}, {"cid": 239, "color": "#BAB0AC", "label": "Community 239", "count": 6}, {"cid": 240, "color": "#4E79A7", "label": "Community 240", "count": 6}, {"cid": 241, "color": "#F28E2B", "label": "Community 241", "count": 6}, {"cid": 242, "color": "#E15759", "label": "Community 242", "count": 6}, {"cid": 243, "color": "#76B7B2", "label": "Community 243", "count": 6}, {"cid": 244, "color": "#59A14F", "label": "Community 244", "count": 6}, {"cid": 245, "color": "#EDC948", "label": "Community 245", "count": 6}, {"cid": 246, "color": "#B07AA1", "label": "Community 246", "count": 6}, {"cid": 247, "color": "#FF9DA7", "label": "Community 247", "count": 6}, {"cid": 248, "color": "#9C755F", "label": "Community 248", "count": 6}, {"cid": 249, "color": "#BAB0AC", "label": "Community 249", "count": 6}, {"cid": 250, "color": "#4E79A7", "label": "Community 250", "count": 6}, {"cid": 251, "color": "#F28E2B", "label": "Community 251", "count": 6}, {"cid": 252, "color": "#E15759", "label": "Community 252", "count": 6}, {"cid": 253, "color": "#76B7B2", "label": "Community 253", "count": 6}, {"cid": 254, "color": "#59A14F", "label": "Community 254", "count": 5}, {"cid": 255, "color": "#EDC948", "label": "Community 255", "count": 5}, {"cid": 256, "color": "#B07AA1", "label": "Community 256", "count": 5}, {"cid": 257, "color": "#FF9DA7", "label": "Community 257", "count": 5}, {"cid": 258, "color": "#9C755F", "label": "Community 258", "count": 5}, {"cid": 259, "color": "#BAB0AC", "label": "Community 259", "count": 5}, {"cid": 260, "color": "#4E79A7", "label": "Community 260", "count": 5}, {"cid": 261, "color": "#F28E2B", "label": "Community 261", "count": 5}, {"cid": 262, "color": "#E15759", "label": "Community 262", "count": 5}, {"cid": 263, "color": "#76B7B2", "label": "Community 263", "count": 5}, {"cid": 264, "color": "#59A14F", "label": "Community 264", "count": 5}, {"cid": 265, "color": "#EDC948", "label": "Community 265", "count": 5}, {"cid": 266, "color": "#B07AA1", "label": "Community 266", "count": 4}, {"cid": 267, "color": "#FF9DA7", "label": "Community 267", "count": 4}, {"cid": 268, "color": "#9C755F", "label": "Community 268", "count": 4}, {"cid": 269, "color": "#BAB0AC", "label": "Community 269", "count": 4}, {"cid": 270, "color": "#4E79A7", "label": "Community 270", "count": 4}, {"cid": 271, "color": "#F28E2B", "label": "Community 271", "count": 4}, {"cid": 272, "color": "#E15759", "label": "Community 272", "count": 4}, {"cid": 273, "color": "#76B7B2", "label": "Community 273", "count": 4}, {"cid": 274, "color": "#59A14F", "label": "Community 274", "count": 4}, {"cid": 275, "color": "#EDC948", "label": "Community 275", "count": 3}, {"cid": 276, "color": "#B07AA1", "label": "Community 276", "count": 3}, {"cid": 277, "color": "#FF9DA7", "label": "Community 277", "count": 3}, {"cid": 278, "color": "#9C755F", "label": "Community 278", "count": 2}, {"cid": 279, "color": "#BAB0AC", "label": "Community 279", "count": 2}, {"cid": 280, "color": "#4E79A7", "label": "Community 280", "count": 2}, {"cid": 281, "color": "#F28E2B", "label": "Community 281", "count": 2}, {"cid": 282, "color": "#E15759", "label": "Community 282", "count": 2}, {"cid": 283, "color": "#76B7B2", "label": "Community 283", "count": 1}];
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
function esc(s) {
return String(s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;').replace(/"/g,'&quot;').replace(/'/g,'&#39;');
}
// Build vis datasets
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
id: n.id, label: n.label, color: n.color, size: n.size,
font: n.font, title: n.title,
_community: n.community, _community_name: n.community_name,
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
})));
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
id: i, from: e.from, to: e.to,
label: '',
title: e.title,
dashes: e.dashes,
width: e.width,
color: e.color,
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
})));
const container = document.getElementById('graph');
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
physics: {
enabled: true,
solver: 'forceAtlas2Based',
forceAtlas2Based: {
gravitationalConstant: -60,
centralGravity: 0.005,
springLength: 120,
springConstant: 0.08,
damping: 0.4,
avoidOverlap: 0.8,
},
stabilization: { iterations: 200, fit: true },
},
interaction: {
hover: true,
tooltipDelay: 100,
hideEdgesOnDrag: true,
navigationButtons: false,
keyboard: false,
},
nodes: { shape: 'dot', borderWidth: 1.5 },
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
});
network.once('stabilizationIterationsDone', () => {
network.setOptions({ physics: { enabled: false } });
});
function showInfo(nodeId) {
const n = nodesDS.get(nodeId);
if (!n) return;
const neighborIds = network.getConnectedNodes(nodeId);
const neighborItems = neighborIds.map(nid => {
const nb = nodesDS.get(nid);
const color = nb ? nb.color.background : '#555';
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
}).join('');
document.getElementById('info-content').innerHTML = `
<div class="field"><b>${esc(n.label)}</b></div>
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
<div class="field">Community: ${esc(n._community_name)}</div>
<div class="field">Source: ${esc(n._source_file || '-')}</div>
<div class="field">Degree: ${n._degree}</div>
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
`;
}
function focusNode(nodeId) {
network.focus(nodeId, { scale: 1.4, animation: true });
network.selectNodes([nodeId]);
showInfo(nodeId);
}
// Track hovered node — hover detection is more reliable than click params
let hoveredNodeId = null;
network.on('hoverNode', params => {
hoveredNodeId = params.node;
container.style.cursor = 'pointer';
});
network.on('blurNode', () => {
hoveredNodeId = null;
container.style.cursor = 'default';
});
container.addEventListener('click', () => {
if (hoveredNodeId !== null) {
showInfo(hoveredNodeId);
network.selectNodes([hoveredNodeId]);
}
});
network.on('click', params => {
if (params.nodes.length > 0) {
showInfo(params.nodes[0]);
} else if (hoveredNodeId === null) {
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
}
});
const searchInput = document.getElementById('search');
const searchResults = document.getElementById('search-results');
searchInput.addEventListener('input', () => {
const q = searchInput.value.toLowerCase().trim();
searchResults.innerHTML = '';
if (!q) { searchResults.style.display = 'none'; return; }
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
if (!matches.length) { searchResults.style.display = 'none'; return; }
searchResults.style.display = 'block';
matches.forEach(n => {
const el = document.createElement('div');
el.className = 'search-item';
el.textContent = n.label;
el.style.borderLeft = `3px solid ${n.color.background}`;
el.style.paddingLeft = '8px';
el.onclick = () => {
network.focus(n.id, { scale: 1.5, animation: true });
network.selectNodes([n.id]);
showInfo(n.id);
searchResults.style.display = 'none';
searchInput.value = '';
};
searchResults.appendChild(el);
});
});
document.addEventListener('click', e => {
if (!searchResults.contains(e.target) && e.target !== searchInput)
searchResults.style.display = 'none';
});
const hiddenCommunities = new Set();
const selectAllCb = document.getElementById('select-all-cb');
function updateSelectAllState() {
const total = LEGEND.length;
const hidden = hiddenCommunities.size;
selectAllCb.checked = hidden === 0;
selectAllCb.indeterminate = hidden > 0 && hidden < total;
}
function toggleAllCommunities(hide) {
document.querySelectorAll('.legend-item').forEach(item => {
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
});
document.querySelectorAll('.legend-cb').forEach(cb => {
cb.checked = !hide;
});
LEGEND.forEach(c => {
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
});
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
nodesDS.update(updates);
updateSelectAllState();
}
const legendEl = document.getElementById('legend');
LEGEND.forEach(c => {
const item = document.createElement('div');
item.className = 'legend-item';
const cb = document.createElement('input');
cb.type = 'checkbox';
cb.className = 'legend-cb';
cb.checked = true;
cb.addEventListener('change', (e) => {
e.stopPropagation();
if (cb.checked) {
hiddenCommunities.delete(c.cid);
item.classList.remove('dimmed');
} else {
hiddenCommunities.add(c.cid);
item.classList.add('dimmed');
}
const updates = RAW_NODES
.filter(n => n.community === c.cid)
.map(n => ({ id: n.id, hidden: !cb.checked }));
nodesDS.update(updates);
updateSelectAllState();
});
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
<span class="legend-label">${c.label}</span>
<span class="legend-count">${c.count}</span>`;
item.prepend(cb);
item.onclick = (e) => {
if (e.target === cb) return;
cb.checked = !cb.checked;
cb.dispatchEvent(new Event('change'));
};
legendEl.appendChild(item);
});
</script>
<script>
// Render hyperedges as shaded regions
const hyperedges = [];
// afterDrawing passes ctx already transformed to network coordinate space.
// Draw node positions raw — no manual pan/zoom/DPR math needed.
network.on('afterDrawing', function(ctx) {
hyperedges.forEach(h => {
const positions = h.nodes
.map(nid => network.getPositions([nid])[nid])
.filter(p => p !== undefined);
if (positions.length < 2) return;
ctx.save();
ctx.globalAlpha = 0.12;
ctx.fillStyle = '#6366f1';
ctx.strokeStyle = '#6366f1';
ctx.lineWidth = 2;
ctx.beginPath();
// Centroid and expanded hull in network coordinates
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
const expanded = positions.map(p => ({
x: cx + (p.x - cx) * 1.15,
y: cy + (p.y - cy) * 1.15
}));
ctx.moveTo(expanded[0].x, expanded[0].y);
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
ctx.closePath();
ctx.fill();
ctx.globalAlpha = 0.4;
ctx.stroke();
// Label
ctx.globalAlpha = 0.8;
ctx.fillStyle = '#4f46e5';
ctx.font = 'bold 11px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(h.label, cx, cy - 5);
ctx.restore();
});
});
</script>
</body>
</html>